Fix ffsapi for non-English languages (or better when 's was used in the strings) - Update nl+es
This commit is contained in:
parent
44fa4d1081
commit
2b0b03eebc
@ -5,10 +5,10 @@ function ffsapi_content(&$a) {
|
||||
|
||||
$baseurl = z_root();
|
||||
$name = get_config('system','sitename');
|
||||
$description = t('Share content from Firefox to $Projectname');
|
||||
$author = 'Mike Macgirvin';
|
||||
$homepage = 'http://hubzilla.org';
|
||||
$activate = t('Activate the Firefox $Projectname provider');
|
||||
$description = t("Share content from Firefox to $Projectname");
|
||||
$author = "Mike Macgirvin";
|
||||
$homepage = "http://hubzilla.org";
|
||||
$activate = t("Activate the Firefox $Projectname provider");
|
||||
|
||||
$s = <<< EOT
|
||||
|
||||
@ -40,9 +40,9 @@ var data = {
|
||||
"unmarkedIcon": baseurl+"/images/hz-bookmark-32.png",
|
||||
|
||||
// should be available for display purposes
|
||||
"description": '$description',
|
||||
"author": '$author',
|
||||
"homepageURL": '$homepage',
|
||||
"description": "$description",
|
||||
"author": "$author",
|
||||
"homepageURL": "$homepage",
|
||||
|
||||
// optional
|
||||
"version": "1.0"
|
||||
|
3110
view/es/hmessages.po
3110
view/es/hmessages.po
File diff suppressed because it is too large
Load Diff
@ -5,6 +5,173 @@ function string_plural_select_es($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["photo"] = "foto";
|
||||
$a->strings["event"] = "evento";
|
||||
$a->strings["channel"] = "canal";
|
||||
$a->strings["status"] = "el mensaje de estado";
|
||||
$a->strings["comment"] = "comentario";
|
||||
$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 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["poked"] = "ha recibido un toque";
|
||||
$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__ Dislikes"] = "No me gusta";
|
||||
$a->strings["__ctx:title__ Agree"] = "De acuerdo";
|
||||
$a->strings["__ctx:title__ Disagree"] = "En desacuerdo";
|
||||
$a->strings["__ctx:title__ Abstain"] = "Abstención";
|
||||
$a->strings["__ctx:title__ Attending"] = "Participaré";
|
||||
$a->strings["__ctx:title__ Not attending"] = "No participaré";
|
||||
$a->strings["__ctx:title__ Might attend"] = "Quizá participe";
|
||||
$a->strings["Select"] = "Seleccionar";
|
||||
$a->strings["Delete"] = "Eliminar";
|
||||
$a->strings["Private Message"] = "Mensaje Privado";
|
||||
$a->strings["Message signature validated"] = "Firma de mensaje validada";
|
||||
$a->strings["Message signature incorrect"] = "Firma de mensaje incorrecta";
|
||||
$a->strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s";
|
||||
$a->strings["Categories:"] = "Categorías:";
|
||||
$a->strings["Filed under:"] = "Archivado bajo:";
|
||||
$a->strings["from %s"] = "desde %s";
|
||||
$a->strings["last edited: %s"] = "último cambio: %s";
|
||||
$a->strings["Expires: %s"] = "Caduca: %s";
|
||||
$a->strings["View in context"] = "Mostrar en su contexto";
|
||||
$a->strings["Please wait"] = "Espere por favor";
|
||||
$a->strings["remove"] = "eliminar";
|
||||
$a->strings["Loading..."] = "Cargando...";
|
||||
$a->strings["Delete Selected Items"] = "Eliminar elementos seleccionados";
|
||||
$a->strings["View Source"] = "Ver la fuente original de la entrada";
|
||||
$a->strings["Follow Thread"] = "Seguir el hilo";
|
||||
$a->strings["Stop Following"] = "Dejar de seguir";
|
||||
$a->strings["View Status"] = "Ver el estado actual";
|
||||
$a->strings["View Profile"] = "Ver el perfil";
|
||||
$a->strings["View Photos"] = "Ver fotos";
|
||||
$a->strings["Activity/Posts"] = "Actividad y entradas";
|
||||
$a->strings["Connect"] = "Conectar";
|
||||
$a->strings["Edit Connection"] = "Editar conexión";
|
||||
$a->strings["Send PM"] = "Enviar un mensaje privado";
|
||||
$a->strings["Poke"] = "Toques y otras cosas";
|
||||
$a->strings["Unknown"] = "Desconocido";
|
||||
$a->strings["%s likes this."] = "a %s le gusta esto.";
|
||||
$a->strings["%s doesn't like this."] = "a %s no le gusta esto.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
||||
0 => "a <span %1\$s>%2\$d personas</span> le gusta esto.",
|
||||
1 => "a <span %1\$s>%2\$d personas</span> les gusta esto.",
|
||||
);
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
|
||||
0 => "a <span %1\$s>%2\$d personas</span> no les gusta esto.",
|
||||
1 => "a <span %1\$s>%2\$d personas</span> no les gusta esto.",
|
||||
);
|
||||
$a->strings["and"] = "y";
|
||||
$a->strings[", and %d other people"] = array(
|
||||
0 => ", y %d persona más",
|
||||
1 => ", y %d personas más",
|
||||
);
|
||||
$a->strings["%s like this."] = "a %s le gusta esto.";
|
||||
$a->strings["%s don't like this."] = "a %s no le gusta esto.";
|
||||
$a->strings["Visible to <strong>everybody</strong>"] = "Visible para <strong>cualquiera</strong>";
|
||||
$a->strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:";
|
||||
$a->strings["Please enter a video link/URL:"] = "Por favor, introduzca un enlace de vídeo:";
|
||||
$a->strings["Please enter an audio link/URL:"] = "Por favor, introduzca un enlace de audio:";
|
||||
$a->strings["Tag term:"] = "Término de la etiqueta:";
|
||||
$a->strings["Save to Folder:"] = "Guardar en carpeta:";
|
||||
$a->strings["Where are you right now?"] = "¿Donde está ahora?";
|
||||
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM";
|
||||
$a->strings["Preview"] = "Previsualizar";
|
||||
$a->strings["Share"] = "Compartir";
|
||||
$a->strings["Page link name"] = "Nombre de enlace de página";
|
||||
$a->strings["Post as"] = "Publicar como";
|
||||
$a->strings["Bold"] = "Negrita";
|
||||
$a->strings["Italic"] = "Itálico ";
|
||||
$a->strings["Underline"] = "Subrayar";
|
||||
$a->strings["Quote"] = "Citar";
|
||||
$a->strings["Code"] = "Código";
|
||||
$a->strings["Upload photo"] = "Subir foto";
|
||||
$a->strings["upload photo"] = "subir foto";
|
||||
$a->strings["Attach file"] = "Adjuntar fichero";
|
||||
$a->strings["attach file"] = "adjuntar fichero";
|
||||
$a->strings["Insert web link"] = "Insertar enlace web";
|
||||
$a->strings["web link"] = "enlace web";
|
||||
$a->strings["Insert video link"] = "Insertar enlace de vídeo";
|
||||
$a->strings["video link"] = "enlace de vídeo";
|
||||
$a->strings["Insert audio link"] = "Insertar enlace de audio";
|
||||
$a->strings["audio link"] = "enlace de audio";
|
||||
$a->strings["Set your location"] = "Establecer su ubicación";
|
||||
$a->strings["set location"] = "establecer ubicación";
|
||||
$a->strings["Toggle voting"] = "Cambiar votación";
|
||||
$a->strings["Clear browser location"] = "Eliminar los datos de ubicación del navegador";
|
||||
$a->strings["clear location"] = "borrar los datos de ubicación";
|
||||
$a->strings["Title (optional)"] = "Título (opcional)";
|
||||
$a->strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)";
|
||||
$a->strings["Permission settings"] = "Configuración de permisos";
|
||||
$a->strings["permissions"] = "permisos";
|
||||
$a->strings["Public post"] = "Entrada pública";
|
||||
$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com";
|
||||
$a->strings["Set expiration date"] = "Configurar fecha de caducidad";
|
||||
$a->strings["Set publish date"] = "Establecer la fecha de publicación";
|
||||
$a->strings["Encrypt text"] = "Cifrar texto";
|
||||
$a->strings["OK"] = "OK";
|
||||
$a->strings["Cancel"] = "Cancelar";
|
||||
$a->strings["Discover"] = "Descubrir";
|
||||
$a->strings["Imported public streams"] = "Flujos públicos importados";
|
||||
$a->strings["Commented Order"] = "Comentarios recientes";
|
||||
$a->strings["Sort by Comment Date"] = "Ordenar por fecha de comentario";
|
||||
$a->strings["Posted Order"] = "Publicaciones recientes";
|
||||
$a->strings["Sort by Post Date"] = "Ordenar por fecha de publicación";
|
||||
$a->strings["Personal"] = "Personales";
|
||||
$a->strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran";
|
||||
$a->strings["New"] = "Nuevas";
|
||||
$a->strings["Activity Stream - by date"] = "Flujo de actividad - por fecha";
|
||||
$a->strings["Starred"] = "Preferidas";
|
||||
$a->strings["Favourite Posts"] = "Publicaciones favoritas";
|
||||
$a->strings["Spam"] = "Correo basura";
|
||||
$a->strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura";
|
||||
$a->strings["Channel"] = "Canal";
|
||||
$a->strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones";
|
||||
$a->strings["About"] = "Sobre mí";
|
||||
$a->strings["Profile Details"] = "Detalles del perfil";
|
||||
$a->strings["Photos"] = "Fotos";
|
||||
$a->strings["Photo Albums"] = "Álbumes de fotos";
|
||||
$a->strings["Files"] = "Ficheros";
|
||||
$a->strings["Files and Storage"] = "Ficheros y repositorio";
|
||||
$a->strings["Chatrooms"] = "Salas de chat";
|
||||
$a->strings["Bookmarks"] = "Marcadores";
|
||||
$a->strings["Saved Bookmarks"] = "Marcadores guardados";
|
||||
$a->strings["Webpages"] = "Páginas web";
|
||||
$a->strings["Manage Webpages"] = "Administrar páginas web";
|
||||
$a->strings["View all"] = "Ver todo";
|
||||
$a->strings["__ctx:noun__ Like"] = array(
|
||||
0 => "Me gusta",
|
||||
1 => "Me gusta",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Dislike"] = array(
|
||||
0 => "No me gusta",
|
||||
1 => "No me gusta",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Attending"] = array(
|
||||
0 => "Participando",
|
||||
1 => "Participaré",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Not Attending"] = array(
|
||||
0 => "No participando",
|
||||
1 => "No participaré",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Undecided"] = array(
|
||||
0 => "Indeciso/a",
|
||||
1 => "Indecisos/as",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Agree"] = array(
|
||||
0 => "Está de acuerdo",
|
||||
1 => "De acuerdo",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Disagree"] = array(
|
||||
0 => "No está de acuerdo",
|
||||
1 => "En desacuerdo",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Abstain"] = array(
|
||||
0 => "se abstiene",
|
||||
1 => "Se abstienen",
|
||||
);
|
||||
$a->strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado.";
|
||||
$a->strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación.";
|
||||
$a->strings["Import completed."] = "Importación completada.";
|
||||
@ -15,8 +182,6 @@ $a->strings["Addressbook"] = "Libreta de direcciones";
|
||||
$a->strings["Calendar"] = "Calendario";
|
||||
$a->strings["Schedule Inbox"] = "Programar bandeja de entrada";
|
||||
$a->strings["Schedule Outbox"] = "Programar bandeja de salida";
|
||||
$a->strings["Unknown"] = "Desconocido";
|
||||
$a->strings["Files"] = "Ficheros";
|
||||
$a->strings["Total"] = "Total";
|
||||
$a->strings["Shared"] = "Compartido";
|
||||
$a->strings["Create"] = "Crear";
|
||||
@ -26,7 +191,6 @@ $a->strings["Type"] = "Tipo";
|
||||
$a->strings["Size"] = "Tamaño";
|
||||
$a->strings["Last Modified"] = "Última modificación";
|
||||
$a->strings["Edit"] = "Editar";
|
||||
$a->strings["Delete"] = "Eliminar";
|
||||
$a->strings["You are using %1\$s of your available file storage."] = "Está usando %1\$s de su espacio disponible para ficheros.";
|
||||
$a->strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Está usando %1\$s de %2\$s que tiene a su disposición para ficheros. (%3\$s%)";
|
||||
$a->strings["WARNING:"] = "ATENCIÓN:";
|
||||
@ -257,7 +421,6 @@ $a->strings["public profile"] = "perfil público";
|
||||
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s cambió %2\$s a “%3\$s”";
|
||||
$a->strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s";
|
||||
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s cambiando %3\$s.";
|
||||
$a->strings["Connect"] = "Conectar";
|
||||
$a->strings["New window"] = "Nueva ventana";
|
||||
$a->strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte";
|
||||
$a->strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado";
|
||||
@ -278,7 +441,6 @@ $a->strings["Collection is empty."] = "La colección está vacía.";
|
||||
$a->strings["Collection: %s"] = "Colección: %s";
|
||||
$a->strings["Connection: %s"] = "Conexión: %s";
|
||||
$a->strings["Connection not found."] = "Conexión no encontrada";
|
||||
$a->strings["Public Timeline"] = "Cronología pública";
|
||||
$a->strings["view full size"] = "Ver en el tamaño original";
|
||||
$a->strings["\$Projectname Notification"] = "Notificación de \$Projectname";
|
||||
$a->strings["\$projectname"] = "\$projectname";
|
||||
@ -299,13 +461,11 @@ $a->strings["Image exceeds website size limit of %lu bytes"] = "La imagen excede
|
||||
$a->strings["Image file is empty."] = "El fichero de imagen está vacío. ";
|
||||
$a->strings["Unable to process image"] = "No ha sido posible procesar la imagen";
|
||||
$a->strings["Photo storage failed."] = "La foto no ha podido ser guardada.";
|
||||
$a->strings["Photo Albums"] = "Álbumes de fotos";
|
||||
$a->strings["Upload New Photos"] = "Subir nuevas fotos";
|
||||
$a->strings["created a new post"] = "ha creado una nueva entrada";
|
||||
$a->strings["commented on %s's post"] = "ha comentado la entrada de %s";
|
||||
$a->strings["New Page"] = "Nueva página";
|
||||
$a->strings["View"] = "Ver";
|
||||
$a->strings["Preview"] = "Previsualizar";
|
||||
$a->strings["Actions"] = "Acciones";
|
||||
$a->strings["Page Link"] = "Vínculo de la página";
|
||||
$a->strings["Title"] = "Título";
|
||||
@ -376,29 +536,24 @@ $a->strings["Starts:"] = "Comienza:";
|
||||
$a->strings["Finishes:"] = "Finaliza:";
|
||||
$a->strings["Location:"] = "Ubicación:";
|
||||
$a->strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario.";
|
||||
$a->strings["event"] = "evento";
|
||||
$a->strings["Not specified"] = "Sin especificar";
|
||||
$a->strings["Needs Action"] = "Necesita de una intervención";
|
||||
$a->strings["Completed"] = "Completado/a";
|
||||
$a->strings["In Process"] = "En proceso";
|
||||
$a->strings["Cancelled"] = "Cancelado/a";
|
||||
$a->strings["Site Admin"] = "Adminstrador del sitio";
|
||||
$a->strings["Bookmarks"] = "Marcadores";
|
||||
$a->strings["Address Book"] = "Libreta de direcciones";
|
||||
$a->strings["Login"] = "Iniciar sesión";
|
||||
$a->strings["Channel Manager"] = "Administración de canales";
|
||||
$a->strings["Grid"] = "Red";
|
||||
$a->strings["Settings"] = "Ajustes";
|
||||
$a->strings["Webpages"] = "Páginas web";
|
||||
$a->strings["Channel Home"] = "Mi canal";
|
||||
$a->strings["Profile"] = "Perfil";
|
||||
$a->strings["Photos"] = "Fotos";
|
||||
$a->strings["Events"] = "Eventos";
|
||||
$a->strings["Directory"] = "Directorio";
|
||||
$a->strings["Help"] = "Ayuda";
|
||||
$a->strings["Mail"] = "Correo";
|
||||
$a->strings["Mood"] = "Estado de ánimo";
|
||||
$a->strings["Poke"] = "Toques y otras cosas";
|
||||
$a->strings["Chat"] = "Chat";
|
||||
$a->strings["Search"] = "Buscar";
|
||||
$a->strings["Probe"] = "Probar";
|
||||
@ -412,21 +567,6 @@ $a->strings["Profile Photo"] = "Foto del perfil";
|
||||
$a->strings["Update"] = "Actualizar";
|
||||
$a->strings["Install"] = "Instalar";
|
||||
$a->strings["Purchase"] = "Comprar";
|
||||
$a->strings["Item was not found."] = "Elemento no encontrado.";
|
||||
$a->strings["No source file."] = "Ningún fichero de origen";
|
||||
$a->strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido.";
|
||||
$a->strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar";
|
||||
$a->strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d";
|
||||
$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos.";
|
||||
$a->strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado.";
|
||||
$a->strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado.";
|
||||
$a->strings["Path not available."] = "Ruta no disponible.";
|
||||
$a->strings["Empty pathname"] = "Ruta vacía";
|
||||
$a->strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero";
|
||||
$a->strings["Path not found."] = "Ruta no encontrada";
|
||||
$a->strings["mkdir failed."] = "mkdir ha fallado.";
|
||||
$a->strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado.";
|
||||
$a->strings["Empty path"] = "Ruta vacía";
|
||||
$a->strings["Logged out."] = "Desconectado/a.";
|
||||
$a->strings["Failed authentication"] = "Autenticación fallida.";
|
||||
$a->strings["Login failed."] = "El acceso ha fallado.";
|
||||
@ -466,8 +606,6 @@ $a->strings["Name:"] = "Nombre:";
|
||||
$a->strings["Photo:"] = "Foto:";
|
||||
$a->strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia.";
|
||||
$a->strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]";
|
||||
$a->strings["Private Message"] = "Mensaje Privado";
|
||||
$a->strings["Select"] = "Seleccionar";
|
||||
$a->strings["Save to Folder"] = "Guardar en carpeta";
|
||||
$a->strings["I will attend"] = "Participaré";
|
||||
$a->strings["I will not attend"] = "No participaré";
|
||||
@ -475,21 +613,10 @@ $a->strings["I might attend"] = "Quizá participe";
|
||||
$a->strings["I agree"] = "Estoy de acuerdo";
|
||||
$a->strings["I disagree"] = "No estoy de acuerdo";
|
||||
$a->strings["I abstain"] = "Me abstengo";
|
||||
$a->strings["View all"] = "Ver todo";
|
||||
$a->strings["__ctx:noun__ Like"] = array(
|
||||
0 => "Me gusta",
|
||||
1 => "Me gusta",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Dislike"] = array(
|
||||
0 => "No me gusta",
|
||||
1 => "No me gusta",
|
||||
);
|
||||
$a->strings["Add Star"] = "Destacar añadiendo una estrella";
|
||||
$a->strings["Remove Star"] = "Eliminar estrella";
|
||||
$a->strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida";
|
||||
$a->strings["starred"] = "preferidas";
|
||||
$a->strings["Message signature validated"] = "Firma de mensaje validada";
|
||||
$a->strings["Message signature incorrect"] = "Firma de mensaje incorrecta";
|
||||
$a->strings["Add Tag"] = "Añadir etiqueta";
|
||||
$a->strings["I like this (toggle)"] = "me gusta (cambiar)";
|
||||
$a->strings["like"] = "me gusta";
|
||||
@ -507,93 +634,20 @@ $a->strings["via"] = "mediante";
|
||||
$a->strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de Muro a Muro)";
|
||||
$a->strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de Muro a Muro)";
|
||||
$a->strings["Delivery Report"] = "Informe de transmisión";
|
||||
$a->strings["from %s"] = "desde %s";
|
||||
$a->strings["last edited: %s"] = "último cambio: %s";
|
||||
$a->strings["Expires: %s"] = "Caduca: %s";
|
||||
$a->strings["Save Bookmarks"] = "Guardar en Marcadores";
|
||||
$a->strings["Add to Calendar"] = "Añadir al calendario";
|
||||
$a->strings["Mark all seen"] = "Marcar todo como visto";
|
||||
$a->strings["__ctx:noun__ Likes"] = "Me gusta";
|
||||
$a->strings["__ctx:noun__ Dislikes"] = "No me gusta";
|
||||
$a->strings["Please wait"] = "Espere por favor";
|
||||
$a->strings["This is you"] = "Este es usted";
|
||||
$a->strings["Bold"] = "Negrita";
|
||||
$a->strings["Italic"] = "Itálico ";
|
||||
$a->strings["Underline"] = "Subrayar";
|
||||
$a->strings["Quote"] = "Citar";
|
||||
$a->strings["Code"] = "Código";
|
||||
$a->strings["Image"] = "Imagen";
|
||||
$a->strings["Insert Link"] = "Insertar enlace";
|
||||
$a->strings["Video"] = "Vídeo";
|
||||
$a->strings["Encrypt text"] = "Cifrar texto";
|
||||
$a->strings["prev"] = "anterior";
|
||||
$a->strings["first"] = "primera";
|
||||
$a->strings["last"] = "última";
|
||||
$a->strings["next"] = "próxima";
|
||||
$a->strings["older"] = "más antiguas";
|
||||
$a->strings["newer"] = "más recientes";
|
||||
$a->strings["No connections"] = "Sin conexiones";
|
||||
$a->strings["%d Connection"] = array(
|
||||
0 => "%d Conexión",
|
||||
1 => "%d Conexiones",
|
||||
);
|
||||
$a->strings["View Connections"] = "Ver conexiones";
|
||||
$a->strings["Save"] = "Guardar";
|
||||
$a->strings["poke"] = "un toque";
|
||||
$a->strings["poked"] = "ha recibido un toque";
|
||||
$a->strings["ping"] = "un \"ping\"";
|
||||
$a->strings["pinged"] = "avisado/a";
|
||||
$a->strings["prod"] = "una incitación";
|
||||
$a->strings["prodded"] = "ha recibido una incitación";
|
||||
$a->strings["slap"] = "una bofetada";
|
||||
$a->strings["slapped"] = "ha recibido una bofetada";
|
||||
$a->strings["finger"] = "un \"finger\"";
|
||||
$a->strings["fingered"] = "ha recibido un \"finger\"";
|
||||
$a->strings["rebuff"] = "un rechazo";
|
||||
$a->strings["rebuffed"] = "ha sido rechazado/a";
|
||||
$a->strings["happy"] = "feliz";
|
||||
$a->strings["sad"] = "triste";
|
||||
$a->strings["mellow"] = "amable";
|
||||
$a->strings["tired"] = "cansado/a";
|
||||
$a->strings["perky"] = "fresco/a";
|
||||
$a->strings["angry"] = "enfadado/a";
|
||||
$a->strings["stupified"] = "estupefacto/a";
|
||||
$a->strings["puzzled"] = "perplejo/a";
|
||||
$a->strings["interested"] = "interesado/a";
|
||||
$a->strings["bitter"] = "amargado/a";
|
||||
$a->strings["cheerful"] = "alegre";
|
||||
$a->strings["alive"] = "vivo/a";
|
||||
$a->strings["annoyed"] = "molesto/a";
|
||||
$a->strings["anxious"] = "ansioso/a";
|
||||
$a->strings["cranky"] = "de mal humor";
|
||||
$a->strings["disturbed"] = "perturbado/a";
|
||||
$a->strings["frustrated"] = "frustrado/a";
|
||||
$a->strings["depressed"] = "deprimido/a";
|
||||
$a->strings["motivated"] = "motivado/a";
|
||||
$a->strings["relaxed"] = "relajado/a";
|
||||
$a->strings["surprised"] = "sorprendido/a";
|
||||
$a->strings["May"] = "mayo";
|
||||
$a->strings["Unknown Attachment"] = "Adjunto no reconocido";
|
||||
$a->strings["Attachment"] = "Fichero adjunto";
|
||||
$a->strings["Size Unknown"] = "Tamaño desconocido";
|
||||
$a->strings["remove category"] = "eliminar categoría";
|
||||
$a->strings["remove from file"] = "eliminar del fichero";
|
||||
$a->strings["Click to open/close"] = "Pulsar para abrir/cerrar";
|
||||
$a->strings["Link to Source"] = "Enlazar con la entrada en su ubicación original";
|
||||
$a->strings["default"] = "por defecto";
|
||||
$a->strings["Page layout"] = "Formato de la página";
|
||||
$a->strings["You can create your own with the layouts tool"] = "Puede crear su propio formato gráfico con las herramientas de diseño";
|
||||
$a->strings["Page content type"] = "Tipo de contenido de página";
|
||||
$a->strings["Select an alternate language"] = "Seleccionar un idioma alternativo";
|
||||
$a->strings["photo"] = "foto";
|
||||
$a->strings["status"] = "el mensaje de estado";
|
||||
$a->strings["comment"] = "comentario";
|
||||
$a->strings["activity"] = "actividad";
|
||||
$a->strings["Design Tools"] = "Herramientas de diseño";
|
||||
$a->strings["Blocks"] = "Bloques";
|
||||
$a->strings["Menus"] = "Menús";
|
||||
$a->strings["Layouts"] = "Formato gráfico";
|
||||
$a->strings["Pages"] = "Páginas";
|
||||
$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["Public Timeline"] = "Cronología pública";
|
||||
$a->strings["Image/photo"] = "Imagen/foto";
|
||||
$a->strings["Encrypted content"] = "Contenido cifrado";
|
||||
$a->strings["Install %s element: "] = "Instalar el elemento %s:";
|
||||
@ -663,10 +717,6 @@ $a->strings["Edit collection"] = "Editar 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["add"] = "añadir";
|
||||
$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["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. ";
|
||||
@ -728,8 +778,6 @@ $a->strings["Love/Romance:"] = "Vida sentimental/amorosa:";
|
||||
$a->strings["Work/employment:"] = "Trabajo:";
|
||||
$a->strings["School/education:"] = "Estudios:";
|
||||
$a->strings["Like this thing"] = "Me gusta esto";
|
||||
$a->strings["Attachments:"] = "Ficheros adjuntos:";
|
||||
$a->strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:";
|
||||
$a->strings["Tags"] = "Etiquetas";
|
||||
$a->strings["Keywords"] = "Palabras clave";
|
||||
$a->strings["have"] = "tener";
|
||||
@ -738,134 +786,23 @@ $a->strings["want"] = "quiero";
|
||||
$a->strings["wants"] = "quiere";
|
||||
$a->strings["likes"] = "le gusta";
|
||||
$a->strings["dislikes"] = "no le gusta";
|
||||
$a->strings["channel"] = "canal";
|
||||
$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 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["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s";
|
||||
$a->strings["__ctx:title__ Likes"] = "Me gusta";
|
||||
$a->strings["__ctx:title__ Dislikes"] = "No me gusta";
|
||||
$a->strings["__ctx:title__ Agree"] = "De acuerdo";
|
||||
$a->strings["__ctx:title__ Disagree"] = "En desacuerdo";
|
||||
$a->strings["__ctx:title__ Abstain"] = "Abstención";
|
||||
$a->strings["__ctx:title__ Attending"] = "Participaré";
|
||||
$a->strings["__ctx:title__ Not attending"] = "No participaré";
|
||||
$a->strings["__ctx:title__ Might attend"] = "Quizá participe";
|
||||
$a->strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s";
|
||||
$a->strings["Categories:"] = "Categorías:";
|
||||
$a->strings["Filed under:"] = "Archivado bajo:";
|
||||
$a->strings["View in context"] = "Mostrar en su contexto";
|
||||
$a->strings["remove"] = "eliminar";
|
||||
$a->strings["Loading..."] = "Cargando...";
|
||||
$a->strings["Delete Selected Items"] = "Eliminar elementos seleccionados";
|
||||
$a->strings["View Source"] = "Ver la fuente original de la entrada";
|
||||
$a->strings["Follow Thread"] = "Seguir el hilo";
|
||||
$a->strings["View Status"] = "Estado actual";
|
||||
$a->strings["View Profile"] = "Ver el perfil";
|
||||
$a->strings["View Photos"] = "Ver fotos";
|
||||
$a->strings["Activity/Posts"] = "Actividad y entradas";
|
||||
$a->strings["Edit Connection"] = "Editar conexión";
|
||||
$a->strings["Send PM"] = "Enviar un mensaje privado";
|
||||
$a->strings["%s likes this."] = "a %s le gusta esto.";
|
||||
$a->strings["%s doesn't like this."] = "a %s no le gusta esto.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
||||
0 => "a <span %1\$s>%2\$d personas</span> le gusta esto.",
|
||||
1 => "a <span %1\$s>%2\$d personas</span> les gusta esto.",
|
||||
);
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
|
||||
0 => "a <span %1\$s>%2\$d personas</span> no les gusta esto.",
|
||||
1 => "a <span %1\$s>%2\$d personas</span> no les gusta esto.",
|
||||
);
|
||||
$a->strings["and"] = "y";
|
||||
$a->strings[", and %d other people"] = array(
|
||||
0 => ", y %d persona más",
|
||||
1 => ", y %d personas más",
|
||||
);
|
||||
$a->strings["%s like this."] = "a %s le gusta esto.";
|
||||
$a->strings["%s don't like this."] = "a %s no le gusta esto.";
|
||||
$a->strings["Visible to <strong>everybody</strong>"] = "Visible para <strong>cualquiera</strong>";
|
||||
$a->strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:";
|
||||
$a->strings["Please enter a video link/URL:"] = "Por favor, introduzca un enlace de vídeo:";
|
||||
$a->strings["Please enter an audio link/URL:"] = "Por favor, introduzca un enlace de audio:";
|
||||
$a->strings["Tag term:"] = "Término de la etiqueta:";
|
||||
$a->strings["Save to Folder:"] = "Guardar en carpeta:";
|
||||
$a->strings["Where are you right now?"] = "¿Donde está ahora?";
|
||||
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM";
|
||||
$a->strings["Share"] = "Compartir";
|
||||
$a->strings["Page link name"] = "Nombre de enlace de página";
|
||||
$a->strings["Post as"] = "Publicar como";
|
||||
$a->strings["Upload photo"] = "Subir foto";
|
||||
$a->strings["upload photo"] = "subir foto";
|
||||
$a->strings["Attach file"] = "Adjuntar fichero";
|
||||
$a->strings["attach file"] = "adjuntar fichero";
|
||||
$a->strings["Insert web link"] = "Insertar enlace web";
|
||||
$a->strings["web link"] = "enlace web";
|
||||
$a->strings["Insert video link"] = "Insertar enlace de vídeo";
|
||||
$a->strings["video link"] = "enlace de vídeo";
|
||||
$a->strings["Insert audio link"] = "Insertar enlace de audio";
|
||||
$a->strings["audio link"] = "enlace de audio";
|
||||
$a->strings["Set your location"] = "Configure su ubicación";
|
||||
$a->strings["set location"] = "establecer ubicación";
|
||||
$a->strings["Toggle voting"] = "Cambiar votación";
|
||||
$a->strings["Clear browser location"] = "Eliminar los datos de ubicación del navegador";
|
||||
$a->strings["clear location"] = "borrar los datos de ubicación";
|
||||
$a->strings["Title (optional)"] = "Título (opcional)";
|
||||
$a->strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)";
|
||||
$a->strings["Permission settings"] = "Configuración de permisos";
|
||||
$a->strings["permissions"] = "permisos";
|
||||
$a->strings["Public post"] = "Entrada pública";
|
||||
$a->strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com";
|
||||
$a->strings["Set expiration date"] = "Configurar fecha de caducidad";
|
||||
$a->strings["Set publish date"] = "Establecer la fecha de publicación";
|
||||
$a->strings["OK"] = "OK";
|
||||
$a->strings["Cancel"] = "Cancelar";
|
||||
$a->strings["Discover"] = "Descubrir";
|
||||
$a->strings["Imported public streams"] = "Flujos públicos importados";
|
||||
$a->strings["Commented Order"] = "Comentarios recientes";
|
||||
$a->strings["Sort by Comment Date"] = "Ordenar por fecha de comentario";
|
||||
$a->strings["Posted Order"] = "Publicaciones recientes";
|
||||
$a->strings["Sort by Post Date"] = "Ordenar por fecha de publicación";
|
||||
$a->strings["Personal"] = "Personales";
|
||||
$a->strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran";
|
||||
$a->strings["New"] = "Nuevas";
|
||||
$a->strings["Activity Stream - by date"] = "Flujo de actividad - por fecha";
|
||||
$a->strings["Starred"] = "Preferidas";
|
||||
$a->strings["Favourite Posts"] = "Publicaciones favoritas";
|
||||
$a->strings["Spam"] = "Correo basura";
|
||||
$a->strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura";
|
||||
$a->strings["Channel"] = "Canal";
|
||||
$a->strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones";
|
||||
$a->strings["About"] = "Sobre mí";
|
||||
$a->strings["Profile Details"] = "Detalles del perfil";
|
||||
$a->strings["Files and Storage"] = "Ficheros y repositorio";
|
||||
$a->strings["Chatrooms"] = "Salas de chat";
|
||||
$a->strings["Saved Bookmarks"] = "Marcadores guardados";
|
||||
$a->strings["Manage Webpages"] = "Administrar páginas web";
|
||||
$a->strings["__ctx:noun__ Attending"] = array(
|
||||
0 => "Participando",
|
||||
1 => "Participaré",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Not Attending"] = array(
|
||||
0 => "No participando",
|
||||
1 => "No participaré",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Undecided"] = array(
|
||||
0 => "Indeciso/a",
|
||||
1 => "Indecisos/as",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Agree"] = array(
|
||||
0 => "Está de acuerdo",
|
||||
1 => "De acuerdo",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Disagree"] = array(
|
||||
0 => "No está de acuerdo",
|
||||
1 => "En desacuerdo",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Abstain"] = array(
|
||||
0 => "se abstiene",
|
||||
1 => "Se abstienen",
|
||||
);
|
||||
$a->strings["Item was not found."] = "Elemento no encontrado.";
|
||||
$a->strings["No source file."] = "Ningún fichero de origen";
|
||||
$a->strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido.";
|
||||
$a->strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar";
|
||||
$a->strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d";
|
||||
$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos.";
|
||||
$a->strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado.";
|
||||
$a->strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado.";
|
||||
$a->strings["Path not available."] = "Ruta no disponible.";
|
||||
$a->strings["Empty pathname"] = "Ruta vacía";
|
||||
$a->strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero";
|
||||
$a->strings["Path not found."] = "Ruta no encontrada";
|
||||
$a->strings["mkdir failed."] = "mkdir ha fallado.";
|
||||
$a->strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado.";
|
||||
$a->strings["Empty path"] = "Ruta vacía";
|
||||
$a->strings["Attachments:"] = "Ficheros adjuntos:";
|
||||
$a->strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:";
|
||||
$a->strings["Apps"] = "Aplicaciones";
|
||||
$a->strings["System"] = "Sistema";
|
||||
$a->strings["Create Personal App"] = "Crear una aplicación personal";
|
||||
@ -878,6 +815,7 @@ $a->strings["Add New Connection"] = "Añadir nueva conexión";
|
||||
$a->strings["Enter the channel address"] = "Introducir la dirección del canal";
|
||||
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Ejemplo: paco@ejemplo.com, http://ejemplo.com/paco";
|
||||
$a->strings["Notes"] = "Notas";
|
||||
$a->strings["Save"] = "Guardar";
|
||||
$a->strings["Remove term"] = "Eliminar término";
|
||||
$a->strings["Archives"] = "Hemeroteca";
|
||||
$a->strings["Me"] = "Yo";
|
||||
@ -904,7 +842,6 @@ $a->strings["Received Messages"] = "Mensajes recibidos";
|
||||
$a->strings["Sent Messages"] = "Enviar mensajes";
|
||||
$a->strings["No messages."] = "Sin mensajes.";
|
||||
$a->strings["Delete conversation"] = "Eliminar conversación";
|
||||
$a->strings["D, d M Y - g:i A"] = "D d M Y - G:i";
|
||||
$a->strings["Chat Rooms"] = "Salas de chat";
|
||||
$a->strings["Bookmarked Chatrooms"] = "Salas de chat preferidas";
|
||||
$a->strings["Suggested Chatrooms"] = "Salas de chat sugeridas";
|
||||
@ -931,6 +868,68 @@ $a->strings["Logs"] = "Informes";
|
||||
$a->strings["Admin"] = "Administrador";
|
||||
$a->strings["Plugin Features"] = "Ajustes de la extensión";
|
||||
$a->strings["User registrations waiting for confirmation"] = "Registros de usuarios pendientes de confirmación";
|
||||
$a->strings["prev"] = "anterior";
|
||||
$a->strings["first"] = "primera";
|
||||
$a->strings["last"] = "última";
|
||||
$a->strings["next"] = "próxima";
|
||||
$a->strings["older"] = "más antiguas";
|
||||
$a->strings["newer"] = "más recientes";
|
||||
$a->strings["No connections"] = "Sin conexiones";
|
||||
$a->strings["%d Connection"] = array(
|
||||
0 => "%d Conexión",
|
||||
1 => "%d Conexiones",
|
||||
);
|
||||
$a->strings["View Connections"] = "Ver conexiones";
|
||||
$a->strings["poke"] = "un toque";
|
||||
$a->strings["ping"] = "un \"ping\"";
|
||||
$a->strings["pinged"] = "avisado/a";
|
||||
$a->strings["prod"] = "una incitación";
|
||||
$a->strings["prodded"] = "ha recibido una incitación";
|
||||
$a->strings["slap"] = "una bofetada";
|
||||
$a->strings["slapped"] = "ha recibido una bofetada";
|
||||
$a->strings["finger"] = "un \"finger\"";
|
||||
$a->strings["fingered"] = "ha recibido un \"finger\"";
|
||||
$a->strings["rebuff"] = "un rechazo";
|
||||
$a->strings["rebuffed"] = "ha sido rechazado/a";
|
||||
$a->strings["happy"] = "feliz";
|
||||
$a->strings["sad"] = "triste";
|
||||
$a->strings["mellow"] = "amable";
|
||||
$a->strings["tired"] = "cansado/a";
|
||||
$a->strings["perky"] = "fresco/a";
|
||||
$a->strings["angry"] = "enfadado/a";
|
||||
$a->strings["stupified"] = "estupefacto/a";
|
||||
$a->strings["puzzled"] = "perplejo/a";
|
||||
$a->strings["interested"] = "interesado/a";
|
||||
$a->strings["bitter"] = "amargado/a";
|
||||
$a->strings["cheerful"] = "alegre";
|
||||
$a->strings["alive"] = "vivo/a";
|
||||
$a->strings["annoyed"] = "molesto/a";
|
||||
$a->strings["anxious"] = "ansioso/a";
|
||||
$a->strings["cranky"] = "de mal humor";
|
||||
$a->strings["disturbed"] = "perturbado/a";
|
||||
$a->strings["frustrated"] = "frustrado/a";
|
||||
$a->strings["depressed"] = "deprimido/a";
|
||||
$a->strings["motivated"] = "motivado/a";
|
||||
$a->strings["relaxed"] = "relajado/a";
|
||||
$a->strings["surprised"] = "sorprendido/a";
|
||||
$a->strings["May"] = "mayo";
|
||||
$a->strings["Unknown Attachment"] = "Adjunto no reconocido";
|
||||
$a->strings["unknown"] = "desconocido";
|
||||
$a->strings["remove category"] = "eliminar categoría";
|
||||
$a->strings["remove from file"] = "eliminar del fichero";
|
||||
$a->strings["Click to open/close"] = "Pulsar para abrir/cerrar";
|
||||
$a->strings["Link to Source"] = "Enlazar con la entrada en su ubicación original";
|
||||
$a->strings["default"] = "por defecto";
|
||||
$a->strings["Page layout"] = "Formato de la página";
|
||||
$a->strings["You can create your own with the layouts tool"] = "Puede crear su propio formato gráfico con las herramientas de diseño";
|
||||
$a->strings["Page content type"] = "Tipo de contenido de página";
|
||||
$a->strings["Select an alternate language"] = "Seleccionar un idioma alternativo";
|
||||
$a->strings["activity"] = "actividad";
|
||||
$a->strings["Design Tools"] = "Herramientas de diseño";
|
||||
$a->strings["Blocks"] = "Bloques";
|
||||
$a->strings["Menus"] = "Menús";
|
||||
$a->strings["Layouts"] = "Formato gráfico";
|
||||
$a->strings["Pages"] = "Páginas";
|
||||
$a->strings["Logout"] = "Finalizar sesión";
|
||||
$a->strings["End this session"] = "Finalizar esta sesión";
|
||||
$a->strings["Home"] = "Inicio";
|
||||
@ -1149,7 +1148,7 @@ $a->strings["Accept connection to allow communication"] = "Aceptar la conexión
|
||||
$a->strings["Set Affinity"] = "Ajustar la afinidad";
|
||||
$a->strings["Set Profile"] = "Ajustar el perfil";
|
||||
$a->strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil";
|
||||
$a->strings["none"] = "nada";
|
||||
$a->strings["none"] = "-";
|
||||
$a->strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente";
|
||||
$a->strings["This connection's primary address is"] = "La dirección primaria de esta conexión es";
|
||||
$a->strings["Available locations:"] = "Ubicaciones disponibles:";
|
||||
@ -1159,7 +1158,7 @@ $a->strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoraci
|
||||
$a->strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración";
|
||||
$a->strings["Custom Filter"] = "Filtro personalizado";
|
||||
$a->strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto";
|
||||
$a->strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una por cada línea: palabras, #etiquetas, /patrones/ o lengua=xx. Dejar en blanco para importarlo todo";
|
||||
$a->strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo";
|
||||
$a->strings["Do not import posts with this text"] = "No importar entradas que contengan este texto";
|
||||
$a->strings["This information is public!"] = "¡Esta información es pública!";
|
||||
$a->strings["Connection Pending Approval"] = "Conexión pendiente de aprobación";
|
||||
@ -1226,27 +1225,6 @@ $a->strings["Website:"] = "Sitio web:";
|
||||
$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)";
|
||||
$a->strings["Rating (this information is public)"] = "Valoración (esta información es pública)";
|
||||
$a->strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)";
|
||||
$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["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada.";
|
||||
$a->strings["Album not found."] = "Álbum no encontrado.";
|
||||
$a->strings["Delete Album"] = "Borrar álbum";
|
||||
@ -1381,6 +1359,8 @@ $a->strings["Disable discovery tab"] = "Desactivar la pestaña \"Descubrir\"";
|
||||
$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Quitar la pestaña para ver contenido público extraído de las fuentes elegidas por este sitio.";
|
||||
$a->strings["login on Homepage"] = "acceso a la página personal";
|
||||
$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido.";
|
||||
$a->strings["Directory Server URL"] = "URL del servidor de directorio";
|
||||
$a->strings["Default directory server"] = "Servidor de directorio predeterminado";
|
||||
$a->strings["Proxy user"] = "Usuario del proxy";
|
||||
$a->strings["Proxy URL"] = "Dirección del proxy";
|
||||
$a->strings["Network timeout"] = "Tiempo de espera de la red";
|
||||
@ -1550,6 +1530,7 @@ $a->strings["Layout not found."] = "Formato no encontrado";
|
||||
$a->strings["Module Name:"] = "Nombre del módulo:";
|
||||
$a->strings["Layout Help"] = "Ayuda para el diseño de la página";
|
||||
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %2\$s de %3\$s";
|
||||
$a->strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha dejado de seguir %3\$s de %2\$s";
|
||||
$a->strings["No valid account found."] = "No se ha encontrado una cuenta válida.";
|
||||
$a->strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico.";
|
||||
$a->strings["Site Member (%s)"] = "Usuario del sitio (%s)";
|
||||
@ -1760,12 +1741,33 @@ $a->strings["%d message sent."] = array(
|
||||
$a->strings["You have no more invitations available"] = "No tiene más invitaciones disponibles";
|
||||
$a->strings["Send invitations"] = "Enviar invitaciones";
|
||||
$a->strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónica, 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["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["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["3. Click [Connect]"] = "3. Pulse [conectar]";
|
||||
$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["[Embedded content - reload page to view]"] = "[Contenido incorporado - recargue la página para poder verlo]";
|
||||
$a->strings["Source of Item"] = "Origen del elemento";
|
||||
$a->strings["Name is required"] = "El nombre es obligatorio";
|
||||
@ -1901,9 +1903,11 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ca
|
||||
$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Activar modo experto (en <a href=\"settings/features\">Ajustes > Características Adicionales</a>) para ajustar.";
|
||||
$a->strings["Miscellaneous Settings"] = "Ajustes diversos";
|
||||
$a->strings["Default photo upload folder"] = "Carpeta por defecto de las fotos subidas";
|
||||
$a->strings["%Y - current year, %m - current month"] = "%Y - año en curso, %m - mes actual";
|
||||
$a->strings["Default file upload folder"] = "Carpeta por defecto de los archivos subidos";
|
||||
$a->strings["Personal menu to display in your channel pages"] = "Menú personal que debe mostrarse en las páginas de su canal";
|
||||
$a->strings["Remove this channel."] = "Eliminar este canal.";
|
||||
$a->strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname";
|
||||
$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["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos.";
|
||||
@ -1969,12 +1973,19 @@ $a->strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]";
|
||||
$a->strings["Location not found."] = "Dirección no encontrada.";
|
||||
$a->strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección.";
|
||||
$a->strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal.";
|
||||
$a->strings["Syncing locations"] = "Sincronización de ubicaciones";
|
||||
$a->strings["No locations found."] = "No encontrada ninguna dirección.";
|
||||
$a->strings["Manage Channel Locations"] = "Gestionar las direcciones del canal";
|
||||
$a->strings["Location (address)"] = "Ubicación (dirección)";
|
||||
$a->strings["Primary Location"] = "Dirección primaria";
|
||||
$a->strings["Drop location"] = "Eliminar dirección";
|
||||
$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["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["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["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname";
|
||||
$a->strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname ";
|
||||
$a->strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación";
|
||||
$a->strings["Could not connect to database."] = "No se ha podido conectar a la base de datos.";
|
||||
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS.";
|
||||
|
3106
view/nl/hmessages.po
3106
view/nl/hmessages.po
File diff suppressed because it is too large
Load Diff
@ -5,6 +5,173 @@ function string_plural_select_nl($n){
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["photo"] = "foto";
|
||||
$a->strings["event"] = "gebeurtenis";
|
||||
$a->strings["channel"] = "kanaal";
|
||||
$a->strings["status"] = "bericht";
|
||||
$a->strings["comment"] = "reactie";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk";
|
||||
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk";
|
||||
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden";
|
||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten";
|
||||
$a->strings["poked"] = "aangestoten";
|
||||
$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s";
|
||||
$a->strings["__ctx:title__ Likes"] = "vinden dit leuk";
|
||||
$a->strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk";
|
||||
$a->strings["__ctx:title__ Agree"] = "eens";
|
||||
$a->strings["__ctx:title__ Disagree"] = "oneens";
|
||||
$a->strings["__ctx:title__ Abstain"] = "onthoudingen";
|
||||
$a->strings["__ctx:title__ Attending"] = "aanwezig";
|
||||
$a->strings["__ctx:title__ Not attending"] = "niet aanwezig";
|
||||
$a->strings["__ctx:title__ Might attend"] = "mogelijk aanwezig";
|
||||
$a->strings["Select"] = "Kies";
|
||||
$a->strings["Delete"] = "Verwijderen";
|
||||
$a->strings["Private Message"] = "Privébericht";
|
||||
$a->strings["Message signature validated"] = "Berichtkenmerk gevalideerd";
|
||||
$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist";
|
||||
$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
|
||||
$a->strings["Categories:"] = "Categorieën:";
|
||||
$a->strings["Filed under:"] = "Bewaard onder:";
|
||||
$a->strings["from %s"] = "van %s";
|
||||
$a->strings["last edited: %s"] = "laatst bewerkt: %s";
|
||||
$a->strings["Expires: %s"] = "Verloopt: %s";
|
||||
$a->strings["View in context"] = "In context bekijken";
|
||||
$a->strings["Please wait"] = "Even wachten";
|
||||
$a->strings["remove"] = "verwijderen";
|
||||
$a->strings["Loading..."] = "Aan het laden...";
|
||||
$a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items";
|
||||
$a->strings["View Source"] = "Bron weergeven";
|
||||
$a->strings["Follow Thread"] = "Conversatie volgen";
|
||||
$a->strings["Stop Following"] = "Bericht niet meer volgen";
|
||||
$a->strings["View Status"] = "Status weergeven";
|
||||
$a->strings["View Profile"] = "Profiel weergeven";
|
||||
$a->strings["View Photos"] = "Foto's weergeven";
|
||||
$a->strings["Activity/Posts"] = "Kanaal-activiteit";
|
||||
$a->strings["Connect"] = "Verbinden";
|
||||
$a->strings["Edit Connection"] = "Connectie bewerken";
|
||||
$a->strings["Send PM"] = "Privébericht verzenden";
|
||||
$a->strings["Poke"] = "Aanstoten";
|
||||
$a->strings["Unknown"] = "Onbekend";
|
||||
$a->strings["%s likes this."] = "%s vindt dit leuk.";
|
||||
$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
||||
0 => "<span %1\$s>%2\$d persoon</span> vindt dit leuk.",
|
||||
1 => "<span %1\$s>%2\$d personen</span> vinden dit leuk.",
|
||||
);
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
|
||||
0 => "<span %1\$s>%2\$d persoon</span> vindt dit niet leuk.",
|
||||
1 => "<span %1\$s>%2\$d personen</span> vinden dit niet leuk.",
|
||||
);
|
||||
$a->strings["and"] = "en";
|
||||
$a->strings[", and %d other people"] = array(
|
||||
0 => ", en %d ander persoon",
|
||||
1 => ", en %d andere personen",
|
||||
);
|
||||
$a->strings["%s like this."] = "%s vinden dit leuk.";
|
||||
$a->strings["%s don't like this."] = "%s vinden dit niet leuk.";
|
||||
$a->strings["Visible to <strong>everybody</strong>"] = "Voor <strong>iedereen</strong> zichtbaar";
|
||||
$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
|
||||
$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
|
||||
$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
|
||||
$a->strings["Tag term:"] = "Tag:";
|
||||
$a->strings["Save to Folder:"] = "Bewaar in map: ";
|
||||
$a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?";
|
||||
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM";
|
||||
$a->strings["Preview"] = "Voorvertoning";
|
||||
$a->strings["Share"] = "Delen";
|
||||
$a->strings["Page link name"] = "Linknaam pagina";
|
||||
$a->strings["Post as"] = "Bericht plaatsen als";
|
||||
$a->strings["Bold"] = "Vet";
|
||||
$a->strings["Italic"] = "Cursief";
|
||||
$a->strings["Underline"] = "Onderstrepen";
|
||||
$a->strings["Quote"] = "Citeren";
|
||||
$a->strings["Code"] = "Broncode";
|
||||
$a->strings["Upload photo"] = "Foto uploaden";
|
||||
$a->strings["upload photo"] = "foto uploaden";
|
||||
$a->strings["Attach file"] = "Bestand toevoegen";
|
||||
$a->strings["attach file"] = "bestand toevoegen";
|
||||
$a->strings["Insert web link"] = "Weblink invoegen";
|
||||
$a->strings["web link"] = "Weblink";
|
||||
$a->strings["Insert video link"] = "Videolink invoegen";
|
||||
$a->strings["video link"] = "videolink";
|
||||
$a->strings["Insert audio link"] = "Audiolink invoegen";
|
||||
$a->strings["audio link"] = "audiolink";
|
||||
$a->strings["Set your location"] = "Locatie instellen";
|
||||
$a->strings["set location"] = "locatie instellen";
|
||||
$a->strings["Toggle voting"] = "Peiling in- of uitschakelen";
|
||||
$a->strings["Clear browser location"] = "Locatie van webbrowser wissen";
|
||||
$a->strings["clear location"] = "locatie wissen";
|
||||
$a->strings["Title (optional)"] = "Titel (optioneel)";
|
||||
$a->strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)";
|
||||
$a->strings["Permission settings"] = "Permissies";
|
||||
$a->strings["permissions"] = "permissies";
|
||||
$a->strings["Public post"] = "Openbaar bericht";
|
||||
$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be";
|
||||
$a->strings["Set expiration date"] = "Verloopdatum instellen";
|
||||
$a->strings["Set publish date"] = "Publicatiedatum instellen";
|
||||
$a->strings["Encrypt text"] = "Tekst versleutelen";
|
||||
$a->strings["OK"] = "OK";
|
||||
$a->strings["Cancel"] = "Annuleren";
|
||||
$a->strings["Discover"] = "Ontdekken";
|
||||
$a->strings["Imported public streams"] = "Openbare streams importeren";
|
||||
$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
|
||||
$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
|
||||
$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
|
||||
$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
|
||||
$a->strings["Personal"] = "Persoonlijk";
|
||||
$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent";
|
||||
$a->strings["New"] = "Nieuw";
|
||||
$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
|
||||
$a->strings["Starred"] = "Met ster";
|
||||
$a->strings["Favourite Posts"] = "Favoriete berichten";
|
||||
$a->strings["Spam"] = "Spam";
|
||||
$a->strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM";
|
||||
$a->strings["Channel"] = "Kanaal";
|
||||
$a->strings["Status Messages and Posts"] = "Berichten in dit kanaal";
|
||||
$a->strings["About"] = "Over";
|
||||
$a->strings["Profile Details"] = "Profiel";
|
||||
$a->strings["Photos"] = "Foto's";
|
||||
$a->strings["Photo Albums"] = "Fotoalbums";
|
||||
$a->strings["Files"] = "Bestanden";
|
||||
$a->strings["Files and Storage"] = "Bestanden en opslagruimte";
|
||||
$a->strings["Chatrooms"] = "Chatkanalen";
|
||||
$a->strings["Bookmarks"] = "Bladwijzers";
|
||||
$a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers";
|
||||
$a->strings["Webpages"] = "Webpagina's";
|
||||
$a->strings["Manage Webpages"] = "Webpagina's beheren";
|
||||
$a->strings["View all"] = "Toon alles";
|
||||
$a->strings["__ctx:noun__ Like"] = array(
|
||||
0 => "vindt dit leuk",
|
||||
1 => "vinden dit leuk",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Dislike"] = array(
|
||||
0 => "vindt dit niet leuk",
|
||||
1 => "vinden dit niet leuk",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Attending"] = array(
|
||||
0 => "aanwezig",
|
||||
1 => "aanwezig",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Not Attending"] = array(
|
||||
0 => "niet aanwezig",
|
||||
1 => "niet aanwezig",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Undecided"] = array(
|
||||
0 => "nog niet beslist",
|
||||
1 => "nog niet beslist",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Agree"] = array(
|
||||
0 => "eens",
|
||||
1 => "eens",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Disagree"] = array(
|
||||
0 => "oneens",
|
||||
1 => "oneens",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Abstain"] = array(
|
||||
0 => "onthouding",
|
||||
1 => "onthoudingen",
|
||||
);
|
||||
$a->strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden.";
|
||||
$a->strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt.";
|
||||
$a->strings["Import completed."] = "Import voltooid.";
|
||||
@ -15,8 +182,6 @@ $a->strings["Addressbook"] = "Adresboek";
|
||||
$a->strings["Calendar"] = "Agenda";
|
||||
$a->strings["Schedule Inbox"] = "Planning-postvak IN";
|
||||
$a->strings["Schedule Outbox"] = "Planning-postvak UIT";
|
||||
$a->strings["Unknown"] = "Onbekend";
|
||||
$a->strings["Files"] = "Bestanden";
|
||||
$a->strings["Total"] = "Totaal";
|
||||
$a->strings["Shared"] = "Gedeeld";
|
||||
$a->strings["Create"] = "Aanmaken";
|
||||
@ -26,7 +191,6 @@ $a->strings["Type"] = "Type";
|
||||
$a->strings["Size"] = "Grootte";
|
||||
$a->strings["Last Modified"] = "Laatst gewijzigd";
|
||||
$a->strings["Edit"] = "Bewerken";
|
||||
$a->strings["Delete"] = "Verwijderen";
|
||||
$a->strings["You are using %1\$s of your available file storage."] = "Je gebruikt %1\$s van de beschikbare bestandsopslag.";
|
||||
$a->strings["You are using %1\$s of %2\$s available file storage. (%3\$s%)"] = "Je gebruikt %1\$s van totaal %2\$s beschikbare bestandsopslag. (%3\$s%)";
|
||||
$a->strings["WARNING:"] = "WAARSCHUWING:";
|
||||
@ -257,7 +421,6 @@ $a->strings["public profile"] = "openbaar profiel";
|
||||
$a->strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”";
|
||||
$a->strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s";
|
||||
$a->strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd.";
|
||||
$a->strings["Connect"] = "Verbinden";
|
||||
$a->strings["New window"] = "Nieuw venster";
|
||||
$a->strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab";
|
||||
$a->strings["User '%s' deleted"] = "Account '%s' verwijderd";
|
||||
@ -278,7 +441,6 @@ $a->strings["Collection is empty."] = "Collectie is leeg";
|
||||
$a->strings["Collection: %s"] = "Collectie: %s";
|
||||
$a->strings["Connection: %s"] = "Connectie: %s";
|
||||
$a->strings["Connection not found."] = "Connectie niet gevonden.";
|
||||
$a->strings["Public Timeline"] = "Openbare tijdlijn";
|
||||
$a->strings["view full size"] = "volledige grootte tonen";
|
||||
$a->strings["\$Projectname Notification"] = "\$Projectname-notificatie";
|
||||
$a->strings["\$projectname"] = "\$projectname";
|
||||
@ -299,13 +461,11 @@ $a->strings["Image exceeds website size limit of %lu bytes"] = "Afbeelding is gr
|
||||
$a->strings["Image file is empty."] = "Afbeeldingsbestand is leeg";
|
||||
$a->strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden";
|
||||
$a->strings["Photo storage failed."] = "Foto kan niet worden opgeslagen";
|
||||
$a->strings["Photo Albums"] = "Fotoalbums";
|
||||
$a->strings["Upload New Photos"] = "Nieuwe foto's uploaden";
|
||||
$a->strings["created a new post"] = "maakte een nieuw bericht aan";
|
||||
$a->strings["commented on %s's post"] = "gaf een reactie op een bericht van %s";
|
||||
$a->strings["New Page"] = "Nieuwe pagina";
|
||||
$a->strings["View"] = "Weergeven";
|
||||
$a->strings["Preview"] = "Voorvertoning";
|
||||
$a->strings["Actions"] = "Acties";
|
||||
$a->strings["Page Link"] = "Paginalink";
|
||||
$a->strings["Title"] = "Titel";
|
||||
@ -376,29 +536,24 @@ $a->strings["Starts:"] = "Start:";
|
||||
$a->strings["Finishes:"] = "Einde:";
|
||||
$a->strings["Location:"] = "Plaats:";
|
||||
$a->strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd.";
|
||||
$a->strings["event"] = "gebeurtenis";
|
||||
$a->strings["Not specified"] = "Niet aangegeven";
|
||||
$a->strings["Needs Action"] = "Actie vereist";
|
||||
$a->strings["Completed"] = "Voltooid";
|
||||
$a->strings["In Process"] = "In behandeling";
|
||||
$a->strings["Cancelled"] = "Geannuleerd";
|
||||
$a->strings["Site Admin"] = "Hubbeheerder";
|
||||
$a->strings["Bookmarks"] = "Bladwijzers";
|
||||
$a->strings["Address Book"] = "Connecties";
|
||||
$a->strings["Login"] = "Inloggen";
|
||||
$a->strings["Channel Manager"] = "Kanaalbeheer";
|
||||
$a->strings["Grid"] = "Grid";
|
||||
$a->strings["Settings"] = "Instellingen";
|
||||
$a->strings["Webpages"] = "Webpagina's";
|
||||
$a->strings["Channel Home"] = "Tijdlijn kanaal";
|
||||
$a->strings["Profile"] = "Profiel";
|
||||
$a->strings["Photos"] = "Foto's";
|
||||
$a->strings["Events"] = "Agenda";
|
||||
$a->strings["Directory"] = "Kanalengids";
|
||||
$a->strings["Help"] = "Hulp";
|
||||
$a->strings["Mail"] = "Privéberichten";
|
||||
$a->strings["Mood"] = "Stemming";
|
||||
$a->strings["Poke"] = "Aanstoten";
|
||||
$a->strings["Chat"] = "Chatten";
|
||||
$a->strings["Search"] = "Zoeken";
|
||||
$a->strings["Probe"] = "Onderzoeken";
|
||||
@ -412,21 +567,6 @@ $a->strings["Profile Photo"] = "Profielfoto";
|
||||
$a->strings["Update"] = "Bijwerken";
|
||||
$a->strings["Install"] = "Installeren";
|
||||
$a->strings["Purchase"] = "Aanschaffen";
|
||||
$a->strings["Item was not found."] = "Item niet gevonden";
|
||||
$a->strings["No source file."] = "Geen bronbestand.";
|
||||
$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden";
|
||||
$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden";
|
||||
$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d";
|
||||
$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt.";
|
||||
$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken.";
|
||||
$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt.";
|
||||
$a->strings["Path not available."] = "Pad niet beschikbaar.";
|
||||
$a->strings["Empty pathname"] = "Padnaam leeg";
|
||||
$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad";
|
||||
$a->strings["Path not found."] = "Pad niet gevonden";
|
||||
$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt.";
|
||||
$a->strings["database storage failed."] = "opslag in database mislukt.";
|
||||
$a->strings["Empty path"] = "Ontbrekend bestandspad";
|
||||
$a->strings["Logged out."] = "Uitgelogd.";
|
||||
$a->strings["Failed authentication"] = "Mislukte authenticatie";
|
||||
$a->strings["Login failed."] = "Inloggen mislukt.";
|
||||
@ -466,8 +606,6 @@ $a->strings["Name:"] = "Naam:";
|
||||
$a->strings["Photo:"] = "Foto:";
|
||||
$a->strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen.";
|
||||
$a->strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]";
|
||||
$a->strings["Private Message"] = "Privébericht";
|
||||
$a->strings["Select"] = "Kies";
|
||||
$a->strings["Save to Folder"] = "In map opslaan";
|
||||
$a->strings["I will attend"] = "Aanwezig";
|
||||
$a->strings["I will not attend"] = "Niet aanwezig";
|
||||
@ -475,21 +613,10 @@ $a->strings["I might attend"] = "Mogelijk aanwezig";
|
||||
$a->strings["I agree"] = "Eens";
|
||||
$a->strings["I disagree"] = "Oneens";
|
||||
$a->strings["I abstain"] = "Onthouding";
|
||||
$a->strings["View all"] = "Toon alles";
|
||||
$a->strings["__ctx:noun__ Like"] = array(
|
||||
0 => "vindt dit leuk",
|
||||
1 => "vinden dit leuk",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Dislike"] = array(
|
||||
0 => "vindt dit niet leuk",
|
||||
1 => "vinden dit niet leuk",
|
||||
);
|
||||
$a->strings["Add Star"] = "Ster toevoegen";
|
||||
$a->strings["Remove Star"] = "Ster verwijderen";
|
||||
$a->strings["Toggle Star Status"] = "Ster toevoegen of verwijderen";
|
||||
$a->strings["starred"] = "met ster";
|
||||
$a->strings["Message signature validated"] = "Berichtkenmerk gevalideerd";
|
||||
$a->strings["Message signature incorrect"] = "Berichtkenmerk onjuist";
|
||||
$a->strings["Add Tag"] = "Tag toevoegen";
|
||||
$a->strings["I like this (toggle)"] = "Vind ik leuk";
|
||||
$a->strings["like"] = "vind dit leuk";
|
||||
@ -507,93 +634,20 @@ $a->strings["via"] = "via";
|
||||
$a->strings["Wall-to-Wall"] = "Kanaal-naar-kanaal";
|
||||
$a->strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal";
|
||||
$a->strings["Delivery Report"] = "Afleveringsrapport";
|
||||
$a->strings["from %s"] = "van %s";
|
||||
$a->strings["last edited: %s"] = "laatst bewerkt: %s";
|
||||
$a->strings["Expires: %s"] = "Verloopt: %s";
|
||||
$a->strings["Save Bookmarks"] = "Bladwijzers opslaan";
|
||||
$a->strings["Add to Calendar"] = "Aan agenda toevoegen";
|
||||
$a->strings["Mark all seen"] = "Markeer alles als bekeken";
|
||||
$a->strings["__ctx:noun__ Likes"] = "vinden dit leuk";
|
||||
$a->strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk";
|
||||
$a->strings["Please wait"] = "Even wachten";
|
||||
$a->strings["This is you"] = "Dit ben jij";
|
||||
$a->strings["Bold"] = "Vet";
|
||||
$a->strings["Italic"] = "Cursief";
|
||||
$a->strings["Underline"] = "Onderstrepen";
|
||||
$a->strings["Quote"] = "Citeren";
|
||||
$a->strings["Code"] = "Broncode";
|
||||
$a->strings["Image"] = "Afbeelding";
|
||||
$a->strings["Insert Link"] = "Link invoegen";
|
||||
$a->strings["Video"] = "Video";
|
||||
$a->strings["Encrypt text"] = "Tekst versleutelen";
|
||||
$a->strings["prev"] = "vorige";
|
||||
$a->strings["first"] = "eerste";
|
||||
$a->strings["last"] = "laatste";
|
||||
$a->strings["next"] = "volgende";
|
||||
$a->strings["older"] = "ouder";
|
||||
$a->strings["newer"] = "nieuwer";
|
||||
$a->strings["No connections"] = "Geen connecties";
|
||||
$a->strings["%d Connection"] = array(
|
||||
0 => "%d connectie",
|
||||
1 => "%d connecties",
|
||||
);
|
||||
$a->strings["View Connections"] = "Connecties weergeven";
|
||||
$a->strings["Save"] = "Opslaan";
|
||||
$a->strings["poke"] = "aanstoten";
|
||||
$a->strings["poked"] = "aangestoten";
|
||||
$a->strings["ping"] = "ping";
|
||||
$a->strings["pinged"] = "gepingd";
|
||||
$a->strings["prod"] = "por";
|
||||
$a->strings["prodded"] = "gepord";
|
||||
$a->strings["slap"] = "slaan";
|
||||
$a->strings["slapped"] = "sloeg";
|
||||
$a->strings["finger"] = "finger";
|
||||
$a->strings["fingered"] = "gefingerd";
|
||||
$a->strings["rebuff"] = "afpoeieren";
|
||||
$a->strings["rebuffed"] = "afgepoeierd";
|
||||
$a->strings["happy"] = "gelukkig";
|
||||
$a->strings["sad"] = "bedroefd";
|
||||
$a->strings["mellow"] = "mellow";
|
||||
$a->strings["tired"] = "moe";
|
||||
$a->strings["perky"] = "parmantig";
|
||||
$a->strings["angry"] = "boos";
|
||||
$a->strings["stupified"] = "beteuterd";
|
||||
$a->strings["puzzled"] = "verward";
|
||||
$a->strings["interested"] = "geïnteresseerd";
|
||||
$a->strings["bitter"] = "verbitterd";
|
||||
$a->strings["cheerful"] = "vrolijk";
|
||||
$a->strings["alive"] = "levendig";
|
||||
$a->strings["annoyed"] = "geërgerd";
|
||||
$a->strings["anxious"] = "bezorgd";
|
||||
$a->strings["cranky"] = "humeurig";
|
||||
$a->strings["disturbed"] = "verontrust";
|
||||
$a->strings["frustrated"] = "gefrustreerd ";
|
||||
$a->strings["depressed"] = "gedeprimeerd";
|
||||
$a->strings["motivated"] = "gemotiveerd";
|
||||
$a->strings["relaxed"] = "ontspannen";
|
||||
$a->strings["surprised"] = "verrast";
|
||||
$a->strings["May"] = "mei";
|
||||
$a->strings["Unknown Attachment"] = "Onbekende bijlage";
|
||||
$a->strings["Attachment"] = "Bijlage";
|
||||
$a->strings["Size Unknown"] = "Onbekende grootte";
|
||||
$a->strings["remove category"] = "categorie verwijderen";
|
||||
$a->strings["remove from file"] = "uit map verwijderen";
|
||||
$a->strings["Click to open/close"] = "Klik om te openen of te sluiten";
|
||||
$a->strings["Link to Source"] = "Originele locatie";
|
||||
$a->strings["default"] = "standaard";
|
||||
$a->strings["Page layout"] = "Pagina-lay-out";
|
||||
$a->strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs";
|
||||
$a->strings["Page content type"] = "Opmaaktype pagina";
|
||||
$a->strings["Select an alternate language"] = "Kies een andere taal";
|
||||
$a->strings["photo"] = "foto";
|
||||
$a->strings["status"] = "bericht";
|
||||
$a->strings["comment"] = "reactie";
|
||||
$a->strings["activity"] = "activiteit";
|
||||
$a->strings["Design Tools"] = "Ontwerp-hulpmiddelen";
|
||||
$a->strings["Blocks"] = "Blokken";
|
||||
$a->strings["Menus"] = "Menu's";
|
||||
$a->strings["Layouts"] = "Lay-outs";
|
||||
$a->strings["Pages"] = "Pagina's";
|
||||
$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["Public Timeline"] = "Openbare tijdlijn";
|
||||
$a->strings["Image/photo"] = "Afbeelding/foto";
|
||||
$a->strings["Encrypted content"] = "Versleutelde inhoud";
|
||||
$a->strings["Install %s element: "] = "Installeer %s-element: ";
|
||||
@ -663,10 +717,6 @@ $a->strings["Edit collection"] = "Collectie bewerken";
|
||||
$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["add"] = "toevoegen";
|
||||
$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["No recipient provided."] = "Geen ontvanger opgegeven.";
|
||||
$a->strings["[no subject]"] = "[geen onderwerp]";
|
||||
$a->strings["Unable to determine sender."] = "Afzender kan niet bepaald worden.";
|
||||
@ -728,8 +778,6 @@ $a->strings["Love/Romance:"] = "Liefde/romantiek:";
|
||||
$a->strings["Work/employment:"] = "Werk/beroep:";
|
||||
$a->strings["School/education:"] = "School/opleiding:";
|
||||
$a->strings["Like this thing"] = "Vind dit ding leuk";
|
||||
$a->strings["Attachments:"] = "Bijlagen:";
|
||||
$a->strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:";
|
||||
$a->strings["Tags"] = "Tags";
|
||||
$a->strings["Keywords"] = "Trefwoorden";
|
||||
$a->strings["have"] = "heb";
|
||||
@ -738,134 +786,23 @@ $a->strings["want"] = "wil";
|
||||
$a->strings["wants"] = "wil";
|
||||
$a->strings["likes"] = "vindt dit leuk";
|
||||
$a->strings["dislikes"] = "vindt dit niet leuk";
|
||||
$a->strings["channel"] = "kanaal";
|
||||
$a->strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk";
|
||||
$a->strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk";
|
||||
$a->strings["%1\$s is now connected with %2\$s"] = "%1\$s is nu met %2\$s verbonden";
|
||||
$a->strings["%1\$s poked %2\$s"] = "%1\$s heeft %2\$s aangestoten";
|
||||
$a->strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s";
|
||||
$a->strings["__ctx:title__ Likes"] = "vinden dit leuk";
|
||||
$a->strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk";
|
||||
$a->strings["__ctx:title__ Agree"] = "eens";
|
||||
$a->strings["__ctx:title__ Disagree"] = "oneens";
|
||||
$a->strings["__ctx:title__ Abstain"] = "onthoudingen";
|
||||
$a->strings["__ctx:title__ Attending"] = "aanwezig";
|
||||
$a->strings["__ctx:title__ Not attending"] = "niet aanwezig";
|
||||
$a->strings["__ctx:title__ Might attend"] = "mogelijk aanwezig";
|
||||
$a->strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s";
|
||||
$a->strings["Categories:"] = "Categorieën:";
|
||||
$a->strings["Filed under:"] = "Bewaard onder:";
|
||||
$a->strings["View in context"] = "In context bekijken";
|
||||
$a->strings["remove"] = "verwijderen";
|
||||
$a->strings["Loading..."] = "Aan het laden...";
|
||||
$a->strings["Delete Selected Items"] = "Verwijder de geselecteerde items";
|
||||
$a->strings["View Source"] = "Bron weergeven";
|
||||
$a->strings["Follow Thread"] = "Conversatie volgen";
|
||||
$a->strings["View Status"] = "Status weergeven";
|
||||
$a->strings["View Profile"] = "Profiel weergeven";
|
||||
$a->strings["View Photos"] = "Foto's weergeven";
|
||||
$a->strings["Activity/Posts"] = "Kanaal-activiteit";
|
||||
$a->strings["Edit Connection"] = "Connectie bewerken";
|
||||
$a->strings["Send PM"] = "Privébericht verzenden";
|
||||
$a->strings["%s likes this."] = "%s vindt dit leuk.";
|
||||
$a->strings["%s doesn't like this."] = "%s vindt dit niet leuk.";
|
||||
$a->strings["<span %1\$s>%2\$d people</span> like this."] = array(
|
||||
0 => "<span %1\$s>%2\$d persoon</span> vindt dit leuk.",
|
||||
1 => "<span %1\$s>%2\$d personen</span> vinden dit leuk.",
|
||||
);
|
||||
$a->strings["<span %1\$s>%2\$d people</span> don't like this."] = array(
|
||||
0 => "<span %1\$s>%2\$d persoon</span> vindt dit niet leuk.",
|
||||
1 => "<span %1\$s>%2\$d personen</span> vinden dit niet leuk.",
|
||||
);
|
||||
$a->strings["and"] = "en";
|
||||
$a->strings[", and %d other people"] = array(
|
||||
0 => ", en %d ander persoon",
|
||||
1 => ", en %d andere personen",
|
||||
);
|
||||
$a->strings["%s like this."] = "%s vinden dit leuk.";
|
||||
$a->strings["%s don't like this."] = "%s vinden dit niet leuk.";
|
||||
$a->strings["Visible to <strong>everybody</strong>"] = "Voor <strong>iedereen</strong> zichtbaar";
|
||||
$a->strings["Please enter a link URL:"] = "Vul een internetadres/URL in:";
|
||||
$a->strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:";
|
||||
$a->strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:";
|
||||
$a->strings["Tag term:"] = "Tag:";
|
||||
$a->strings["Save to Folder:"] = "Bewaar in map: ";
|
||||
$a->strings["Where are you right now?"] = "Waar bevind je je op dit moment?";
|
||||
$a->strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM";
|
||||
$a->strings["Share"] = "Delen";
|
||||
$a->strings["Page link name"] = "Linknaam pagina";
|
||||
$a->strings["Post as"] = "Bericht plaatsen als";
|
||||
$a->strings["Upload photo"] = "Foto uploaden";
|
||||
$a->strings["upload photo"] = "foto uploaden";
|
||||
$a->strings["Attach file"] = "Bestand toevoegen";
|
||||
$a->strings["attach file"] = "bestand toevoegen";
|
||||
$a->strings["Insert web link"] = "Weblink invoegen";
|
||||
$a->strings["web link"] = "Weblink";
|
||||
$a->strings["Insert video link"] = "Videolink invoegen";
|
||||
$a->strings["video link"] = "videolink";
|
||||
$a->strings["Insert audio link"] = "Audiolink invoegen";
|
||||
$a->strings["audio link"] = "audiolink";
|
||||
$a->strings["Set your location"] = "Locatie instellen";
|
||||
$a->strings["set location"] = "locatie instellen";
|
||||
$a->strings["Toggle voting"] = "Peiling in- of uitschakelen";
|
||||
$a->strings["Clear browser location"] = "Locatie van webbrowser wissen";
|
||||
$a->strings["clear location"] = "locatie wissen";
|
||||
$a->strings["Title (optional)"] = "Titel (optioneel)";
|
||||
$a->strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)";
|
||||
$a->strings["Permission settings"] = "Permissies";
|
||||
$a->strings["permissions"] = "permissies";
|
||||
$a->strings["Public post"] = "Openbaar bericht";
|
||||
$a->strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be";
|
||||
$a->strings["Set expiration date"] = "Verloopdatum instellen";
|
||||
$a->strings["Set publish date"] = "Publicatiedatum instellen";
|
||||
$a->strings["OK"] = "OK";
|
||||
$a->strings["Cancel"] = "Annuleren";
|
||||
$a->strings["Discover"] = "Ontdekken";
|
||||
$a->strings["Imported public streams"] = "Openbare streams importeren";
|
||||
$a->strings["Commented Order"] = "Nieuwe reacties bovenaan";
|
||||
$a->strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan";
|
||||
$a->strings["Posted Order"] = "Nieuwe berichten bovenaan";
|
||||
$a->strings["Sort by Post Date"] = "Nieuwe berichten bovenaan";
|
||||
$a->strings["Personal"] = "Persoonlijk";
|
||||
$a->strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent";
|
||||
$a->strings["New"] = "Nieuw";
|
||||
$a->strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum";
|
||||
$a->strings["Starred"] = "Met ster";
|
||||
$a->strings["Favourite Posts"] = "Favoriete berichten";
|
||||
$a->strings["Spam"] = "Spam";
|
||||
$a->strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM";
|
||||
$a->strings["Channel"] = "Kanaal";
|
||||
$a->strings["Status Messages and Posts"] = "Berichten in dit kanaal";
|
||||
$a->strings["About"] = "Over";
|
||||
$a->strings["Profile Details"] = "Profiel";
|
||||
$a->strings["Files and Storage"] = "Bestanden en opslagruimte";
|
||||
$a->strings["Chatrooms"] = "Chatkanalen";
|
||||
$a->strings["Saved Bookmarks"] = "Opgeslagen bladwijzers";
|
||||
$a->strings["Manage Webpages"] = "Webpagina's beheren";
|
||||
$a->strings["__ctx:noun__ Attending"] = array(
|
||||
0 => "aanwezig",
|
||||
1 => "aanwezig",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Not Attending"] = array(
|
||||
0 => "niet aanwezig",
|
||||
1 => "niet aanwezig",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Undecided"] = array(
|
||||
0 => "nog niet beslist",
|
||||
1 => "nog niet beslist",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Agree"] = array(
|
||||
0 => "eens",
|
||||
1 => "eens",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Disagree"] = array(
|
||||
0 => "oneens",
|
||||
1 => "oneens",
|
||||
);
|
||||
$a->strings["__ctx:noun__ Abstain"] = array(
|
||||
0 => "onthouding",
|
||||
1 => "onthoudingen",
|
||||
);
|
||||
$a->strings["Item was not found."] = "Item niet gevonden";
|
||||
$a->strings["No source file."] = "Geen bronbestand.";
|
||||
$a->strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden";
|
||||
$a->strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden";
|
||||
$a->strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d";
|
||||
$a->strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt.";
|
||||
$a->strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken.";
|
||||
$a->strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt.";
|
||||
$a->strings["Path not available."] = "Pad niet beschikbaar.";
|
||||
$a->strings["Empty pathname"] = "Padnaam leeg";
|
||||
$a->strings["duplicate filename or path"] = "dubbele bestandsnaam of pad";
|
||||
$a->strings["Path not found."] = "Pad niet gevonden";
|
||||
$a->strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt.";
|
||||
$a->strings["database storage failed."] = "opslag in database mislukt.";
|
||||
$a->strings["Empty path"] = "Ontbrekend bestandspad";
|
||||
$a->strings["Attachments:"] = "Bijlagen:";
|
||||
$a->strings["\$Projectname event notification:"] = "Notificatie \$Projectname-gebeurtenis:";
|
||||
$a->strings["Apps"] = "Apps";
|
||||
$a->strings["System"] = "Systeem";
|
||||
$a->strings["Create Personal App"] = "Persoonlijke app maken";
|
||||
@ -878,6 +815,7 @@ $a->strings["Add New Connection"] = "Nieuwe connectie toevoegen";
|
||||
$a->strings["Enter the channel address"] = "Vul het adres van het nieuwe kanaal in";
|
||||
$a->strings["Example: bob@example.com, http://example.com/barbara"] = "Voorbeeld: bob@example.com, http://example.com/barbara";
|
||||
$a->strings["Notes"] = "Aantekeningen";
|
||||
$a->strings["Save"] = "Opslaan";
|
||||
$a->strings["Remove term"] = "Verwijder zoekterm";
|
||||
$a->strings["Archives"] = "Archieven";
|
||||
$a->strings["Me"] = "Ik";
|
||||
@ -904,7 +842,6 @@ $a->strings["Received Messages"] = "Ontvangen berichten";
|
||||
$a->strings["Sent Messages"] = "Verzonden berichten";
|
||||
$a->strings["No messages."] = "Geen berichten";
|
||||
$a->strings["Delete conversation"] = "Verwijder conversatie";
|
||||
$a->strings["D, d M Y - g:i A"] = "D, j M Y - G:i";
|
||||
$a->strings["Chat Rooms"] = "Chatkanalen";
|
||||
$a->strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen";
|
||||
$a->strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen";
|
||||
@ -931,6 +868,68 @@ $a->strings["Logs"] = "Logboeken";
|
||||
$a->strings["Admin"] = "Beheer";
|
||||
$a->strings["Plugin Features"] = "Plug-in-opties";
|
||||
$a->strings["User registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten";
|
||||
$a->strings["prev"] = "vorige";
|
||||
$a->strings["first"] = "eerste";
|
||||
$a->strings["last"] = "laatste";
|
||||
$a->strings["next"] = "volgende";
|
||||
$a->strings["older"] = "ouder";
|
||||
$a->strings["newer"] = "nieuwer";
|
||||
$a->strings["No connections"] = "Geen connecties";
|
||||
$a->strings["%d Connection"] = array(
|
||||
0 => "%d connectie",
|
||||
1 => "%d connecties",
|
||||
);
|
||||
$a->strings["View Connections"] = "Connecties weergeven";
|
||||
$a->strings["poke"] = "aanstoten";
|
||||
$a->strings["ping"] = "ping";
|
||||
$a->strings["pinged"] = "gepingd";
|
||||
$a->strings["prod"] = "por";
|
||||
$a->strings["prodded"] = "gepord";
|
||||
$a->strings["slap"] = "slaan";
|
||||
$a->strings["slapped"] = "sloeg";
|
||||
$a->strings["finger"] = "finger";
|
||||
$a->strings["fingered"] = "gefingerd";
|
||||
$a->strings["rebuff"] = "afpoeieren";
|
||||
$a->strings["rebuffed"] = "afgepoeierd";
|
||||
$a->strings["happy"] = "gelukkig";
|
||||
$a->strings["sad"] = "bedroefd";
|
||||
$a->strings["mellow"] = "mellow";
|
||||
$a->strings["tired"] = "moe";
|
||||
$a->strings["perky"] = "parmantig";
|
||||
$a->strings["angry"] = "boos";
|
||||
$a->strings["stupified"] = "beteuterd";
|
||||
$a->strings["puzzled"] = "verward";
|
||||
$a->strings["interested"] = "geïnteresseerd";
|
||||
$a->strings["bitter"] = "verbitterd";
|
||||
$a->strings["cheerful"] = "vrolijk";
|
||||
$a->strings["alive"] = "levendig";
|
||||
$a->strings["annoyed"] = "geërgerd";
|
||||
$a->strings["anxious"] = "bezorgd";
|
||||
$a->strings["cranky"] = "humeurig";
|
||||
$a->strings["disturbed"] = "verontrust";
|
||||
$a->strings["frustrated"] = "gefrustreerd ";
|
||||
$a->strings["depressed"] = "gedeprimeerd";
|
||||
$a->strings["motivated"] = "gemotiveerd";
|
||||
$a->strings["relaxed"] = "ontspannen";
|
||||
$a->strings["surprised"] = "verrast";
|
||||
$a->strings["May"] = "mei";
|
||||
$a->strings["Unknown Attachment"] = "Onbekende bijlage";
|
||||
$a->strings["unknown"] = "onbekend";
|
||||
$a->strings["remove category"] = "categorie verwijderen";
|
||||
$a->strings["remove from file"] = "uit map verwijderen";
|
||||
$a->strings["Click to open/close"] = "Klik om te openen of te sluiten";
|
||||
$a->strings["Link to Source"] = "Originele locatie";
|
||||
$a->strings["default"] = "standaard";
|
||||
$a->strings["Page layout"] = "Pagina-lay-out";
|
||||
$a->strings["You can create your own with the layouts tool"] = "Je kan jouw eigen lay-out ontwerpen onder lay-outs";
|
||||
$a->strings["Page content type"] = "Opmaaktype pagina";
|
||||
$a->strings["Select an alternate language"] = "Kies een andere taal";
|
||||
$a->strings["activity"] = "activiteit";
|
||||
$a->strings["Design Tools"] = "Ontwerp-hulpmiddelen";
|
||||
$a->strings["Blocks"] = "Blokken";
|
||||
$a->strings["Menus"] = "Menu's";
|
||||
$a->strings["Layouts"] = "Lay-outs";
|
||||
$a->strings["Pages"] = "Pagina's";
|
||||
$a->strings["Logout"] = "Uitloggen";
|
||||
$a->strings["End this session"] = "Beëindig deze sessie";
|
||||
$a->strings["Home"] = "Home";
|
||||
@ -1226,27 +1225,6 @@ $a->strings["Website:"] = "Website:";
|
||||
$a->strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)";
|
||||
$a->strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)";
|
||||
$a->strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)";
|
||||
$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["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen.";
|
||||
$a->strings["Album not found."] = "Album niet gevonden.";
|
||||
$a->strings["Delete Album"] = "Verwijder album";
|
||||
@ -1381,6 +1359,8 @@ $a->strings["Disable discovery tab"] = "Ontdekkingstab";
|
||||
$a->strings["Remove the tab in the network view with public content pulled from sources chosen for this site."] = "Verwijder de tab in de matrix-weergave waarin zich een selectie aan openbare berichten bevindt, die automatisch voor deze hub zijn uitgekozen.";
|
||||
$a->strings["login on Homepage"] = "Inlogformulier op de homepagina";
|
||||
$a->strings["Present a login box to visitors on the home page if no other content has been configured."] = "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. ";
|
||||
$a->strings["Directory Server URL"] = "Server-URL voor de kanalengids";
|
||||
$a->strings["Default directory server"] = "Standaardserver voor de kanalengids";
|
||||
$a->strings["Proxy user"] = "Gebruikersnaam proxy";
|
||||
$a->strings["Proxy URL"] = "URL proxy";
|
||||
$a->strings["Network timeout"] = "Netwerktimeout";
|
||||
@ -1550,6 +1530,7 @@ $a->strings["Layout not found."] = "Lay-out niet gevonden.";
|
||||
$a->strings["Module Name:"] = "Modulenaam:";
|
||||
$a->strings["Layout Help"] = "Lay-out-hulp";
|
||||
$a->strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s";
|
||||
$a->strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s niet meer";
|
||||
$a->strings["No valid account found."] = "Geen geldige account gevonden.";
|
||||
$a->strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail.";
|
||||
$a->strings["Site Member (%s)"] = "Lid van hub (%s)";
|
||||
@ -1760,12 +1741,33 @@ $a->strings["%d message sent."] = array(
|
||||
$a->strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar";
|
||||
$a->strings["Send invitations"] = "Uitnodigingen verzenden";
|
||||
$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["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["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["3. Click [Connect]"] = "3. Klik op [+ Verbinden]";
|
||||
$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["[Embedded content - reload page to view]"] = "[Ingesloten inhoud - ververs pagina om te bekijken] ";
|
||||
$a->strings["Source of Item"] = "Bron van item";
|
||||
$a->strings["Name is required"] = "Naam is vereist";
|
||||
@ -1901,9 +1903,11 @@ $a->strings["Change the behaviour of this account for special situations"] = "Ve
|
||||
$a->strings["Please enable expert mode (in <a href=\"settings/features\">Settings > Additional features</a>) to adjust!"] = "Schakel de expertmodus in (in <a href=\"settings/features\">Instellingen > Extra functies</a>) om aan te kunnen passen!";
|
||||
$a->strings["Miscellaneous Settings"] = "Diverse instellingen";
|
||||
$a->strings["Default photo upload folder"] = "Standaard fotoalbum voor uploads";
|
||||
$a->strings["%Y - current year, %m - current month"] = "%Y - dit jaar, %m - deze maand";
|
||||
$a->strings["Default file upload folder"] = "Standaard bestandsmap voor uploads";
|
||||
$a->strings["Personal menu to display in your channel pages"] = "Persoonlijk menu om op je kanaalpagina's weer te geven";
|
||||
$a->strings["Remove this channel."] = "Verwijder dit kanaal.";
|
||||
$a->strings["Firefox Share \$Projectname provider"] = "\$Projectname-service voor Firefox Share";
|
||||
$a->strings["Xchan Lookup"] = "Xchan opzoeken";
|
||||
$a->strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:";
|
||||
$a->strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt.";
|
||||
@ -1969,12 +1973,19 @@ $a->strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]";
|
||||
$a->strings["Location not found."] = "Locatie niet gevonden.";
|
||||
$a->strings["Location lookup failed."] = "Opzoeken locatie mislukt";
|
||||
$a->strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen.";
|
||||
$a->strings["Syncing locations"] = "Locaties synchronizeren";
|
||||
$a->strings["No locations found."] = "Geen locaties gevonden.";
|
||||
$a->strings["Manage Channel Locations"] = "Kanaallocaties beheren";
|
||||
$a->strings["Location (address)"] = "Locatie (adres)";
|
||||
$a->strings["Primary Location"] = "Primaire locatie";
|
||||
$a->strings["Drop location"] = "Locatie verwijderen";
|
||||
$a->strings["Sync now"] = "Nu synchroniseren";
|
||||
$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["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["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["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met ";
|
||||
$a->strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox";
|
||||
$a->strings["\$Projectname Server - Setup"] = "\$Projectname Server - Setup";
|
||||
$a->strings["Could not connect to database."] = "Could not connect to database.";
|
||||
$a->strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue.";
|
||||
|
Reference in New Issue
Block a user