This commit is contained in:
redmatrix 2015-12-07 16:15:52 -08:00
commit 241607e7d7
13 changed files with 889 additions and 1058 deletions

View File

@ -188,7 +188,7 @@ class RedBrowser extends DAV\Browser\Plugin {
$parentHash = ''; $parentHash = '';
$owner = $this->auth->owner_id; $owner = $this->auth->owner_id;
$splitPath = split('/', $fullPath); $splitPath = explode('/', $fullPath);
if (count($splitPath) > 3) { if (count($splitPath) > 3) {
for ($i = 3; $i < count($splitPath); $i++) { for ($i = 3; $i < count($splitPath); $i++) {
$attachName = urldecode($splitPath[$i]); $attachName = urldecode($splitPath[$i]);

View File

@ -1299,7 +1299,6 @@ function widget_album($args) {
//edit album name //edit album name
$album_edit = null; $album_edit = null;
$photos = array(); $photos = array();
if($r) { if($r) {
$twist = 'rotright'; $twist = 'rotright';
@ -1338,6 +1337,7 @@ function widget_album($args) {
$o .= replace_macros($tpl, array( $o .= replace_macros($tpl, array(
'$photos' => $photos, '$photos' => $photos,
'$album' => (($title) ? $title : $album), '$album' => (($title) ? $title : $album),
'$album_id' => rand(),
'$album_edit' => array(t('Edit Album'), $album_edit), '$album_edit' => array(t('Edit Album'), $album_edit),
'$can_post' => false, '$can_post' => false,
'$upload' => array(t('Upload'), z_root() . '/photos/' . get_app()->profile['channel_address'] . '/upload/' . bin2hex($album)), '$upload' => array(t('Upload'), z_root() . '/photos/' . get_app()->profile['channel_address'] . '/upload/' . bin2hex($album)),

View File

@ -765,6 +765,7 @@ function photos_content(&$a) {
if($photos) { if($photos) {
$o = replace_macros(get_markup_template('photosajax.tpl'),array( $o = replace_macros(get_markup_template('photosajax.tpl'),array(
'$photos' => $photos, '$photos' => $photos,
'$album_id' => bin2hex($album)
)); ));
} }
else { else {
@ -779,6 +780,7 @@ function photos_content(&$a) {
$o .= replace_macros($tpl, array( $o .= replace_macros($tpl, array(
'$photos' => $photos, '$photos' => $photos,
'$album' => $album, '$album' => $album,
'$album_id' => bin2hex($album),
'$album_edit' => array(t('Edit Album'), $album_edit), '$album_edit' => array(t('Edit Album'), $album_edit),
'$can_post' => $can_post, '$can_post' => $can_post,
'$upload' => array(t('Upload'), $a->get_baseurl() . '/photos/' . $a->data['channel']['channel_address'] . '/upload/' . bin2hex($album)), '$upload' => array(t('Upload'), $a->get_baseurl() . '/photos/' . $a->data['channel']['channel_address'] . '/upload/' . bin2hex($album)),
@ -1300,6 +1302,7 @@ function photos_content(&$a) {
if($photos) { if($photos) {
$o = replace_macros(get_markup_template('photosajax.tpl'),array( $o = replace_macros(get_markup_template('photosajax.tpl'),array(
'$photos' => $photos, '$photos' => $photos,
'$album_id' => bin2hex(t('Recent Photos'))
)); ));
} }
else { else {
@ -1313,6 +1316,7 @@ function photos_content(&$a) {
$tpl = get_markup_template('photos_recent.tpl'); $tpl = get_markup_template('photos_recent.tpl');
$o .= replace_macros($tpl, array( $o .= replace_macros($tpl, array(
'$title' => t('Recent Photos'), '$title' => t('Recent Photos'),
'$album_id' => bin2hex(t('Recent Photos')),
'$can_post' => $can_post, '$can_post' => $can_post,
'$upload' => array(t('Upload'), $a->get_baseurl().'/photos/'.$a->data['channel']['channel_address'].'/upload'), '$upload' => array(t('Upload'), $a->get_baseurl().'/photos/'.$a->data['channel']['channel_address'].'/upload'),
'$photos' => $photos, '$photos' => $photos,

File diff suppressed because it is too large Load Diff

View File

@ -143,10 +143,6 @@ $a->strings["Collection is empty."] = "La colección está vacía.";
$a->strings["Collection: %s"] = "Colección: %s"; $a->strings["Collection: %s"] = "Colección: %s";
$a->strings["Connection: %s"] = "Conexión: %s"; $a->strings["Connection: %s"] = "Conexión: %s";
$a->strings["Connection not found."] = "Conexión no encontrada"; $a->strings["Connection not found."] = "Conexión no encontrada";
$a->strings["No recipient provided."] = "No se ha especificado ningún destinatario.";
$a->strings["[no subject]"] = "[sin asunto]";
$a->strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. ";
$a->strings["Stored post could not be verified."] = "No se han podido verificar las entradas guardadas.";
$a->strings["view full size"] = "Ver en el tamaño original"; $a->strings["view full size"] = "Ver en el tamaño original";
$a->strings["\$Projectname Notification"] = "Notificación de \$Projectname"; $a->strings["\$Projectname Notification"] = "Notificación de \$Projectname";
$a->strings["\$projectname"] = "\$projectname"; $a->strings["\$projectname"] = "\$projectname";
@ -321,6 +317,9 @@ $a->strings["Week View"] = "Eventos de la semana";
$a->strings["Month View"] = "Eventos del mes"; $a->strings["Month View"] = "Eventos del mes";
$a->strings["Export"] = "Exportar"; $a->strings["Export"] = "Exportar";
$a->strings["Import"] = "Importar"; $a->strings["Import"] = "Importar";
$a->strings["Events Tools"] = "Gestión de eventos";
$a->strings["Export Calendar"] = "Exportar el calendario";
$a->strings["Import Calendar"] = "Importar un calendario";
$a->strings["Chat Rooms"] = "Salas de chat"; $a->strings["Chat Rooms"] = "Salas de chat";
$a->strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; $a->strings["Bookmarked Chatrooms"] = "Salas de chat preferidas";
$a->strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; $a->strings["Suggested Chatrooms"] = "Salas de chat sugeridas";
@ -375,7 +374,7 @@ $a->strings["Post Composition Features"] = "Características de composición de
$a->strings["Use Markdown"] = "Usar Markdown"; $a->strings["Use Markdown"] = "Usar Markdown";
$a->strings["Allow use of \"Markdown\" to format posts"] = "Permitir el uso de \"Markdown\" para formatear publicaciones"; $a->strings["Allow use of \"Markdown\" to format posts"] = "Permitir el uso de \"Markdown\" para formatear publicaciones";
$a->strings["Large Photos"] = "Fotos de gran tamaño"; $a->strings["Large Photos"] = "Fotos de gran tamaño";
$a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (6400px)"; $a->strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)";
$a->strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; $a->strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\"";
$a->strings["Even More Encryption"] = "Más cifrado todavía"; $a->strings["Even More Encryption"] = "Más cifrado todavía";
$a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; $a->strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida.";
@ -501,7 +500,7 @@ $a->strings["%1\$s likes %2\$s's %3\$s"] = "a %1\$s le gusta %3\$s de %2\$s";
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "a %1\$s no le gusta %3\$s de %2\$s"; $a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "a %1\$s no le gusta %3\$s de %2\$s";
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s"; $a->strings["%1\$s is now connected with %2\$s"] = "%1\$s ahora está conectado/a con %2\$s";
$a->strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s"; $a->strings["%1\$s poked %2\$s"] = "%1\$s ha dado un toque a %2\$s";
$a->strings["poked"] = "ha recibido un toque"; $a->strings["poked"] = "ha dado un toque a";
$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; $a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s";
$a->strings["__ctx:title__ Likes"] = "Me gusta"; $a->strings["__ctx:title__ Likes"] = "Me gusta";
$a->strings["__ctx:title__ Dislikes"] = "No me gusta"; $a->strings["__ctx:title__ Dislikes"] = "No me gusta";
@ -529,7 +528,7 @@ $a->strings["Delete Selected Items"] = "Eliminar elementos seleccionados";
$a->strings["View Source"] = "Ver la fuente original de la entrada"; $a->strings["View Source"] = "Ver la fuente original de la entrada";
$a->strings["Follow Thread"] = "Seguir este hilo"; $a->strings["Follow Thread"] = "Seguir este hilo";
$a->strings["Unfollow Thread"] = "Dejar de seguir este hilo"; $a->strings["Unfollow Thread"] = "Dejar de seguir este hilo";
$a->strings["View Status"] = "Ver el estado actual"; $a->strings["View Status"] = "Ver mi estado actual";
$a->strings["View Profile"] = "Ver el perfil"; $a->strings["View Profile"] = "Ver el perfil";
$a->strings["View Photos"] = "Ver fotos"; $a->strings["View Photos"] = "Ver fotos";
$a->strings["Activity/Posts"] = "Actividad y entradas"; $a->strings["Activity/Posts"] = "Actividad y entradas";
@ -669,10 +668,6 @@ $a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn"; $a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace"; $a->strings["MySpace"] = "MySpace";
$a->strings["Invalid data packet"] = "Paquete de datos no válido";
$a->strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal";
$a->strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s";
$a->strings["invalid target signature"] = "La firma recibida no es válida";
$a->strings["Image/photo"] = "Imagen/foto"; $a->strings["Image/photo"] = "Imagen/foto";
$a->strings["Encrypted content"] = "Contenido cifrado"; $a->strings["Encrypted content"] = "Contenido cifrado";
$a->strings["Install %s element: "] = "Instalar el elemento %s:"; $a->strings["Install %s element: "] = "Instalar el elemento %s:";
@ -705,16 +700,10 @@ $a->strings["%d connection in common"] = array(
1 => "%d conexiones en común", 1 => "%d conexiones en común",
); );
$a->strings["show more"] = "mostrar más"; $a->strings["show more"] = "mostrar más";
$a->strings["Directory Options"] = "Opciones del directorio";
$a->strings["Safe Mode"] = "Modo seguro";
$a->strings["No"] = "No";
$a->strings["Yes"] = "";
$a->strings["Public Forums Only"] = "Solo foros públicos";
$a->strings["This Website Only"] = "Solo este sitio web";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; $a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo mensaje en %s"; $a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo mensaje en %s";
$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; $a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s.";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s le envió %2\$s."; $a->strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s.";
$a->strings["a private message"] = "un mensaje privado"; $a->strings["a private message"] = "un mensaje privado";
$a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; $a->strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado.";
$a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; $a->strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]";
@ -727,14 +716,14 @@ $a->strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Avi
$a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicó en su página del perfil en %3\$s"; $a->strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s publicó en su página del perfil en %3\$s";
$a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicó en [zrl=%3\$s]su página del perfil[/zrl]"; $a->strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s publicó en [zrl=%3\$s]su página del perfil[/zrl]";
$a->strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado"; $a->strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado";
$a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le etiquetó en %3\$s"; $a->strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le ha etiquetado en %3\$s";
$a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; $a->strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl].";
$a->strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; $a->strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque";
$a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le dio un toque en %3\$s"; $a->strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le ha dado un toque en %3\$s";
$a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le dio un toque[/zrl]."; $a->strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le ha dado un toque[/zrl].";
$a->strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación"; $a->strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación";
$a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s"; $a->strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s";
$a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s etiquetó [zrl=%3\$s]su publicación[/zrl]"; $a->strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]";
$a->strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión"; $a->strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión";
$a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; $a->strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s";
$a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; $a->strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s.";
@ -757,6 +746,10 @@ $a->strings["local account not found."] = "No se ha encontrado la cuenta local."
$a->strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; $a->strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo.";
$a->strings["Embedded content"] = "Contenido incorporado"; $a->strings["Embedded content"] = "Contenido incorporado";
$a->strings["Embedding disabled"] = "Incrustación deshabilitada"; $a->strings["Embedding disabled"] = "Incrustación deshabilitada";
$a->strings["No recipient provided."] = "No se ha especificado ningún destinatario.";
$a->strings["[no subject]"] = "[sin asunto]";
$a->strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. ";
$a->strings["Stored post could not be verified."] = "No se han podido verificar las entradas guardadas.";
$a->strings["Logout"] = "Finalizar sesión"; $a->strings["Logout"] = "Finalizar sesión";
$a->strings["End this session"] = "Finalizar esta sesión"; $a->strings["End this session"] = "Finalizar esta sesión";
$a->strings["Home"] = "Inicio"; $a->strings["Home"] = "Inicio";
@ -874,6 +867,12 @@ $a->strings["Blocks"] = "Bloques";
$a->strings["Menus"] = "Menús"; $a->strings["Menus"] = "Menús";
$a->strings["Layouts"] = "Formato gráfico"; $a->strings["Layouts"] = "Formato gráfico";
$a->strings["Pages"] = "Páginas"; $a->strings["Pages"] = "Páginas";
$a->strings["Directory Options"] = "Opciones del directorio";
$a->strings["Safe Mode"] = "Modo seguro";
$a->strings["No"] = "No";
$a->strings["Yes"] = "";
$a->strings["Public Forums Only"] = "Solo foros públicos";
$a->strings["This Website Only"] = "Solo este sitio web";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. <strong>Es posible</strong> que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; $a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. <strong>Es posible</strong> que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente.";
$a->strings["Add new connections to this collection (privacy group)"] = "Añadir nuevas conexiones a esta colección (privacidad del grupo)"; $a->strings["Add new connections to this collection (privacy group)"] = "Añadir nuevas conexiones a esta colección (privacidad del grupo)";
$a->strings["All Channels"] = "Todos los canales"; $a->strings["All Channels"] = "Todos los canales";
@ -882,6 +881,10 @@ $a->strings["Collections"] = "Colecciones";
$a->strings["Edit collection"] = "Editar colección"; $a->strings["Edit collection"] = "Editar colección";
$a->strings["Add new collection"] = "Añadir nueva colección"; $a->strings["Add new collection"] = "Añadir nueva colección";
$a->strings["Channels not in any collection"] = "El canal no se encuentra en ninguna colección"; $a->strings["Channels not in any collection"] = "El canal no se encuentra en ninguna colección";
$a->strings["Invalid data packet"] = "Paquete de datos no válido";
$a->strings["Unable to verify channel signature"] = "No ha sido posible de verificar la firma del canal";
$a->strings["Unable to verify site signature for %s"] = "No ha sido posible de verificar la firma del sitio para %s";
$a->strings["invalid target signature"] = "La firma recibida no es válida";
$a->strings["New Page"] = "Nueva página"; $a->strings["New Page"] = "Nueva página";
$a->strings["View"] = "Ver"; $a->strings["View"] = "Ver";
$a->strings["Actions"] = "Acciones"; $a->strings["Actions"] = "Acciones";
@ -1943,34 +1946,6 @@ $a->strings["Sync now"] = "Sincronizar ahora";
$a->strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; $a->strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas.";
$a->strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; $a->strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal.";
$a->strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; $a->strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo.";
$a->strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario.";
$a->strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado.";
$a->strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado.";
$a->strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló.";
$a->strings["Messages"] = "Mensajes";
$a->strings["Message recalled."] = "Mensaje revocado.";
$a->strings["Conversation removed."] = "Conversación eliminada.";
$a->strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red";
$a->strings["Send Private Message"] = "Enviar un mensaje privado";
$a->strings["To:"] = "Para:";
$a->strings["Subject:"] = "Asunto:";
$a->strings["Your message:"] = "Su mensaje:";
$a->strings["Send"] = "Enviar";
$a->strings["Delete message"] = "Borrar mensaje";
$a->strings["Delivery report"] = "Informe de transmisión";
$a->strings["Recall message"] = "Revocar el mensaje";
$a->strings["Message has been recalled."] = "El mensaje ha sido revocado.";
$a->strings["Delete Conversation"] = "Eliminar conversación";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero <strong>puede</strong> responder desde la página del perfil del remitente.";
$a->strings["Send Reply"] = "Responder";
$a->strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):";
$a->strings["Please login."] = "Por favor, inicie sesión.";
$a->strings["Xchan Lookup"] = "Búsqueda de canales";
$a->strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:";
$a->strings["Not found."] = "No encontrado.";
$a->strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página.";
$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil.";
$a->strings["Item not available."] = "Elemento no disponible";
$a->strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; $a->strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones.";
$a->strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; $a->strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. ";
$a->strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; $a->strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname";
@ -1983,12 +1958,20 @@ $a->strings["%d message sent."] = array(
$a->strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; $a->strings["You have no more invitations available"] = "No tiene más invitaciones disponibles";
$a->strings["Send invitations"] = "Enviar invitaciones"; $a->strings["Send invitations"] = "Enviar invitaciones";
$a->strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; $a->strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:";
$a->strings["Your message:"] = "Su mensaje:";
$a->strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; $a->strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname.";
$a->strings["You will need to supply this invitation code: "] = "Debe proporcionar este código de invitación:"; $a->strings["You will need to supply this invitation code: "] = "Debe proporcionar este código de invitación:";
$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; $a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)";
$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; $a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio.";
$a->strings["or visit "] = "o visite "; $a->strings["or visit "] = "o visite ";
$a->strings["3. Click [Connect]"] = "3. Pulse [conectar]"; $a->strings["3. Click [Connect]"] = "3. Pulse [conectar]";
$a->strings["Please login."] = "Por favor, inicie sesión.";
$a->strings["Xchan Lookup"] = "Búsqueda de canales";
$a->strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:";
$a->strings["Not found."] = "No encontrado.";
$a->strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página.";
$a->strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil.";
$a->strings["Item not available."] = "Elemento no disponible";
$a->strings["Remote privacy information not available."] = "La información privada remota no está disponible."; $a->strings["Remote privacy information not available."] = "La información privada remota no está disponible.";
$a->strings["Visible to:"] = "Visible para:"; $a->strings["Visible to:"] = "Visible para:";
$a->strings["Export Channel"] = "Exportar el canal"; $a->strings["Export Channel"] = "Exportar el canal";
@ -2079,6 +2062,26 @@ $a->strings["Must be unique, only seen by you"] = "Debe ser único, solo será v
$a->strings["Menu title"] = "Título del menú"; $a->strings["Menu title"] = "Título del menú";
$a->strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; $a->strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás";
$a->strings["Allow bookmarks"] = "Permitir marcadores"; $a->strings["Allow bookmarks"] = "Permitir marcadores";
$a->strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario.";
$a->strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado.";
$a->strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado.";
$a->strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló.";
$a->strings["Messages"] = "Mensajes";
$a->strings["Message recalled."] = "Mensaje revocado.";
$a->strings["Conversation removed."] = "Conversación eliminada.";
$a->strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red";
$a->strings["Send Private Message"] = "Enviar un mensaje privado";
$a->strings["To:"] = "Para:";
$a->strings["Subject:"] = "Asunto:";
$a->strings["Send"] = "Enviar";
$a->strings["Delete message"] = "Borrar mensaje";
$a->strings["Delivery report"] = "Informe de transmisión";
$a->strings["Recall message"] = "Revocar el mensaje";
$a->strings["Message has been recalled."] = "El mensaje ha sido revocado.";
$a->strings["Delete Conversation"] = "Eliminar conversación";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero <strong>puede</strong> responder desde la página del perfil del remitente.";
$a->strings["Send Reply"] = "Responder";
$a->strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):";
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo."; $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo.";
$a->strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; $a->strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio.";
$a->strings["Version %s"] = "Versión %s"; $a->strings["Version %s"] = "Versión %s";
@ -2101,21 +2104,28 @@ $a->strings["Event can not end before it has started."] = "Un evento no puede te
$a->strings["Unable to generate preview."] = "No se puede crear la vista previa."; $a->strings["Unable to generate preview."] = "No se puede crear la vista previa.";
$a->strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; $a->strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio.";
$a->strings["Event not found."] = "Evento no encontrado."; $a->strings["Event not found."] = "Evento no encontrado.";
$a->strings["Event Title"] = "Título del evento"; $a->strings["Edit event titel"] = "Editar el título del evento";
$a->strings["Event titel"] = "Título del evento";
$a->strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; $a->strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)";
$a->strings["Edit Category"] = "Editar la categoría";
$a->strings["Category"] = "Categoría"; $a->strings["Category"] = "Categoría";
$a->strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo";
$a->strings["Start date and time"] = "Fecha y hora de comienzo"; $a->strings["Start date and time"] = "Fecha y hora de comienzo";
$a->strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; $a->strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes";
$a->strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación";
$a->strings["Finish date and time"] = "Fecha y hora de terminación"; $a->strings["Finish date and time"] = "Fecha y hora de terminación";
$a->strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de zona horaria"; $a->strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de zona horaria";
$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; $a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales.";
$a->strings["Edit Description"] = "Editar la descripción";
$a->strings["Edit Location"] = "Modificar la localización";
$a->strings["Share this event"] = "Compartir este evento"; $a->strings["Share this event"] = "Compartir este evento";
$a->strings["Advanced Options"] = "Opciones avanzadas"; $a->strings["Advanced Options"] = "Opciones avanzadas";
$a->strings["l, F j"] = "l j F"; $a->strings["l, F j"] = "l j F";
$a->strings["Edit event"] = "Editar evento"; $a->strings["Edit event"] = "Editar evento";
$a->strings["Delete event"] = "Borrar evento"; $a->strings["Delete event"] = "Borrar evento";
$a->strings["calendar"] = "calendario"; $a->strings["calendar"] = "calendario";
$a->strings["New Event"] = "Nuevo evento"; $a->strings["Edit Event"] = "Editar el evento";
$a->strings["Create Event"] = "Crear un evento";
$a->strings["Today"] = "Hoy"; $a->strings["Today"] = "Hoy";
$a->strings["Event removed"] = "Evento borrado"; $a->strings["Event removed"] = "Evento borrado";
$a->strings["Failed to remove event"] = "Error al eliminar el evento"; $a->strings["Failed to remove event"] = "Error al eliminar el evento";

View File

@ -758,9 +758,9 @@ function pageUpdate() {
}); });
} }
function justifyPhotos() { function justifyPhotos(id) {
justifiedGalleryActive = true; justifiedGalleryActive = true;
$('#photo-album-contents').justifiedGallery({ $('#' + id).justifiedGallery({
selector: '> a, > div:not(.spinner, #page-end)', selector: '> a, > div:not(.spinner, #page-end)',
margins: 3, margins: 3,
border: 0, border: 0,
@ -775,9 +775,9 @@ function justifyPhotos() {
}).on('jg.complete', function(e){ justifiedGalleryActive = false; }); }).on('jg.complete', function(e){ justifiedGalleryActive = false; });
} }
function justifyPhotosAjax() { function justifyPhotosAjax(id) {
justifiedGalleryActive = true; justifiedGalleryActive = true;
$('#photo-album-contents').justifiedGallery('norewind').on('jg.complete', function(e){ justifiedGalleryActive = false; }); $('#' + id).justifiedGallery('norewind').on('jg.complete', function(e){ justifiedGalleryActive = false; });
} }
function notify_popup_loader(notifyType) { function notify_popup_loader(notifyType) {

View File

@ -1,22 +0,0 @@
/**
* JavaScript used by mod/mitem.
*/
$(document).ready(function() {
$("a#settings-default-perms-menu").colorbox({
'inline' : true,
'transition' : 'elastic'
});
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
var selstr;
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
selstr = $(this).text();
$('#jot-perms-icon').removeClass('icon-unlock').addClass('icon-lock');
$('#jot-public').hide();
});
if(selstr === null) {
$('#jot-perms-icon').removeClass('icon-lock').addClass('icon-unlock');
$('#jot-public').show();
}
}).trigger('change');
});

File diff suppressed because it is too large Load Diff

View File

@ -143,10 +143,6 @@ $a->strings["Collection is empty."] = "Collectie is leeg";
$a->strings["Collection: %s"] = "Collectie: %s"; $a->strings["Collection: %s"] = "Collectie: %s";
$a->strings["Connection: %s"] = "Connectie: %s"; $a->strings["Connection: %s"] = "Connectie: %s";
$a->strings["Connection not found."] = "Connectie niet gevonden."; $a->strings["Connection not found."] = "Connectie niet gevonden.";
$a->strings["No recipient provided."] = "Geen ontvanger opgegeven.";
$a->strings["[no subject]"] = "[geen onderwerp]";
$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden.";
$a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd.";
$a->strings["view full size"] = "volledige grootte tonen"; $a->strings["view full size"] = "volledige grootte tonen";
$a->strings["\$Projectname Notification"] = "\$Projectname-notificatie"; $a->strings["\$Projectname Notification"] = "\$Projectname-notificatie";
$a->strings["\$projectname"] = "\$projectname"; $a->strings["\$projectname"] = "\$projectname";
@ -321,6 +317,9 @@ $a->strings["Week View"] = "Week tonen";
$a->strings["Month View"] = "Maand tonen"; $a->strings["Month View"] = "Maand tonen";
$a->strings["Export"] = "Exporteren"; $a->strings["Export"] = "Exporteren";
$a->strings["Import"] = "Importeren"; $a->strings["Import"] = "Importeren";
$a->strings["Events Tools"] = "Agenda-hulpmiddelen";
$a->strings["Export Calendar"] = "Exporteren";
$a->strings["Import Calendar"] = "Importeren";
$a->strings["Chat Rooms"] = "Chatkanalen"; $a->strings["Chat Rooms"] = "Chatkanalen";
$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; $a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen";
$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; $a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen";
@ -669,10 +668,6 @@ $a->strings["Zot!"] = "Zot!";
$a->strings["LinkedIn"] = "LinkedIn"; $a->strings["LinkedIn"] = "LinkedIn";
$a->strings["XMPP/IM"] = "XMPP/IM"; $a->strings["XMPP/IM"] = "XMPP/IM";
$a->strings["MySpace"] = "MySpace"; $a->strings["MySpace"] = "MySpace";
$a->strings["Invalid data packet"] = "Datapakket ongeldig";
$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. ";
$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd";
$a->strings["invalid target signature"] = "ongeldig doelkenmerk";
$a->strings["Image/photo"] = "Afbeelding/foto"; $a->strings["Image/photo"] = "Afbeelding/foto";
$a->strings["Encrypted content"] = "Versleutelde inhoud"; $a->strings["Encrypted content"] = "Versleutelde inhoud";
$a->strings["Install %s element: "] = "Installeer %s-element: "; $a->strings["Install %s element: "] = "Installeer %s-element: ";
@ -705,12 +700,6 @@ $a->strings["%d connection in common"] = array(
1 => "%d gemeenschappelijke connecties", 1 => "%d gemeenschappelijke connecties",
); );
$a->strings["show more"] = "meer connecties weergeven"; $a->strings["show more"] = "meer connecties weergeven";
$a->strings["Directory Options"] = "Opties kanalengids";
$a->strings["Safe Mode"] = "Veilig zoeken";
$a->strings["No"] = "Nee";
$a->strings["Yes"] = "Ja";
$a->strings["Public Forums Only"] = "Alleen openbare forums";
$a->strings["This Website Only"] = "Alleen deze hub";
$a->strings["%s <!item_type!>"] = "%s <!item_type!>"; $a->strings["%s <!item_type!>"] = "%s <!item_type!>";
$a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s"; $a->strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s";
$a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; $a->strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s.";
@ -757,6 +746,10 @@ $a->strings["local account not found."] = "lokale account niet gevonden.";
$a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; $a->strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden";
$a->strings["Embedded content"] = "Ingesloten inhoud"; $a->strings["Embedded content"] = "Ingesloten inhoud";
$a->strings["Embedding disabled"] = "Insluiten uitgeschakeld"; $a->strings["Embedding disabled"] = "Insluiten uitgeschakeld";
$a->strings["No recipient provided."] = "Geen ontvanger opgegeven.";
$a->strings["[no subject]"] = "[geen onderwerp]";
$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden.";
$a->strings["Stored post could not be verified."] = "Opgeslagen bericht kon niet worden geverifieerd.";
$a->strings["Logout"] = "Uitloggen"; $a->strings["Logout"] = "Uitloggen";
$a->strings["End this session"] = "Beëindig deze sessie"; $a->strings["End this session"] = "Beëindig deze sessie";
$a->strings["Home"] = "Home"; $a->strings["Home"] = "Home";
@ -874,6 +867,12 @@ $a->strings["Blocks"] = "Blokken";
$a->strings["Menus"] = "Menu's"; $a->strings["Menus"] = "Menu's";
$a->strings["Layouts"] = "Lay-outs"; $a->strings["Layouts"] = "Lay-outs";
$a->strings["Pages"] = "Pagina's"; $a->strings["Pages"] = "Pagina's";
$a->strings["Directory Options"] = "Opties kanalengids";
$a->strings["Safe Mode"] = "Veilig zoeken";
$a->strings["No"] = "Nee";
$a->strings["Yes"] = "Ja";
$a->strings["Public Forums Only"] = "Alleen openbare forums";
$a->strings["This Website Only"] = "Alleen deze hub";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten <strong>kunnen</strong> van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; $a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten <strong>kunnen</strong> van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken.";
$a->strings["Add new connections to this collection (privacy group)"] = "Voeg nieuwe connecties aan deze collectie toe (privacy-groep)"; $a->strings["Add new connections to this collection (privacy group)"] = "Voeg nieuwe connecties aan deze collectie toe (privacy-groep)";
$a->strings["All Channels"] = "Alle kanalen"; $a->strings["All Channels"] = "Alle kanalen";
@ -882,6 +881,10 @@ $a->strings["Collections"] = "Collecties";
$a->strings["Edit collection"] = "Collectie bewerken"; $a->strings["Edit collection"] = "Collectie bewerken";
$a->strings["Add new collection"] = "Nieuwe collectie toevoegen"; $a->strings["Add new collection"] = "Nieuwe collectie toevoegen";
$a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden"; $a->strings["Channels not in any collection"] = "Kanalen die zich in geen enkele collectie bevinden";
$a->strings["Invalid data packet"] = "Datapakket ongeldig";
$a->strings["Unable to verify channel signature"] = "Kanaalkenmerk kon niet worden geverifieerd. ";
$a->strings["Unable to verify site signature for %s"] = "Hubkenmerk voor %s kon niet worden geverifieerd";
$a->strings["invalid target signature"] = "ongeldig doelkenmerk";
$a->strings["New Page"] = "Nieuwe pagina"; $a->strings["New Page"] = "Nieuwe pagina";
$a->strings["View"] = "Weergeven"; $a->strings["View"] = "Weergeven";
$a->strings["Actions"] = "Acties"; $a->strings["Actions"] = "Acties";
@ -1891,7 +1894,7 @@ $a->strings["Unseen channel activity"] = "Niet bekeken kanaal-activiteit";
$a->strings["Unseen private messages"] = "Niet bekeken privéberichten"; $a->strings["Unseen private messages"] = "Niet bekeken privéberichten";
$a->strings["Recommended"] = "Aanbevolen"; $a->strings["Recommended"] = "Aanbevolen";
$a->strings["Upcoming events"] = "Aankomende gebeurtenissen"; $a->strings["Upcoming events"] = "Aankomende gebeurtenissen";
$a->strings["Events today"] = "Gebeurtissen van vandaag"; $a->strings["Events today"] = "Gebeurtenissen van vandaag";
$a->strings["Upcoming birthdays"] = "Aankomende verjaardagen"; $a->strings["Upcoming birthdays"] = "Aankomende verjaardagen";
$a->strings["Not available in all themes"] = "Niet in alle thema's beschikbaar"; $a->strings["Not available in all themes"] = "Niet in alle thema's beschikbaar";
$a->strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties"; $a->strings["System (personal) notifications"] = "(Persoonlijke) systeemnotificaties";
@ -1943,34 +1946,6 @@ $a->strings["Sync now"] = "Nu synchroniseren";
$a->strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; $a->strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen.";
$a->strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; $a->strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen.";
$a->strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; $a->strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is.";
$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken.";
$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren.";
$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren";
$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt.";
$a->strings["Messages"] = "Berichten";
$a->strings["Message recalled."] = "Bericht ingetrokken.";
$a->strings["Conversation removed."] = "Conversatie verwijderd";
$a->strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar";
$a->strings["Send Private Message"] = "Privébericht versturen";
$a->strings["To:"] = "Aan:";
$a->strings["Subject:"] = "Onderwerp:";
$a->strings["Your message:"] = "Jouw bericht:";
$a->strings["Send"] = "Verzenden";
$a->strings["Delete message"] = "Bericht verwijderen";
$a->strings["Delivery report"] = "Afleveringsrapport";
$a->strings["Recall message"] = "Bericht intrekken";
$a->strings["Message has been recalled."] = "Bericht is ingetrokken.";
$a->strings["Delete Conversation"] = "Verwijder conversatie";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. <strong>Mogelijk</strong> kan je reageren op de kanaalpagina van de afzender.";
$a->strings["Send Reply"] = "Antwoord versturen";
$a->strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):";
$a->strings["Please login."] = "Inloggen.";
$a->strings["Xchan Lookup"] = "Xchan opzoeken";
$a->strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:";
$a->strings["Not found."] = "Niet gevonden.";
$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken.";
$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina.";
$a->strings["Item not available."] = "Item is niet aanwezig.";
$a->strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; $a->strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden.";
$a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; $a->strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres.";
$a->strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; $a->strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname";
@ -1983,12 +1958,20 @@ $a->strings["%d message sent."] = array(
$a->strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; $a->strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar";
$a->strings["Send invitations"] = "Uitnodigingen verzenden"; $a->strings["Send invitations"] = "Uitnodigingen verzenden";
$a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; $a->strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:";
$a->strings["Your message:"] = "Jouw bericht:";
$a->strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op https://redmatrix.me."; $a->strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op https://redmatrix.me.";
$a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven:"; $a->strings["You will need to supply this invitation code: "] = "Je moet deze uitnodigingscode opgeven:";
$a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; $a->strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):";
$a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; $a->strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:";
$a->strings["or visit "] = "of bezoek "; $a->strings["or visit "] = "of bezoek ";
$a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; $a->strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]";
$a->strings["Please login."] = "Inloggen.";
$a->strings["Xchan Lookup"] = "Xchan opzoeken";
$a->strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:";
$a->strings["Not found."] = "Niet gevonden.";
$a->strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken.";
$a->strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina.";
$a->strings["Item not available."] = "Item is niet aanwezig.";
$a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; $a->strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar.";
$a->strings["Visible to:"] = "Zichtbaar voor:"; $a->strings["Visible to:"] = "Zichtbaar voor:";
$a->strings["Export Channel"] = "Kanaal exporteren"; $a->strings["Export Channel"] = "Kanaal exporteren";
@ -2079,6 +2062,26 @@ $a->strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen
$a->strings["Menu title"] = "Titel van menu"; $a->strings["Menu title"] = "Titel van menu";
$a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; $a->strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien.";
$a->strings["Allow bookmarks"] = "Bladwijzers toestaan"; $a->strings["Allow bookmarks"] = "Bladwijzers toestaan";
$a->strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken.";
$a->strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren.";
$a->strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren";
$a->strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt.";
$a->strings["Messages"] = "Berichten";
$a->strings["Message recalled."] = "Bericht ingetrokken.";
$a->strings["Conversation removed."] = "Conversatie verwijderd";
$a->strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar";
$a->strings["Send Private Message"] = "Privébericht versturen";
$a->strings["To:"] = "Aan:";
$a->strings["Subject:"] = "Onderwerp:";
$a->strings["Send"] = "Verzenden";
$a->strings["Delete message"] = "Bericht verwijderen";
$a->strings["Delivery report"] = "Afleveringsrapport";
$a->strings["Recall message"] = "Bericht intrekken";
$a->strings["Message has been recalled."] = "Bericht is ingetrokken.";
$a->strings["Delete Conversation"] = "Verwijder conversatie";
$a->strings["No secure communications available. You <strong>may</strong> be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. <strong>Mogelijk</strong> kan je reageren op de kanaalpagina van de afzender.";
$a->strings["Send Reply"] = "Antwoord versturen";
$a->strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):";
$a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; $a->strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen.";
$a->strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; $a->strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden.";
$a->strings["Version %s"] = "Versie %s"; $a->strings["Version %s"] = "Versie %s";
@ -2101,21 +2104,28 @@ $a->strings["Event can not end before it has started."] = "Gebeurtenis kan niet
$a->strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; $a->strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren";
$a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; $a->strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist.";
$a->strings["Event not found."] = "Gebeurtenis niet gevonden"; $a->strings["Event not found."] = "Gebeurtenis niet gevonden";
$a->strings["Event Title"] = "Titel"; $a->strings["Edit event titel"] = "Titel bewerken";
$a->strings["Event titel"] = "Titel";
$a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; $a->strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)";
$a->strings["Edit Category"] = "Categorie";
$a->strings["Category"] = "Categorie"; $a->strings["Category"] = "Categorie";
$a->strings["Edit start date and time"] = "Begindatum en -tijd bewerken";
$a->strings["Start date and time"] = "Begindatum en -tijd"; $a->strings["Start date and time"] = "Begindatum en -tijd";
$a->strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; $a->strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing";
$a->strings["Edit finish date and time"] = "Einddatum en -tijd bewerken";
$a->strings["Finish date and time"] = "Einddatum en -tijd"; $a->strings["Finish date and time"] = "Einddatum en -tijd";
$a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; $a->strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt";
$a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; $a->strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen.";
$a->strings["Edit Description"] = "Omschrijving bewerken";
$a->strings["Edit Location"] = "Locatie bewerken";
$a->strings["Share this event"] = "Deel deze gebeurtenis"; $a->strings["Share this event"] = "Deel deze gebeurtenis";
$a->strings["Advanced Options"] = "Geavenceerde opties"; $a->strings["Advanced Options"] = "Geavanceerde opties";
$a->strings["l, F j"] = "l j F"; $a->strings["l, F j"] = "l j F";
$a->strings["Edit event"] = "Gebeurtenis bewerken"; $a->strings["Edit event"] = "Gebeurtenis bewerken";
$a->strings["Delete event"] = "Gebeurtenis verwijderen"; $a->strings["Delete event"] = "Gebeurtenis verwijderen";
$a->strings["calendar"] = "agenda"; $a->strings["calendar"] = "agenda";
$a->strings["New Event"] = "Nieuwe gebeurtenis"; $a->strings["Edit Event"] = "Gebeurtenis bewerken";
$a->strings["Create Event"] = "Gebeurtenis aanmaken";
$a->strings["Today"] = "Vandaag"; $a->strings["Today"] = "Vandaag";
$a->strings["Event removed"] = "Gebeurtenis verwijderd"; $a->strings["Event removed"] = "Gebeurtenis verwijderd";
$a->strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; $a->strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt";

View File

@ -57,26 +57,11 @@ abbr {
} }
/* icons */ /* icons */
.tool-icons { .tool-icons,
.cat-icons {
color: $toolicon_colour; color: $toolicon_colour;
} }
.icon {
background-color: transparent ;
background-repeat: no-repeat;
display: block;
overflow: hidden;
text-indent: -9999px;
}
.icon.text {
text-indent: 0px;
}
.connect-icon {
margin-right: 5px;
}
a, a,
.fakelink { .fakelink {
color: $link_colour; color: $link_colour;
@ -141,27 +126,12 @@ pre {
border:1px solid #ccc; border:1px solid #ccc;
} }
.ccollapse-wrapper {
border: 1px solid #CCC;
padding: 5px;
}
.heart { .heart {
color: #FF0000; color: #FF0000;
font-size: 100%; font-size: 100%;
margin-right: 5px; margin-right: 5px;
} }
.subdued {
opacity: 0.3;
filter:alpha(opacity=30);
}
.subdued:hover {
opacity: 1.0;
filter:alpha(opacity=100);
}
nav, nav,
header { header {
opacity: $nav_float_min_opacity; opacity: $nav_float_min_opacity;
@ -264,11 +234,6 @@ footer {
margin: 15px 0px; margin: 15px 0px;
} }
.fakebutton {
margin-top: 15px;
margin-bottom: 15px;
}
/*TODO: we should use one class for all this. */ /*TODO: we should use one class for all this. */
.group-selected, .group-selected,
@ -284,19 +249,6 @@ footer {
color: $font_colour; color: $font_colour;
} }
.fileas-all {
text-decoration: none !important;
}
.fileas-all:hover {
text-decoration: underline !important;
}
#sysmsg {
margin-bottom: 10px;
}
#login-main { #login-main {
max-width: 300px; max-width: 300px;
margin-top: 50px; margin-top: 50px;
@ -312,10 +264,6 @@ footer {
clear: both; clear: both;
} }
#page-profile .title {
font-weight: bold;
}
#profile-edit-links { #profile-edit-links {
padding-top: 15px; padding-top: 15px;
padding-bottom: 15px; padding-bottom: 15px;
@ -367,22 +315,6 @@ footer {
margin-bottom: 0px; margin-bottom: 0px;
} }
#profile-extra-links {
clear: both;
margin-top: 10px;
}
#profile-extra-links ul {
list-style-type: none;
padding: 0px;
}
#profile-extra-links li {
margin-top: 10px;
}
.profile-edit-side-link { .profile-edit-side-link {
padding: 3px 0px; padding: 3px 0px;
opacity: 0; opacity: 0;
@ -395,31 +327,10 @@ footer {
filter:alpha(opacity=100); filter:alpha(opacity=100);
} }
.view-contact-wrapper {
margin-top: 20px;
float: left;
margin-left: 20px;
width: 180px;
}
.contact-wrapper {
float: left;
width: 150px;
height: 150px;
overflow: auto;
}
#view-contact-end { #view-contact-end {
clear: both; clear: both;
} }
#viewconnections {
margin-top: 15px;
}
#profile-photo-wrapper img { #profile-photo-wrapper img {
width: 100%; width: 100%;
height: 100%; height: 100%;
@ -436,13 +347,6 @@ footer {
border-radius: $radiuspx; border-radius: $radiuspx;
} }
#profile-in-dir-yes-label,
#profile-in-dir-no-label,
#profile-in-netdir-yes-label,
#profile-in-netdir-no-label,
#hide-wall-yes-label,
#hide-wall-no-label,
#hide-friends-yes-label, #hide-friends-yes-label,
#hide-friends-no-label { #hide-friends-no-label {
margin-left: 125px; margin-left: 125px;
@ -450,34 +354,11 @@ footer {
width: 50px; width: 50px;
} }
#profile-publish-yes-reg,
#profile-publish-no-reg {
float: left;
margin-bottom: 10px;
}
#profile-publish-yes-label-reg,
#profile-publish-no-label-reg {
margin-left: 350px;
float: left;
width: 50px;
}
#profile-publish-break-reg,
#profile-publish-end-reg {
clear: both;
}
#fsuggest-desc, #fsuggest-submit-wrapper { #fsuggest-desc, #fsuggest-submit-wrapper {
margin-top: 15px; margin-top: 15px;
margin-bottom: 15px; margin-bottom: 15px;
} }
.thread-end-wrapper {
margin-left: 50px;
}
.profile-listing-photo-wrapper { .profile-listing-photo-wrapper {
float: left; float: left;
} }
@ -509,10 +390,6 @@ footer {
} }
.directory-details {
font-size: 0.7em;
}
.app-name { .app-name {
overflow: none; overflow: none;
} }
@ -544,27 +421,17 @@ footer {
padding: 4px; padding: 4px;
} }
.pager_first a,
.pager_last a,
.pager_prev a,
.pager_next a,
.pager_n a {
}
.pager_current { .pager_current {
border: 1px solid transparent; border: 1px solid transparent;
background: transparent; background: transparent;
padding: 4px; padding: 4px;
} }
#block-message, #ignore-message, #archive-message, #lost-contact-message { .photo,
color: #FF0000; .contact-block-img {
} border-radius: $radiuspx;
-moz-border-radius: $radiuspx;
.photo, .contact-block-img { box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444;
border-radius: $radiuspx;
-moz-border-radius: $radiuspx;
box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444;
} }
#side-bar-photos-albums { #side-bar-photos-albums {
@ -575,10 +442,11 @@ footer {
list-style: none; list-style: none;
} }
.profile-match-photo img, .directory-photo-img, .photo-album-photo, .photo-top-photo { .profile-match-photo img,
border-radius: $radiuspx; .directory-photo-img {
-moz-border-radius: $radiuspx; border-radius: $radiuspx;
box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444; -moz-border-radius: $radiuspx;
box-shadow: $shadowpx $shadowpx $shadowpx 0 #444444;
} }
.profile-match-photo img { .profile-match-photo img {
@ -586,57 +454,10 @@ footer {
height: $top_photo !important; height: $top_photo !important;
} }
#sidebar-page-list .label {
margin-left: 5px;
}
.photo-top-photo, .photo-album-photo {
/* padding: 10px;
max-width: 300px;
border: 1px solid #888888;
*/
position: absolute;
display: block;
/* max-width: 100%;
max-height: 100%; */
left: 0;
right: 0;
top: 0;
bottom: 0;
margin: auto;
}
.photo-top-photo-link, .photo-album-photo-link {
display: block;
width: 100%;
position: relative;
height: 0;
padding: 75% 0 0 0;
overflow: hidden;
}
#photo-view-wrapper { #photo-view-wrapper {
background-color: $item_colour; background-color: $item_colour;
} }
#side-follow-wrapper {
margin-top: 20px;
}
#side-peoplefind-url::-webkit-input-placeholder, #side-advanced-peoplefind-url::-webkit-input-placeholder {
font-family: FontAwesome;
}
#side-peoplefind-url::-moz-placeholder, #side-advanced-peoplefind-url::-moz-placeholder {
font-family: FontAwesome;
}
#side-match-link {
margin-top: 10px;
}
.pmenu.horizontal { .pmenu.horizontal {
padding: 0 0 0 0; padding: 0 0 0 0;
border-bottom: none; border-bottom: none;
@ -655,11 +476,6 @@ footer {
padding-right: 15px; padding-right: 15px;
} }
#settings-default-perms-menu {
margin-top: 15px;
margin-bottom: 15px;
}
.group-delete-wrapper { .group-delete-wrapper {
float: right; float: right;
} }
@ -692,9 +508,9 @@ a.rateme, div.rateme {
} }
#pause { #pause {
position: fixed; position: fixed;
bottom: 5px; bottom: 5px;
right: 5px; right: 5px;
} }
#vcard-end { #vcard-end {
@ -810,11 +626,6 @@ nav .acpopup {
width: 290px; width: 290px;
} }
.profile-clear {
clear: both;
}
.clear { .clear {
clear: both; clear: both;
} }
@ -831,24 +642,11 @@ nav .acpopup {
margin-bottom: 20px; margin-bottom: 20px;
} }
/* end from default */
#network-new-link { #network-new-link {
margin-top: 15px; margin-top: 15px;
margin-bottom: 15px; margin-bottom: 15px;
} }
.tool-wrapper {
float: left;
margin-left: 15px;
}
.tool-link {
cursor: pointer;
}
#cboxOverlay { #cboxOverlay {
z-index: 1050; z-index: 1050;
} }
@ -865,29 +663,10 @@ nav .acpopup {
z-index: 1052; z-index: 1052;
} }
.settings-block {
border: 1px solid #AAA;
margin: 10px;
padding: 10px;
}
.app-title { .app-title {
margin: 10px; margin: 10px;
} }
#identity-manage-desc {
margin-top:15px;
margin-bottom: 15px;
}
#identity-manage-choose {
margin-bottom: 15px;
}
#identity-submit {
margin-top: 20px;
}
.profile-match-photo { .profile-match-photo {
float: left; float: left;
} }
@ -999,26 +778,10 @@ nav .acpopup {
margin-top: 15px; margin-top: 15px;
} }
.required { .required {
color: #ff0000; color: #ff0000;
} }
#item-delete-selected {
margin-top: 30px;
}
#item-delete-selected-end {
clear: both;
}
#item-delete-selected-icon, #item-delete-selected-desc {
float: left;
margin-right: 5px;
}
#item-delete-selected-desc:hover {
text-decoration: underline;
}
.notif-image { .notif-image {
height: 80px; height: 80px;
width: 80px; width: 80px;
@ -1029,18 +792,6 @@ nav .acpopup {
margin-bottom: 15px; margin-bottom: 15px;
} }
/**
* Plugins settings
*/
.settings-block > h3,
.settings-heading {
border-bottom: 1px solid #babdb6;
}
/** /**
* OAuth * OAuth
*/ */
@ -1145,7 +896,7 @@ div.jGrowl div.jGrowl-notification {
} }
.jslider .jslider-scale ins { .jslider .jslider-scale ins {
color: #333; color: #333;
font-size: $body_font_size; font-size: $body_font_size;
width: 100px; width: 100px;
text-align: center; text-align: center;
@ -1352,11 +1103,6 @@ a.rconnect:hover, a.rateme:hover, div.rateme:hover {
font-size : 1.8em !important; font-size : 1.8em !important;
} }
div.page-list-item {
margin: 20px;
}
div#write-pages { div#write-pages {
display: block; display: block;
background: silver; background: silver;
@ -1888,6 +1634,7 @@ blockquote {
font-style: italic; font-style: italic;
border-left: 3px solid #ccc; border-left: 3px solid #ccc;
padding: 1em 0px 1em 1.5em; padding: 1em 0px 1em 1.5em;
margin: 0px;
} }
.badge { .badge {

View File

@ -21,7 +21,7 @@
{{$upload_form}} {{$upload_form}}
{{$album_edit.1}} {{$album_edit.1}}
<div class="section-content-wrapper-np"> <div class="section-content-wrapper-np">
<div id="photo-album-contents"> <div id="photo-album-contents-{{$album_id}}">
{{foreach $photos as $photo}} {{foreach $photos as $photo}}
{{include file="photo_top.tpl"}} {{include file="photo_top.tpl"}}
{{/foreach}} {{/foreach}}
@ -30,5 +30,5 @@
</div> </div>
</div> </div>
<div class="photos-end"></div> <div class="photos-end"></div>
<script>$(document).ready(function() { loadingPage = false; justifyPhotos(); });</script> <script>$(document).ready(function() { loadingPage = false; justifyPhotos('photo-album-contents-{{$album_id}}'); });</script>
<div id="page-spinner"></div> <div id="page-spinner"></div>

View File

@ -8,7 +8,7 @@
</div> </div>
{{$upload_form}} {{$upload_form}}
<div class="section-content-wrapper-np"> <div class="section-content-wrapper-np">
<div id="photo-album-contents"> <div id="photo-album-contents-{{$album_id}}">
{{foreach $photos as $photo}} {{foreach $photos as $photo}}
{{include file="photo_top.tpl"}} {{include file="photo_top.tpl"}}
{{/foreach}} {{/foreach}}
@ -17,5 +17,5 @@
</div> </div>
</div> </div>
<div class="photos-end"></div> <div class="photos-end"></div>
<script>$(document).ready(function() { loadingPage = false; justifyPhotos(); });</script> <script>$(document).ready(function() { loadingPage = false; justifyPhotos('photo-album-contents-{{$album_id}}'); });</script>
<div id="page-spinner"></div> <div id="page-spinner"></div>

View File

@ -1,4 +1,4 @@
{{foreach $photos as $photo}} {{foreach $photos as $photo}}
{{include file="photo_top.tpl"}} {{include file="photo_top.tpl"}}
{{/foreach}} {{/foreach}}
<script>justifyPhotosAjax()</script> <script>justifyPhotosAjax('photo-album-contents-{{$album_id}}')</script>