From: Tom Hughes
<% @ways.each do |way| %>
-
<% end %>
@@ -102,7 +102,7 @@
<% @relations.each do |relation| %>
-
<% end %>
@@ -114,7 +114,7 @@
<% @nodes.each do |node| %>
-
<% end %>
diff --git a/app/views/browse/note.html.erb b/app/views/browse/note.html.erb
index f94fda12a..d44e0bb3d 100644
--- a/app/views/browse/note.html.erb
+++ b/app/views/browse/note.html.erb
@@ -35,7 +35,7 @@
<% if @note_comments.length > 1 %>
diff --git a/app/views/layouts/_head.html.erb b/app/views/layouts/_head.html.erb index 19fd31343..9fdb2637f 100644 --- a/app/views/layouts/_head.html.erb +++ b/app/views/layouts/_head.html.erb @@ -5,7 +5,7 @@ <%= javascript_include_tag "es5" unless browser.es5? %> <%= javascript_include_tag "es6" unless browser.es6? %> <%= javascript_include_tag "application" %> - <%= javascript_include_tag "i18n/" + I18n.locale.to_s %> + <%= javascript_include_tag "i18n/#{I18n.locale}" %> <%= stylesheet_link_tag "screen-#{dir}", :media => "screen" %> <%= stylesheet_link_tag "print-#{dir}", :media => "print" %> <%= stylesheet_link_tag "leaflet-all", :media => "screen, print" %> @@ -14,5 +14,5 @@ <%= yield :auto_discovery_link_tag %> <%= csrf_meta_tag %> <%= csp_meta_tag %> -
<%= t ".requests" %>
<%= t ".support_notice" %>
diff --git a/app/views/traces/_trace.html.erb b/app/views/traces/_trace.html.erb index ff15836b7..c2f4183eb 100644 --- a/app/views/traces/_trace.html.erb +++ b/app/views/traces/_trace.html.erb @@ -21,7 +21,7 @@ when "public", "identifiable" then "success" else "danger" end %> - <%= t("." + trace.visibility) %> + <%= t(".#{trace.visibility}") %><% if @owner %> - <%= raw t ".commented.your_changeset", :commenter => link_to_user(@commenter), :time => @time %> + <%= t ".commented.your_changeset_html", :commenter => link_to_user(@commenter), :time => @time %> <% else %> - <%= raw t ".commented.commented_changeset", :commenter => link_to_user(@commenter), :time => @time, :changeset_author => @changeset_author %> + <%= t ".commented.commented_changeset_html", :commenter => link_to_user(@commenter), :time => @time, :changeset_author => @changeset_author %> <% end %> <% if @changeset_comment %> - <%= raw t ".commented.partial_changeset_with_comment", :changeset_comment => tag.em(@changeset_comment) %> + <%= t ".commented.partial_changeset_with_comment_html", :changeset_comment => tag.em(@changeset_comment) %> <% else %> <%= t ".commented.partial_changeset_without_comment" %> <% end %> @@ -19,11 +19,11 @@ <% end %>
- <%= raw t ".details", :url => link_to(@changeset_url, @changeset_url) %> + <%= t ".details_html", :url => link_to(@changeset_url, @changeset_url) %>
<% content_for :footer do %>- <%= raw t ".unsubscribe", :url => link_to(@changeset_url, @changeset_url, :style => "color: #222") %> + <%= t ".unsubscribe_html", :url => link_to(@changeset_url, @changeset_url, :style => "color: #222") %>
<% end %> diff --git a/app/views/user_mailer/diary_comment_notification.html.erb b/app/views/user_mailer/diary_comment_notification.html.erb index abf92509f..b4efae83b 100644 --- a/app/views/user_mailer/diary_comment_notification.html.erb +++ b/app/views/user_mailer/diary_comment_notification.html.erb @@ -2,7 +2,7 @@ <%= t ".hi", :to_user => @to_user %>- <%= raw t ".header", :from_user => link_to_user(@from_user), :subject => tag.em(@title) %> + <%= t ".header_html", :from_user => link_to_user(@from_user), :subject => tag.em(@title) %>
<%= message_body do %> @@ -10,9 +10,9 @@ <% end %> <% content_for :footer do %> -<%= raw t ".footer", - :readurl => link_to(@readurl, @readurl) + tag(:br), - :commenturl => link_to(@commenturl, @commenturl) + tag(:br), - :replyurl => link_to(@replyurl, @replyurl) %> +
<%= t ".footer_html", + :readurl => link_to(@readurl, @readurl) + tag(:br), + :commenturl => link_to(@commenturl, @commenturl) + tag(:br), + :replyurl => link_to(@replyurl, @replyurl) %>
<% end %> diff --git a/app/views/user_mailer/diary_comment_notification.text.erb b/app/views/user_mailer/diary_comment_notification.text.erb index b86c303ae..cbf9ddaa0 100644 --- a/app/views/user_mailer/diary_comment_notification.text.erb +++ b/app/views/user_mailer/diary_comment_notification.text.erb @@ -3,7 +3,7 @@ <%= t '.header', :from_user => @from_user, :subject => @title %> == -<%= raw @text.to_text %> +<%= @text.to_text %> == <%= t '.footer', :readurl => @readurl, :commenturl => @commenturl, :replyurl => @replyurl %> diff --git a/app/views/user_mailer/email_confirm.html.erb b/app/views/user_mailer/email_confirm.html.erb index 3848b192b..d972e9f64 100644 --- a/app/views/user_mailer/email_confirm.html.erb +++ b/app/views/user_mailer/email_confirm.html.erb @@ -1,7 +1,7 @@ -<%= t "user_mailer.email_confirm_html.greeting" %>
+<%= t ".greeting" %>
-<%= t "user_mailer.email_confirm_html.hopefully_you", :server_url => Settings.server_url, :new_address => @address %>
+<%= t ".hopefully_you", :server_url => Settings.server_url, :new_address => @address %>
-<%= t "user_mailer.email_confirm_html.click_the_link" %>
+<%= t ".click_the_link" %>
diff --git a/app/views/user_mailer/email_confirm.text.erb b/app/views/user_mailer/email_confirm.text.erb index e4fff2b6d..66bd55307 100644 --- a/app/views/user_mailer/email_confirm.text.erb +++ b/app/views/user_mailer/email_confirm.text.erb @@ -1,7 +1,7 @@ -<%= t 'user_mailer.email_confirm_plain.greeting' %> +<%= t '.greeting' %> -<%= word_wrap(t 'user_mailer.email_confirm_plain.hopefully_you', :server_url => Settings.server_url, :new_address => @address) %> +<%= word_wrap(t '.hopefully_you', :server_url => Settings.server_url, :new_address => @address) %> -<%= t 'user_mailer.email_confirm_plain.click_the_link' %> +<%= t '.click_the_link' %> <%= @url %> diff --git a/app/views/user_mailer/friendship_notification.html.erb b/app/views/user_mailer/friendship_notification.html.erb index 24587a6e3..0f2353150 100644 --- a/app/views/user_mailer/friendship_notification.html.erb +++ b/app/views/user_mailer/friendship_notification.html.erb @@ -1,9 +1,9 @@<%= t ".had_added_you", :user => @friendship.befriender.display_name %>
<%= message_body do %> -<%= raw t ".see_their_profile", :userurl => link_to(@viewurl, @viewurl) %>
+<%= t ".see_their_profile_html", :userurl => link_to(@viewurl, @viewurl) %>
<% unless @friendship.befriendee.is_friends_with?(@friendship.befriender) -%> -<%= raw t ".befriend_them", :befriendurl => link_to(@friendurl, @friendurl) %>
+<%= t ".befriend_them_html", :befriendurl => link_to(@friendurl, @friendurl) %>
<% end -%> <% end %> diff --git a/app/views/user_mailer/gpx_failure.html.erb b/app/views/user_mailer/gpx_failure.html.erb index a398661a6..d2059af38 100644 --- a/app/views/user_mailer/gpx_failure.html.erb +++ b/app/views/user_mailer/gpx_failure.html.erb @@ -1,8 +1,8 @@ -<%= t "user_mailer.gpx_notification.greeting" %>
+<%= t ".hi", :to_user => @to_user %>
<%= render :partial => "gpx_description" %> - <%= t "user_mailer.gpx_notification.failure.failed_to_import" %> + <%= t ".failed_to_import" %>
@@ -10,7 +10,5 @@
- <%= t "user_mailer.gpx_notification.failure.more_info_1" %> - <%= t "user_mailer.gpx_notification.failure.more_info_2" %> - <%= t "user_mailer.gpx_notification.failure.import_failures_url" %> + <%= t ".more_info_html", :url => link_to(t(".import_failures_url"), t(".import_failures_url")) %>
diff --git a/app/views/user_mailer/gpx_success.html.erb b/app/views/user_mailer/gpx_success.html.erb index 78af1166c..73afa4295 100644 --- a/app/views/user_mailer/gpx_success.html.erb +++ b/app/views/user_mailer/gpx_success.html.erb @@ -1,7 +1,7 @@ -<%= t "user_mailer.gpx_notification.greeting" %>
+<%= t ".hi", :to_user => @to_user %>
<%= render :partial => "gpx_description" %> - <%= t("user_mailer.gpx_notification.success.loaded_successfully", + <%= t(".loaded_successfully", :trace_points => @trace_points, :possible_points => @possible_points, :count => @possible_points) %>
diff --git a/app/views/user_mailer/lost_password.html.erb b/app/views/user_mailer/lost_password.html.erb index 7e61b6c49..f22480bb3 100644 --- a/app/views/user_mailer/lost_password.html.erb +++ b/app/views/user_mailer/lost_password.html.erb @@ -1,7 +1,7 @@ -<%= t "user_mailer.lost_password_html.greeting" %>
+<%= t ".greeting" %>
-<%= t "user_mailer.lost_password_html.hopefully_you" %>
+<%= t ".hopefully_you" %>
-<%= t "user_mailer.lost_password_html.click_the_link" %>
+<%= t ".click_the_link" %>
diff --git a/app/views/user_mailer/lost_password.text.erb b/app/views/user_mailer/lost_password.text.erb index 778fa6540..560ec1329 100644 --- a/app/views/user_mailer/lost_password.text.erb +++ b/app/views/user_mailer/lost_password.text.erb @@ -1,7 +1,7 @@ -<%= t 'user_mailer.lost_password_plain.greeting' %> +<%= t '.greeting' %> -<%= word_wrap(t 'user_mailer.lost_password_plain.hopefully_you') %> +<%= word_wrap(t '.hopefully_you') %> -<%= t 'user_mailer.lost_password_plain.click_the_link' %> +<%= t '.click_the_link' %> <%= @url %> diff --git a/app/views/user_mailer/message_notification.html.erb b/app/views/user_mailer/message_notification.html.erb index 74d10f599..4095b5e59 100644 --- a/app/views/user_mailer/message_notification.html.erb +++ b/app/views/user_mailer/message_notification.html.erb @@ -2,9 +2,9 @@ <%= t ".hi", :to_user => @to_user %>- <%= raw t ".header", - :from_user => link_to_user(@from_user), - :subject => tag.em(@title) %> + <%= t ".header_html", + :from_user => link_to_user(@from_user), + :subject => tag.em(@title) %>
<%= message_body do %> diff --git a/app/views/user_mailer/message_notification.text.erb b/app/views/user_mailer/message_notification.text.erb index b3a74bb88..1d75e7e2a 100644 --- a/app/views/user_mailer/message_notification.text.erb +++ b/app/views/user_mailer/message_notification.text.erb @@ -1,9 +1,9 @@ -<%= raw t '.hi', :to_user => @to_user %> +<%= t '.hi', :to_user => @to_user %> -<%= raw t '.header', :from_user => @from_user, :subject => @title %> +<%= t '.header', :from_user => @from_user, :subject => @title %> == -<%= raw @text.to_text %> +<%= @text.to_text %> == -<%= word_wrap(t '.footer_html', :readurl => @readurl, :replyurl => @replyurl) %> +<%= word_wrap(t '.footer', :readurl => @readurl, :replyurl => @replyurl) %> diff --git a/app/views/user_mailer/note_comment_notification.html.erb b/app/views/user_mailer/note_comment_notification.html.erb index 3a8286028..8d779bc48 100644 --- a/app/views/user_mailer/note_comment_notification.html.erb +++ b/app/views/user_mailer/note_comment_notification.html.erb @@ -1,9 +1,9 @@<%= t ".greeting" %>
<% if @owner %> -<%= raw t ".#{@event}.your_note", :commenter => link_to_user(@commenter), :place => @place %>
+<%= t ".#{@event}.your_note_html", :commenter => link_to_user(@commenter), :place => @place %>
<% else %> -<%= raw t ".#{@event}.commented_note", :commenter => link_to_user(@commenter), :place => @place %>
+<%= t ".#{@event}.commented_note_html", :commenter => link_to_user(@commenter), :place => @place %>
<% end %> <% unless @comment.empty? %> @@ -12,4 +12,4 @@ <% end %> <% end %> -<%= raw t ".details", :url => link_to(@noteurl, @noteurl) %>
+<%= t ".details_html", :url => link_to(@noteurl, @noteurl) %>
diff --git a/app/views/users/_popup.html.erb b/app/views/users/_popup.html.erb index 684cf3237..a643b5c90 100644 --- a/app/views/users/_popup.html.erb +++ b/app/views/users/_popup.html.erb @@ -1,5 +1,5 @@<%= t("." + type) %>
+<%= t(".#{type}") %>
<%= link_to popup.display_name, user_path(popup) %>
A diferencia de otros mapas, OpenStreetMap está creado completamente - por gente como tú, y cualquiera puede corregirlo, actualizarlo, descargarlo - y usarlo.
RegÃstrate para comenzar a contribuir. Te enviaremos un - mensaje de correo electrónico para confirmar tu cuenta.
+ html: |- +A diferencia de otros mapas, OpenStreetMap está completamente creado por gente como usted, y cualquiera puede corregirlo, actualizarlo, descargarlo y usarlo.
+RegÃstrese para comenzar a colaborar. Le enviaremos un correo electrónico para confirmar su cuenta.
email address: 'Dirección de correo electrónico:' confirm email address: 'Confirmar la dirección de correo electrónico:' - not_displayed_publicly_html: Tu dirección no se muestra de forma pública (consulta - la normativa de privacidad para más información) + not_displayed_publicly_html: Su dirección no se muestra de forma pública. Consulte + nuestra normativa + de privacidad para obtener más información. display name: 'Nombre en pantalla:' - display name description: Tu nombre de usuario público. Puedes cambiarlo más - tarde en "preferencias". + display name description: Su nombre de usuario público. Puede cambiarlo más + tarde en las preferencias. external auth: 'Autenticación de terceros:' password: 'Contraseña:' confirm password: 'Confirmar contraseña:' @@ -2224,21 +2416,22 @@ es: continue: Registrarse terms accepted: ¡Gracias por aceptar los nuevos términos de colaborador! terms declined: Lamentamos que haya decidido no aceptar los nuevos Términos - de contribución. Para obtener más información, consulte esta + de colaborador. Para obtener más información, consulte esta página wiki. terms declined url: https://wiki.openstreetmap.org/wiki/ES:Contributor_Terms_Declined terms: title: Términos heading: Términos - heading_ct: Términos del colaborador - read and accept with tou: Por favor lee los términos de colaboración y los de - uso, tilda ambas opciones cuando termines y presiona el botón de continuar. - contributor_terms_explain: Este acuerdo gobierna los términos de tus contribuciones + heading_ct: Términos de colaborador + read and accept with tou: Lea el acuerdo de colaborador y los términos de uso, + marque ambas casillas de verificación cuando haya terminado y luego presione + el botón Continuar. + contributor_terms_explain: Este acuerdo gobierna los términos de sus contribuciones actuales y futuras. - read_ct: He leido y estoy de acuerdo con los términos de contribución arriba + read_ct: He leÃdo y estoy de acuerdo con los términos de colaborador arriba descritos - tou_explain_html: Estos %{tou_link} gobiernan el uso del sitio web y de la infraestructura - provistas por OSMF. Por favor ingrese al enlace, lea y acéptelos. + tou_explain_html: Estos %{tou_link} rigen el uso del sitio web y de la infraestructura + provista por OSMF. Haga clic en el enlace, lea y acepte el texto. read_tou: He leÃdo y estoy de acuerdo con los Términos de Uso consider_pd: Además del acuerdo anterior, considero que mis contribuciones se encuentran en Dominio Público. @@ -2249,8 +2442,8 @@ es: continue: Continuar declined: https://wiki.openstreetmap.org/wiki/ES:Contributor_Terms_Declined decline: Declinar - you need to accept or decline: Por favor lea y, a continuación, acepte o rechace - los nuevos Términos de contribución para continuar. + you need to accept or decline: Lea y luego acepte o rechace los nuevos Términos + de colaborador para continuar. legale_select: 'PaÃs de residencia:' legale_names: france: Francia @@ -2259,9 +2452,9 @@ es: no_such_user: title: Este usuario no existe heading: El usuario %{user} no existe - body: Lo sentimos, no existe ningún usuario con el nombre %{user}. Por favor, - verifica las letras, o tal vez el vÃnculo en el que has hecho click está equivocado. - deleted: borrado + body: Lo sentimos, no existe ningún usuario con el nombre %{user}. Revise las + letras, o tal vez el enlace en el que hizo clic sea incorrecto. + deleted: eliminado show: my diary: Mi diario new diary entry: nueva entrada de diario @@ -2283,7 +2476,7 @@ es: remove as friend: Eliminar como amigo add as friend: Añadir como amigo mapper since: 'Mapeando desde:' - ct status: 'Términos del colaborador:' + ct status: 'Términos de colaborador:' ct undecided: Indeciso ct declined: Rechazado latest edit: 'Ãltima edición (%{ago}):' @@ -2328,7 +2521,7 @@ es: nearby_diaries: entradas de diarios de usuarios cercanos report: Denunciar a este usuario popup: - your location: 'Tu ubicación:' + your location: Su ubicación nearby mapper: Mapeadores cercanos friend: Amigo account: @@ -2351,22 +2544,22 @@ es: disabled link text: ¿Por qué no puedo editar? public editing note: heading: Edición pública - html: Actualmente sus ediciones son anónimas y la gente no puede ni enviarle - mensajes ni ver su localización. Para mostrar que es lo que ha editado y - permitir a la gente contactar con usted a través del sitio web, pulse el - botón inferior. Desde la migración a la API 0.6, sólo los usuarios públicos - pueden editar el mapa (más - detalles aquÃ)- Disculpa, tu cuenta ha sido automáticamente suspendida debido a actividad sospechosa. + Lo sentimos, su cuenta ha sido suspendida automáticamente debido a + actividades sospechosas.
- Esta decisión será revisada por un administrador en breve, o puedes contactar con el %{webmaster} si deseas discutir esto. + Esta decisión será revisada por un administrador en breve, o + puede comunicarse con el %{webmaster} si desea discutir esto.
auth_failure: - connection_failed: La conexión al proveedor de autenticación falló + connection_failed: Falló la conexión con el proveedor de autenticación invalid_credentials: Datos de autenticación no válidos no_authorization_code: Sin código de autorización unknown_signature_algorithm: Algoritmo de firma desconocido invalid_scope: Ãmbito no válido auth_association: - heading: Tu identificador aún no está asociado con una cuenta de OpenStreetMap. + heading: Su identificador aún no está asociado con una cuenta de OpenStreetMap. option_1: Si eres nuevo en OpenStreetMap, crea cuenta nueva usando el formulario a continuación. - option_2: Si ya tienes una cuenta, puedes acceder a ella con tu nombre de usuario - y contraseña, y luego asociar la cuenta con tu identificador en tus preferencias - de usuario. + option_2: |- + Si ya tiene una cuenta, puede iniciar sesión en su cuenta + usando su nombre de usuario y contraseña y luego asociar la cuenta + con su identificador en sus preferencias de usuario. user_role: filter: - not_a_role: La cadena `%{role}' no es una función válida. - already_has_role: El usuario ya tiene la función %{role}. - doesnt_have_role: El usuario no tiene la función %{role}. - not_revoke_admin_current_user: No se pudo revocar el cargo de administrador - del usuario actual. + not_a_role: La cadena `%{role}' no es un rol válido. + already_has_role: El usuario ya tiene el rol %{role}. + doesnt_have_role: El usuario no tiene el rol %{role}. + not_revoke_admin_current_user: No se pudo revocar el rol de administrador del + usuario actual. grant: - title: Confirmar adjudicación de función - heading: Confirmar adjudicación de función - are_you_sure: ¿Confirmas que quieres otorgar la función «%{role}» al usuario - «%{name}»? + title: Confirmar adjudicación de rol + heading: Confirmar adjudicación de rol + are_you_sure: ¿Está seguro de que desea otorgar el rol `%{role}' al usuario + `%{name}'? confirm: Confirmar - fail: No pudo otorgarse la función `%{role}' al usuario `%{name}'. Por favor, - comprueba que el usuario y la función sean válidos. + fail: No pudo otorgarse el rol `%{role}' al usuario `%{name}'. Comprueba que + el usuario y el rol sean válidos. revoke: - title: Confirmar revocación de función - heading: Confirmar revocación de función - are_you_sure: ¿Confirmas que quieres revocar la función «%{role}» del usuario - «%{name}»? + title: Confirmar revocación de rol + heading: Confirmar revocación de rol + are_you_sure: ¿Está seguro de que desea revocar el rol `%{role}' del usuario + `%{name}'? confirm: Confirmar - fail: No se pudo revocar la función `%{role}' del usuario `%{name}'. Por favor, - comprueba que el usuario y la función sean válidos. + fail: No se pudo revocar el rol `%{role}' del usuario `%{name}'. Comprueba que + el usuario y el rol sean válidos. user_blocks: model: non_moderator_update: Debes ser un moderador para poder crear o actualizar un @@ -2499,11 +2695,11 @@ es: new: title: Creando un bloqueo para %{name} heading_html: Creando un bloqueo para %{name} - reason: El motivo por el que %{name} está siendo bloqueado. Actúa todo lo calmado - y razonable que puedas, proporcionando todos los detalles que puedas sobre - la situación, recordando que ese mensaje será visible públicamente. Ten en - cuenta que no todos los usuarios entienden la jerga de la comunidad, asà que - trata de utilizar términos sencillos. + reason: El motivo por el que %{name} está siendo bloqueado. Manténgase lo más + tranquilo y razonable posible, dando tantos detalles como pueda sobre la situación, + recordando que el mensaje será visible públicamente. Tenga en cuenta que no + todos los usuarios comprenden la jerga de la comunidad, asà que intente utilizar + términos simples. period: ¿Por cuánto tiempo, empezando ahora, el usuario tendrá bloqueado el uso de la API? tried_contacting: He contactado con el usuario y le he pedido que deje de hacerlo. @@ -2515,10 +2711,10 @@ es: edit: title: Editando el bloqueo sobre %{name} heading_html: Editando el bloqueo sobre %{name} - reason: El motivo por el que %{name} está siendo bloqueado. Actúa todo lo calmado - y razonable que puedas, proporcionando todos los detalles que puedas sobre - la situación. Ten en cuenta que no todos los usuarios entienden la jerga de - la comunidad, asà que trata de utilizar términos sencillos. + reason: El motivo por el que %{name} está siendo bloqueado. Manténgase lo más + tranquilo y razonable posible, dando tantos detalles como pueda sobre la situación. + Tenga en cuenta que no todos los usuarios comprenden la jerga de la comunidad, + asà que intente utilizar términos simples. period: ¿Por cuánto tiempo, empezando ahora, el usuario tendrá bloqueado el uso de la API? show: Ver este bloqueo @@ -2530,10 +2726,10 @@ es: block_period: El periodo de bloqueo debe de ser uno de los valores seleccionables de la lista desplegable. create: - try_contacting: Por favor, antes de bloquear al usuario, intenta contactar con - él y darle un tiempo razonable de respuesta. - try_waiting: Por favor, trata de darle al usuario un tiempo razonable de respuesta - antes de bloquearle. + try_contacting: Intente ponerse en contacto con el usuario antes de bloquearlo + y darle un tiempo razonable para responder. + try_waiting: Intente darle al usuario un tiempo razonable para responder antes + de bloquearlo. flash: Ha creado un bloqueo en el usuario %{name}. update: only_creator_can_edit: Sólo el moderador que ha creado este bloqueo puede editarlo. @@ -2547,7 +2743,7 @@ es: heading_html: Revocando el bloqueo sobre %{block_on} por %{block_by} time_future: Este bloqueo finalizará en %{time}. past: Este bloqueo terminó %{time} y no puede ser revocado ahora. - confirm: ¿Confirmas que quieres revocar este bloqueo? + confirm: ¿Está seguro de que desea revocar este bloqueo? revoke: Revocar flash: Este bloqueo ha sido revocado. helper: @@ -2588,7 +2784,7 @@ es: show: Mostrar edit: Editar revoke: Revocar - confirm: ¿Lo confirmas? + confirm: ¿Está seguro? reason: 'Razón del bloqueo:' back: Ver todos los bloqueos revoker: 'Revocador:' @@ -2675,10 +2871,10 @@ es: donate_link_text: Hacer una donación terms: Términos del sitio web y de la API - thunderforest: Mosaicos cortesÃa de Andy + thunderforest: Teselas cortesÃa de Andy Allan - opnvkarte: Las cuadriculas son cortesÃa de MeMoMaps - hotosm: Estilo de mosaico por Equipo + opnvkarte: Teselas cortesÃa de MeMoMaps + hotosm: Estilo de teselas por Equipo humanitario OpenStreetMap alojado por OpenStreetMap Francia site: @@ -2694,21 +2890,21 @@ es: show: comment: Comentar subscribe: Suscribirse - unsubscribe: Desuscribir + unsubscribe: Cancelar suscripción hide_comment: ocultar unhide_comment: mostrar notes: new: - intro: ¿Has detectado un error o falta algo? Hazlo saber a otros cartógrafos - para que podamos arreglarlo. Mueve el marcador hasta la posición correcta - y escribe una nota para explicar el problema. + intro: ¿Detectó un error o falta algo? Informe a otros mapeadores para que + podamos solucionarlo. Mueva el marcador a la posición correcta y escriba + una nota para explicar el problema. advice: La nota será pública y podrÃa utilizarse para actualizar el mapa, asà que no des información personal ni datos provenientes de mapas o catálogos protegidos por derechos de autor. add: Añadir nota show: - anonymous_warning: Esta nota contiene comentarios de usuarios anónimos que - deberÃan ser verificados por separado. + anonymous_warning: Esta nota incluye comentarios de usuarios anónimos que + deben ser verificados de forma independiente. hide: Ocultar resolve: Resolver reactivate: Reactivar @@ -2734,18 +2930,18 @@ es: instructions: continue_without_exit: Continuar en %{name} slight_right_without_exit: Gire un poco a la derecha hacia %{name} - offramp_right: Use la rampa de la derecha - offramp_right_with_exit: Use la salida %{exit} de la derecha + offramp_right: Tome la rampa de la derecha + offramp_right_with_exit: Tome la salida %{exit} a la derecha offramp_right_with_exit_name: Tome la salida %{exit} a la derecha hacia %{name} - offramp_right_with_exit_directions: Toma la salida %{exit} a la derecha hacia + offramp_right_with_exit_directions: Tome la salida %{exit} a la derecha hacia %{directions} - offramp_right_with_exit_name_directions: Toma la salida %{exit} a la derecha + offramp_right_with_exit_name_directions: Tome la salida %{exit} a la derecha hacia %{name}, en dirección %{directions} - offramp_right_with_name: Use la rampa a la derecha hacia %{name} - offramp_right_with_directions: Toma la salida a la derecha hacia %{directions} - offramp_right_with_name_directions: Use la rampa a la derecha hacia %{name}, + offramp_right_with_name: Tome la rampa a la derecha hacia %{name} + offramp_right_with_directions: Tome la salida a la derecha hacia %{directions} + offramp_right_with_name_directions: Tome la rampa a la derecha hacia %{name}, en dirección %{directions} - onramp_right_without_exit: Gira a la derecha en la salida hacia %{name} + onramp_right_without_exit: Gire a la derecha en la rampa hacia %{name} onramp_right_with_directions: Gire a la derecha en la rampa hacia %{directions} onramp_right_with_name_directions: Gire a la derecha en la rampa hacia %{name}, en dirección %{directions} @@ -2756,46 +2952,45 @@ es: merge_right_without_exit: Incorpórese a la derecha hacia %{name} fork_right_without_exit: En la bifurcación, gire a la derecha hacia %{name} turn_right_without_exit: Gire a la derecha hacia %{name} - sharp_right_without_exit: Giro brusco a la derecha hacia %{name} - uturn_without_exit: Vuelta en U a lo largo de %{name} - sharp_left_without_exit: Giro brusco a la izquierda hacia %{name} + sharp_right_without_exit: Gire cerrado a la derecha hacia %{name} + uturn_without_exit: Gire en U a lo largo de %{name} + sharp_left_without_exit: Gire cerrado a la izquierda hacia %{name} turn_left_without_exit: Gire a la izquierda hacia %{name} - offramp_left: Use la rampa de la izquierda - offramp_left_with_exit: Use la salida %{exit} de la izquierda - offramp_left_with_exit_name: Tome la salida %{exit} a la derecha hacia %{name} - offramp_left_with_exit_directions: Toma la salida %{exit} a la izquierda hacia + offramp_left: Tome la rampa de la izquierda + offramp_left_with_exit: Tome la salida %{exit} de la izquierda + offramp_left_with_exit_name: Tome la salida %{exit} a la izquierda hacia %{name} + offramp_left_with_exit_directions: Tome la salida %{exit} a la izquierda hacia %{directions} - offramp_left_with_exit_name_directions: Toma la salida %{exit} a la izquierda + offramp_left_with_exit_name_directions: Tome la salida %{exit} a la izquierda hacia %{name}, en dirección %{directions} offramp_left_with_name: Tome la salida a la izquierda hacia %{name} - offramp_left_with_directions: Use la rampa a la izquierda hacia %{directions} - offramp_left_with_name_directions: Use la rampa a la izquierda hacia %{name}, + offramp_left_with_directions: Tome la rampa a la izquierda hacia %{directions} + offramp_left_with_name_directions: Tome la rampa a la izquierda hacia %{name}, en dirección %{directions} - onramp_left_without_exit: Gire a la izquierda en la salida hacia %{name} + onramp_left_without_exit: Gire a la izquierda en la rampa hacia %{name} onramp_left_with_directions: Gire a la izquierda en la rampa hacia %{directions} onramp_left_with_name_directions: Gire a la izquierda en la rampa hacia %{name}, en dirección %{directions} onramp_left_without_directions: Gire a la izquierda en la rampa onramp_left: Gire a la izquierda en la rampa - endofroad_left_without_exit: Al final de la calle gire a la derecha hacia + endofroad_left_without_exit: Al final de la calle gire a la izquierda hacia %{name} merge_left_without_exit: Incorpórese a la izquierda hacia %{name} fork_left_without_exit: En la bifurcación, gire a la izquierda hacia %{name} slight_left_without_exit: Gire un poco a la izquierda hacia %{name} via_point_without_exit: (punto intermedio) - follow_without_exit: Siga %{name} - roundabout_without_exit: En la rotonda, tomar salida hacia %{name} - leave_roundabout_without_exit: Salir de la rotonda - %{name} - stay_roundabout_without_exit: Permanecer en la rotonda - %{name} + follow_without_exit: Siga a %{name} + roundabout_without_exit: En la rotonda, tome la salida hacia %{name} + leave_roundabout_without_exit: Salga de la rotonda - %{name} + stay_roundabout_without_exit: Permanezca en la rotonda - %{name} start_without_exit: Comenzar en %{name} destination_without_exit: Llegue a su destino - against_oneway_without_exit: Ir en contra de una vÃa de un solo sentido en - %{name} - end_oneway_without_exit: Final de un solo sentido en %{name} - roundabout_with_exit: En la rotonda, tomar la salida %{exit} hacia %{name} - roundabout_with_exit_ordinal: En la rotonda, tomar la salida %{exit} hacia + against_oneway_without_exit: Ir en contra del sentido único en %{name} + end_oneway_without_exit: Final de sentido único en %{name} + roundabout_with_exit: En la rotonda, tome la salida %{exit} hacia %{name} + roundabout_with_exit_ordinal: En la rotonda, tome la salida %{exit} hacia %{name} - exit_roundabout: Salir de la rotonda hacia %{name} + exit_roundabout: Salga de la rotonda hacia %{name} unnamed: sin nombre courtesy: Indicaciones cortesÃa de %{link} exit_counts: @@ -2844,19 +3039,19 @@ es: user: 'Creador:' edit: Editar esta redacción destroy: Eliminar esta redacción - confirm: ¿Lo confirmas? + confirm: ¿Está seguro? create: flash: Se creó la censura. update: flash: Cambios guardados. destroy: - not_empty: La redacción no está vacÃa. Por favor, elimine todas las versiones - previas pertenecientes a esta redacción antes de destruirla. + not_empty: La redacción no está vacÃa. Elimine todas las versiones previas pertenecientes + a esta redacción antes de destruirla. flash: Redacción destruida. error: Se produjo un error al destruir esta redacción validations: leading_whitespace: tiene espacio en blanco delantero trailing_whitespace: tiene espacio en blanco final invalid_characters: contiene caracteres no válidos - url_characters: Contiene caracteres URL especial (%{characters}) + url_characters: Contiene caracteres especiales de URL (%{characters}) ... diff --git a/config/locales/et.yml b/config/locales/et.yml index e5039a988..f6dc0050b 100644 --- a/config/locales/et.yml +++ b/config/locales/et.yml @@ -984,23 +984,15 @@ et: had_added_you: '%{user} lisas sind OpenStreetMapis sõbraks.' see_their_profile: Tema profiiliga võid tutvuda aadressil %{userurl}. befriend_them: Sa võid ta lisada oma sõbraks aadressil %{befriendurl}. - gpx_notification: - greeting: Tere! - your_gpx_file: Paistab, et sinu GPX-fail - with_description: ', mille kirjeldus on' - and_the_tags: 'ja järgmised sildid:' - and_no_tags: ja millel sildid puuduvad. - failure: - subject: '[OpenStreetMap] GPX importimine nurjus' - failed_to_import: 'importimine ebaõnnestus. Siin on viga:' - more_info_1: Rohkem infot GPX importimise tõrgete ja selle kohta, kuidas - more_info_2: 'neid vältida leiab:' - success: - subject: '[OpenStreetMap] GPX Importimine õnnestus' - loaded_successfully: - one: laaditi üles edukalt %{trace_points} punkt võimalikust ühest punktist. - other: laaditi üles edukalt %{trace_points} punkti võimalikust %{possible_points} - punktist. + gpx_failure: + failed_to_import: 'importimine ebaõnnestus. Siin on viga:' + subject: '[OpenStreetMap] GPX importimine nurjus' + gpx_success: + loaded_successfully: + one: laaditi üles edukalt %{trace_points} punkt võimalikust ühest punktist. + other: laaditi üles edukalt %{trace_points} punkti võimalikust %{possible_points} + punktist. + subject: '[OpenStreetMap] GPX Importimine õnnestus' signup_confirm: subject: '[OpenStreetMap] Tere tulemast OpenStreetMapi' greeting: Tere! @@ -1011,13 +1003,6 @@ et: et saaksid kasutamist hõlpsalt alustada. email_confirm: subject: '[OpenStreetMap] Kinnita oma e-posti aadress' - email_confirm_plain: - greeting: Tere! - hopefully_you: Keegi (loodetavasti sina) soovib muuta oma meiliaadressi asukohas - %{server_url} kujule %{new_address}. - click_the_link: Kui see oled sina, siis klõpsa palun alloleval lingil, et muudatus - kinnitada. - email_confirm_html: greeting: Tere! hopefully_you: Keegi (loodetavasti sina) soovib muuta oma meiliaadressi asukohas %{server_url} kujule %{new_address}. @@ -1025,13 +1010,6 @@ et: kinnitada. lost_password: subject: '[OpenStreetMap] Parooli lähtestamise taotlus' - lost_password_plain: - greeting: Tere! - hopefully_you: Keegi (tõenäoliselt sina) on esitanud taotluse, et lähtestada - selle e-posti aadressiga openstreetmap.org-i konto parool. - click_the_link: Kui see oled sina, siis klõpsa palun alloleval lingil, et parool - lähtestada. - lost_password_html: greeting: Tere! hopefully_you: Keegi (tõenäoliselt sina) on esitanud taotluse, et lähtestada selle e-posti aadressiga openstreetmap.org-i konto parool. diff --git a/config/locales/eu.yml b/config/locales/eu.yml index 7bc5d1c80..452b10724 100644 --- a/config/locales/eu.yml +++ b/config/locales/eu.yml @@ -1187,22 +1187,13 @@ eu: had_added_you: '%{user} lagun bezala gehitu zaitu OpenStreetMap-en.' see_their_profile: Haien profila %{userurl}n ikusi dezakezu. befriend_them: Haiek ere lagun bezala gehitu ditzakezu %{befriendurl}n. - gpx_notification: - greeting: Kaixo, - your_gpx_file: Zure GPX fitxategia bezala dirudi - with_description: deskribapenarekin - and_the_tags: 'eta hurrengo etiketak:' - and_no_tags: eta etiketarik ez. - failure: - subject: '[OpenStreetMap] GPX Inportazioan porrota' - failed_to_import: 'inportzean kale egin du. Hemen dago akatsa:' - more_info_1: GPX inportazio akatsei buruzko informazio gehiago eta hauek nola - saihesteari buruz. - more_info_2: 'hemen aurkitu daitezke:' - success: - subject: '[OpenStreetMap] GPX Inportazioan arrakasta' - loaded_successfully: '%{trace_points} puntuekin %{possible_points} puntuetatik - arrakastaz kargatu da.' + gpx_failure: + failed_to_import: 'inportzean kale egin du. Hemen dago akatsa:' + subject: '[OpenStreetMap] GPX Inportazioan porrota' + gpx_success: + loaded_successfully: '%{trace_points} puntuekin %{possible_points} puntuetatik + arrakastaz kargatu da.' + subject: '[OpenStreetMap] GPX Inportazioan arrakasta' signup_confirm: subject: '[OpenStreetMap] Ongi etorri OpenStreetMap-era' greeting: Kaixo! @@ -1213,24 +1204,12 @@ eu: hasteko. email_confirm: subject: '[OpenStreetMap] Baieztatu zure eposta helbidea' - email_confirm_plain: - greeting: Kaixo, - hopefully_you: Norbaitek (zuk zorionez) zure helbide elektronikoa aldatu nahi - du %{server_url}en %{new_address}ra. - click_the_link: Hau zu bazara, beheko estekan klik egin aldaketa baieztatzeko. - email_confirm_html: greeting: Kaixo, hopefully_you: Norbaitek (zuk zorionez) zure helbide elektronikoa aldatu nahi du %{server_url}en %{new_address}ra. click_the_link: Hau zu bazara, beheko estekan klik egin aldaketa baieztatzeko. lost_password: subject: '[OpenStreetMap] Pasahitza berrezartzeko eskaera' - lost_password_plain: - greeting: Kaixo, - hopefully_you: Norbaitek (zuk posibleki) helbide elektroniko kontu honetara - openstreetmap.org berrezartzeko pasahitza eskatu du. - click_the_link: Hau zu bazara, egin klik beheko estekan zure pasahitza berrezartzeko. - lost_password_html: greeting: Kaixo, hopefully_you: Norbaitek (zuk posibleki) helbide elektroniko kontu honetara openstreetmap.org berrezartzeko pasahitza eskatu du. diff --git a/config/locales/fa.yml b/config/locales/fa.yml index 1636f39e2..0b3056c3b 100644 --- a/config/locales/fa.yml +++ b/config/locales/fa.yml @@ -112,6 +112,7 @@ fa: attributes: client_application: name: Ùا٠(اجبارÛ) + url: ÙشاÙÛ Ø§ÛÙترÙØªÛ Ø¨Ø±Ùا٠٠اصÙÛ (اÙزا٠Û) callback_url: Callback URL support_url: URL پشتÛباÙÛ allow_read_prefs: ترجÛØات Ú©Ø§Ø±Ø¨Ø±Û Ø¢ÙâÙا را بخÙاÙد @@ -321,6 +322,7 @@ fa: entry_html: رابطÙÙ %{relation_name} entry_role_html: رابطÙÙ %{relation_name} (با ÙÙØ´ %{relation_role}) not_found: + title: ÛاÙت Ùشد sorry: 'Ø´ÙربختاÙÙ %{type} #%{id} ÛاÙت Ùشد.' type: node: گر٠@@ -329,6 +331,7 @@ fa: changeset: بستÙ٠تغÛÛر note: Ûادداشت timeout: + title: Ø®Ø·Ø§Û Ø§ÙÙØ¶Ø§Û Ù Ø¯Øª sorry: Ø´ÙربختاÙ٠بازÛØ§Ø¨Û Ø¯Ø§Ø¯Ù٠٠ربÙØ· ب٠%{type} با Ø´ÙاسÙÙ %{id}Ø Ø®ÛÙÛ Ø²Ù Ø§Ùâبر شد. type: @@ -469,7 +472,8 @@ fa: body: Ø´ÙربختاÙ٠با Ø´ÙاسÙÙ %{id} ÙÛÚ Ø±ÙزÙÙشت Ûا ÙØ¸Ø±Û ÛاÙت Ùشد. ÙØ·Ùا٠ÙÙشتار Ø®Ùد را Ø¨Ø±Ø±Ø³Û Ú©ÙÛد. ÙÙ ÚÙÛ٠٠٠ک٠است Ù¾ÛÙÙØ¯Û Ú©Ù Ú©ÙÛÚ© کردÙâاÛد اشتبا٠باشد. diary_entry: - posted_by_html: ارساÙÛ Ø§Ø² %{link_user} در %{created} ب٠%{language_link} + posted_by_html: ارساÙÛ Ø§Ø² %{link_user} در %{created} ب٠%{language_link}. + updated_at_html: آخرÛ٠بÙâرÙزرساÙÛ Ø¯Ø± %{updated}. comment_link: Ùظرداد٠ب٠اÛ٠رÙزÙÙشت reply_link: ب٠ÙÙÛسÙد٠پÛا٠بÙرستÛد comment_count: @@ -550,11 +554,13 @@ fa: hangar: آشÛاÙÙ ÙÙاپÛ٠ا helipad: Ù ØÙ ÙرÙد ÙÙÛ Ú©Ùپتر holding_position: اÙتظارگا٠ÙرÙد + navigationaid: Ú©Ù Ú©âÙØ§Û ÙاÙØ¨Ø±Û ÙÙاÛÛ parking_position: Ù ÙÙعÛت پارکâکرد٠runway: باÙد ÙرÙدگا٠taxiway: خزشâرا٠terminal: پاÛاÙÙ amenity: + animal_boarding: Ù Ø٠تØÙÛÙ ØÛÙاÙات animal_shelter: Ù¾ÙاÙگا٠ØÛÙاÙات arts_centre: ٠رکز ÙÙØ±Û atm: Ø®Ùدپرداز @@ -564,7 +570,9 @@ fa: bench: ÙÛ٠کت bicycle_parking: پارکÛÙÚ¯ دÙÚرخ٠bicycle_rental: اجارÙ٠دÙÚرخ٠+ bicycle_repair_station: اÛستگا٠تع٠Ûر دÙÚرخ٠biergarten: باغ آبج٠+ blood_bank: باÙÚ© Ø®ÙÙ boat_rental: کراÛÙ ÙاÛÙ brothel: ÙاØØ´ÙâخاÙÙ bureau_de_change: دÙتر ارز @@ -581,6 +589,7 @@ fa: clock: ساعت college: کاÙج community_centre: ٠رکز اجت٠اع + conference_centre: ٠رکز Ú©ÙÙراÙس courthouse: دادگا٠crematorium: Ú©Ùر٠dentist: دÙداÙÙ¾Ø²Ø´Ú©Û @@ -604,8 +613,12 @@ fa: kindergarten: Ú©Ùدکستا٠language_school: Ø¢Ù Ùزشگا٠زبا٠library: کتابخاÙÙ + loading_dock: اسکÙ٠بارگÛØ±Û + love_hotel: Ùت٠عش٠marketplace: بازار + mobile_money_agent: Ø¢ÚاÙس Ù¾ÙÙ Ù٠را٠monastery: صÙ٠ع٠+ money_transfer: اÙتÙا٠پÙÙ motorcycle_parking: پارکÛÙÚ¯ Ù ÙتÙر سÛÚ©Ùت music_school: Ø¢Ù Ùزشگا٠٠ÙسÛÙÛ nightclub: باشگا٠شباÙÙ @@ -613,6 +626,7 @@ fa: parking: پارکÛÙÚ¯ parking_entrance: ÙرÙØ¯Û Ù¾Ø§Ø±Ú©ÛÙÚ¯ parking_space: ÙØ¶Ø§Û Ù¾Ø§Ø±Ú©âکرد٠+ payment_terminal: درگا٠پرداخت pharmacy: دارÙخاÙÙ place_of_worship: عبادتگا٠police: Ù¾ÙÛس @@ -621,9 +635,12 @@ fa: prison: زÙدا٠pub: Ù ÛخاÙÙ public_bath: Ø٠ا٠ع٠ÙÙ Û + public_bookcase: کتابخاÙ٠ع٠ÙÙ Û public_building: ساخت٠ا٠ع٠ÙÙ Û + ranger_station: اÛستگا٠رÙجر recycling: ÙÙط٠بازÛاÙت restaurant: رستÙرا٠+ sanitary_dump_station: اÛستگا٠تخÙÛ٠بÙØ¯Ø§Ø´ØªÛ school: ٠درس٠shelter: Ù¾ÙاÙگا٠shower: دÙØ´ @@ -636,6 +653,7 @@ fa: theatre: تئاتر toilets: سرÙÛس ÙØ§Û Ø¨ÙØ¯Ø§Ø´ØªÛ townhall: Ø´ÙØ±Ø¯Ø§Ø±Û + training: ا٠کاÙات Ø¢Ù Ùزش university: داÙشگا٠vehicle_inspection: ٠عاÛÙÙ ÙÙÛ vending_machine: دستگا٠ÙرÙØ´ @@ -643,11 +661,15 @@ fa: village_hall: دÙÛØ§Ø±Û waste_basket: سط٠زباÙÙ waste_disposal: دÙع زباÙÙ + waste_dump_site: ساÛت تخÙÛ٠زباÙÙ + watering_place: ٠کا٠آبÛØ§Ø±Û water_point: Ù ÙØ·ÙÙ Ø¯Ø§Ø±Ø§Û Ø¢Ø¨ boundary: + aboriginal_lands: سرز٠Û٠بÙÙ ÛââÙا administrative: ٠رز Ø§Ø¯Ø§Ø±Û census: ٠رز Ø¢Ù Ø§Ø±Û national_park: پارک Ù ÙÛ + political: ٠رز اÙکترا٠protected_area: Ù ÙØ·ÙÙ ØÙاظتâشد٠"yes": ٠رز bridge: @@ -660,19 +682,32 @@ fa: building: apartment: آپارت٠ا٠apartments: آپارت٠اÙâÙا + barn: بار٠+ bungalow: خاÙÙ Ú©ÙÚÚ© + cabin: کابÛÙ chapel: Ú©ÙÛسا church: ساخت٠ا٠کÙÛسا + civic: ساخت٠ا٠شÙØ±Û + college: ساخت٠ا٠کاÙج commercial: Ø³Ø§Ø®ØªÙ Ø§Ù ØªØ¬Ø§Ø±Û construction: ساخت٠ا٠در دست ساخت + detached: خاÙ٠٠ستÙÙ dormitory: Ø®Ùابگا٠داÙشجÙÛÛ + duplex: خاÙ٠د٠طبÙÙ farm: خاÙÙ٠٠زرع٠+ farm_auxiliary: Ú©Ùب٠درÙ٠٠زرع٠garage: Ú¯Ø§Ø±Ø§Ú + garages: Ú¯Ø§Ø±Ø§Ú greenhouse: Ú¯ÙخاÙÙ + hangar: آشÛاÙÙ ÙÙاپÛ٠ا hospital: ساخت٠ا٠بÛ٠ارستا٠hotel: ساخت٠ا٠Ùت٠house: خاÙÙ + houseboat: ÙاÛ٠خاÙÙ + hut: Ùات industrial: ساخت٠ا٠صÙØ¹ØªÛ kindergarten: ساخت٠ا٠٠ÙدکÙدک + manufacture: ساخت٠ا٠تÙÙÛØ¯Û office: Ø³Ø§Ø®ØªÙ Ø§Ù Ø§Ø¯Ø§Ø±Û public: ساخت٠ا٠ع٠ÙÙ Û residential: ساخت٠ا٠٠سکÙÙÛ @@ -680,30 +715,47 @@ fa: roof: سÙÙ ruins: ساخت٠ا٠ÙÛرا٠school: ساخت٠ا٠٠درس٠+ semidetached_house: خاÙÙ ÙÛ٠٠٠ستÙÙ + service: Ø³Ø§Ø®ØªÙ Ø§Ù Ø®Ø¯Ù Ø§ØªÛ + stable: پاÛدار + static_caravan: کارÙا٠+ temple: ساخت٠ا٠٠عبد terrace: ردÛ٠ساخت٠اÙâÙا train_station: ساخت٠ا٠پاÛاÙÙÙ Ùطار university: ساخت٠ا٠داÙشگا٠warehouse: اÙبار "yes": ساخت٠ا٠club: + sport: Ú©ÙÙÙ¾ ÙØ±Ø²Ø´Û "yes": باشگا٠craft: blacksmith: Ø¢ÙÙگر brewery: ابجÙØ³Ø§Ø²Û carpenter: Ùجار + dressmaker: تÙÙÛØ¯Û Ùباس electrician: ٠تخصص بر٠+ electronics_repair: تع٠Ûر ÙÙاز٠اÙکترÙÛÚ©Û gardener: باغبا٠+ handicraft: صÙاÛع Ø¯Ø³ØªÛ + hvac: صÙاÛع تÙÙÛ٠٠تبÙع + metal_construction: جÙØ´Ú©Ø§Ø±Û painter: ÙÙاش photographer: عکاس plumber: ÙÙÙÙ Ú©Ø´ + roofer: تع٠ÛرکÙÙد٠سÙÙ shoemaker: Ú©Ùاش tailor: Ø®Ûاط + window_construction: Ù¾ÙجرÙâØ³Ø§Ø²Û + winery: شرابâØ³Ø§Ø²Û "yes": ÙرÙشگا٠ÙاÛÙ emergency: + access_point: ÙÙØ·Ù Ø¯Ø³ØªØ±Ø³Û ambulance_station: اÛستگا٠آ٠بÙÙاÙس assembly_point: ÙÙط٠ج٠عâشد٠defibrillator: برگرداÙÙد٠تپش ÙÙب + fire_water_pond: Ø´Ûر آتشâÙشاÙÛ landing_site: Ù ØÙØ·Ù ÙرÙد Ø§Ø¶Ø·Ø±Ø§Ø±Û + life_ring: ØÙÙÙ Ùجات Ø§Ø¶Ø·Ø±Ø§Ø±Û phone: تÙÙÙ Ø§Ø¶Ø·Ø±Ø§Ø±Û water_tank: Ù Ùبع آب Ø§Ø¶Ø·Ø±Ø§Ø±Û "yes": اÙرÚاÙØ³Û @@ -747,6 +799,7 @@ fa: tertiary: را٠درج٠س٠tertiary_link: را٠درج٠س٠track: رد + traffic_mirror: Ø¢ÛÛÙ٠تراÙÛÚ© traffic_signals: Úراغ راÙÙ٠اÛÛ trunk: بزرگرا٠trunk_link: بزرگرا٠@@ -754,36 +807,43 @@ fa: unclassified: جادÙÙ ÙØ±Ø¹Û "yes": جاد٠historic: + aircraft: ÙÙاپÛÙ Ø§Û ØªØ§Ø±ÛØ®Û archaeological_site: پاÛگا٠باستاÙâØ´ÙØ§Ø³Û battlefield: Ù Ûدا٠جÙÚ¯ boundary_stone: سÙÚ¯ Ù Ø±Ø²Û building: ساخت٠ا٠تارÛØ®Û bunker: Ù¾ÙاÙگا٠+ cannon: ÙاÛ٠تارÛØ®Û castle: ÙÙع٠church: Ú©ÙÛسا city_gate: درÙاز٠شÙر citywalls: دÛÙارÙØ§Û Ø´Ùر fort: Ø¯Ú heritage: Ù ØÙØ·Ù Ù Ûراث ÙرÙÙÚ¯Û + hollow_way: ØÙر٠house: خاÙÙ manor: Ù ÙÚ© Ø§Ø±Ø¨Ø§Ø¨Û memorial: ÛادبÙد + milestone: ÙÙط٠عط٠تارÛØ®Û mine: ٠عد٠mine_shaft: رگ٠اصÙÛ Ù Ø¹Ø¯Ù monument: بÙØ§Û ÛادبÙد + railway: راÙâØ¢Ù٠تارÛØ®Û roman_road: جاد٠رÙÙ Û ruins: خرابÙâÙا stone: سÙÚ¯ tomb: Ù Ùبر٠tower: برج + wayside_chapel: Ú©ÙÛØ³Ø§Û Ú©Ùار جاد٠wayside_cross: صÙÛب Ú©Ùار جاد٠wayside_shrine: Ù Ùبر٠کÙار جاد٠wreck: Ùاش٠- "yes": Ù ØÙط٠تارÛØ®Û + "yes": ٠کا٠تارÛØ®Û junction: "yes": تÙاطع landuse: allotments: Ø§Ø±Ø§Ø¶Û Ø§Ø®ØªØµØ§ØµâÛاÙت٠+ aquaculture: آبزÛا٠basin: ØÙض brownfield: ز٠Û٠جÙت ساخت cemetery: Ùبرستا٠@@ -803,9 +863,11 @@ fa: military: Ù ÙØ·ÙÙÙ ÙØ¸Ø§Ù Û mine: ٠عد٠orchard: باغستا٠+ plant_nursery: Ù Ùد Ú©Ùدک quarry: ٠عد٠railway: راÙâØ¢ÙÙ recreation_ground: ز٠Û٠تÙرÛØÛ + religious: ز٠ÛÙ Ù Ø°ÙØ¨Û reservoir: ٠خز٠reservoir_watershed: آبخÛØ²Ø¯Ø§Ø±Û Ù Ø®Ø²Ù residential: Ù ÙØ·ÙÙ٠٠سکÙÙÛ @@ -814,6 +876,7 @@ fa: vineyard: تاکستا٠"yes": Ú©Ø§Ø±Ø¨Ø±Û Ø²Ù ÛÙ leisure: + adult_gaming_centre: ٠رکز Ø¨Ø§Ø²Û Ø¨Ø²Ø±Ú¯Ø³Ø§Ùا٠beach_resort: تÙرÛØگا٠ساØÙÛ bird_hide: Ù Ø٠٠شاÙØ¯Ù Û Ù¾Ø±Ùدگا٠common: سرز٠Û٠٠شترک @@ -1307,7 +1370,6 @@ fa: footer: 'â«ÙÙ ÚÙÛÙ Ù ÛâتÙاÙÛد Ùظر را در اÛÙجا بخÙاÙÛد: %{readurl}Ø Ø§ÛÙجا ب٠آ٠Ùظر دÙÛد: %{commenturl}Ø Ûا از اÛÙجا ب٠ÙÙÛسÙد٠پÛا٠بدÙÛد: %{replyurl} â¬' message_notification: - subject_header: '[OpenStreetMap] %{subject}' hi: â«Ø³Ùا٠%{to_user}Ø⬠header: â«%{from_user} از طرÛ٠اÙÙ¾ÙâاسترÛتâÙ Ù¾ Ù¾ÛØ§Ù Û Ø¨Ø§ Ù ÙضÙع «%{subject}» Ø¨Ø±Ø§Û Ø´Ù Ø§ Ùرستاد٠است:⬠@@ -1321,24 +1383,16 @@ fa: â¬' befriend_them: 'â«Ø´Ù ا ÙÛز Ù ÛâتÙاÙÛد از اÛÙجا ا٠را بÙâعÙÙا٠دÙست اضاÙÙ Ú©ÙÛد: %{befriendurl} â¬' - gpx_notification: - greeting: â«Ø³Ùا٠Ø⬠- your_gpx_file: â«Ø¨ÙâÙظر Ù Ûâرسد ÙاÛÙ GPX ش٠ا - with_description: با تÙضÛØات - and_the_tags: ٠برÚسبâÙØ§Û - and_no_tags: ٠بدÙ٠برÚسب - failure: - subject: '[OpenStreetMap] â«Ø´Ú©Ø³Øª درÙÙâبرد GPXâ¬' - failed_to_import: 'درÙÙâبرد Ùشد. اÛ٠خطا رخ داد:' - more_info_1: â«Ø§Ø·Ùاعات بÛشتر دربارÙ٠شکست درÙÙâبرد GPX ٠راÙکار Ù¾ÛØ´Ú¯ÛØ±Û - more_info_2: 'از آ٠را اÛÙجا Ø®ÙاÙÛد ÛاÙت:' - import_failures_url: https://wiki.openstreetmap.org/wiki/Fa:GPX_Import_Failures - success: - subject: '[OpenStreetMap] â«Ù ÙÙÙÛت درÙÙâبرد GPXâ¬' - loaded_successfully: - one: با Ù ÙÙÙÛت ٠با %{trace_points} ÙÙط٠از 1 ÙÙØ·Ù٠٠٠ک٠بار شد. - other: با Ù ÙÙÙÛت ٠با %{trace_points} ÙÙط٠از %{possible_points} ÙÙØ·ÙÙ Ù Ù Ú©Ù - بار شد. + gpx_failure: + failed_to_import: 'درÙÙâبرد Ùشد. اÛ٠خطا رخ داد:' + import_failures_url: https://wiki.openstreetmap.org/wiki/Fa:GPX_Import_Failures + subject: '[OpenStreetMap] â«Ø´Ú©Ø³Øª درÙÙâبرد GPXâ¬' + gpx_success: + loaded_successfully: + one: با Ù ÙÙÙÛت ٠با %{trace_points} ÙÙط٠از 1 ÙÙØ·Ù٠٠٠ک٠بار شد. + other: با Ù ÙÙÙÛت ٠با %{trace_points} ÙÙط٠از %{possible_points} ÙÙØ·ÙÙ Ù Ù Ú©Ù + بار شد. + subject: '[OpenStreetMap] â«Ù ÙÙÙÛت درÙÙâبرد GPXâ¬' signup_confirm: subject: '[OpenStreetMap] ب٠اÙÙ¾ÙâاسترÛتâÙ Ù¾ Ø®ÙØ´ آ٠دÛد' greeting: سÙا٠!â @@ -1349,27 +1403,13 @@ fa: تا بتÙاÙÛد شرÙع Ú©ÙÛد.⬠email_confirm: subject: '[OpenStreetMap] ÙشاÙÛ Ø§ÛÙ ÛÙâتا٠را تأÛÛد Ú©ÙÛد' - email_confirm_plain: greeting: سÙا٠Øâ hopefully_you: â«Ú©Ø³Û (ا٠ÛدÙارÛ٠ش٠ا) Ù ÛâØ®ÙاÙد ÙشاÙÛ Ø§ÛÙ ÛÙ Ø®Ùد در %{server_url} را ب٠%{new_address} تغÛÛر دÙد.⬠click_the_link: â«Ø§Ú¯Ø± Ø®Ùدتا٠ÙستÛØ¯Ø ÙØ·ÙØ§Ù Ø¨Ø±Ø§Û ØªØ£ÛÛد اÛ٠تغÛÛر رÙÛ Ù¾ÛÙÙد زÛر Ú©ÙÛÚ© Ú©ÙÛد.⬠- email_confirm_html: - greeting: سÙا٠Øâ - hopefully_you: â«Ú©Ø³Û (ا٠ÛدÙارÛ٠ش٠ا) Ù ÛâØ®ÙاÙد ÙشاÙÛ Ø§ÛÙ ÛÙ Ø®Ùد در %{server_url} - را ب٠%{new_address} تغÛÛر دÙد.⬠- click_the_link: â«Ø§Ú¯Ø± Ø®Ùدتا٠ÙستÛØ¯Ø ÙØ·ÙØ§Ù Ø¨Ø±Ø§Û ØªØ£ÛÛد تغÛÛر رÙÛ Ù¾ÛÙÙد زÛر Ú©ÙÛÚ© - Ú©ÙÛد.⬠lost_password: subject: '[OpenStreetMap] درخÙاست بازÙشاÙÛ Ú¯Ø°Ø±ÙاÚÙ' - lost_password_plain: - greeting: سÙا٠Øâ - hopefully_you: â«Ú©Ø³Û (اØت٠اÙا٠ش٠ا) درخÙاست کرد٠گذرÙاÚÙ٠٠ربÙØ· ب٠Øساب Ú©Ø§Ø±Ø¨Ø±Û - ٠تÙاظر با اÛ٠اÛÙ Û٠در openstreetmap.org بازÙشاÙÛ Ø´Ùد.⬠- click_the_link: â«Ø§Ú¯Ø± Ø®Ùدتا٠درخÙاست کردÙâاÛØ¯Ø ÙØ·ÙØ§Ù Ø¨Ø±Ø§Û Ø¨Ø§Ø²ÙشاÙÛ Ú¯Ø°Ø±ÙاÚ٠رÙÛ - Ù¾ÛÙÙد زÛر Ú©ÙÛÚ© Ú©ÙÛد.⬠- lost_password_html: greeting: سÙا٠Øâ hopefully_you: â«Ú©Ø³Û (اØت٠اÙا٠ش٠ا) درخÙاست کرد٠گذرÙاÚÙ٠٠ربÙØ· ب٠Øساب Ú©Ø§Ø±Ø¨Ø±Û Ù ØªÙاظر با اÛ٠اÛÙ Û٠در openstreetmap.org بازÙشاÙÛ Ø´Ùد.⬠diff --git a/config/locales/fi.yml b/config/locales/fi.yml index 950a6d253..50aaf8d32 100644 --- a/config/locales/fi.yml +++ b/config/locales/fi.yml @@ -115,6 +115,7 @@ fi: way_tag: Viivan tagi attributes: client_application: + name: Nimi (pakollinen) callback_url: Takaisinsoiton verkko-osoite support_url: Tuen osoite (URL) diary_comment: @@ -519,6 +520,7 @@ fi: chair_lift: Tuolihissi drag_lift: Vetohissi gondola: Gondolihissi + magic_carpet: Mattohissi platter: Hiihtohissi pylon: Pylväs station: Ilmarata-asema @@ -535,6 +537,7 @@ fi: runway: Kiitorata taxiway: Rullaustie terminal: Terminaali + windsock: Tuulipussi amenity: animal_shelter: Eläinsuoja arts_centre: Taidekeskus @@ -587,6 +590,7 @@ fi: library: Kirjasto marketplace: Tori monastery: Luostari + money_transfer: Rahansiirto motorcycle_parking: Moottoripyöräpysäköinti music_school: Musiikkikoulu nightclub: Yökerho @@ -622,12 +626,15 @@ fi: village_hall: Kyläkoti waste_basket: Roskakori waste_disposal: Jätehuolto + waste_dump_site: Kaatopaikka water_point: vesipiste boundary: administrative: Hallinnollinen raja census: Väestönlaskenta-alueen raja national_park: Kansallispuisto + political: Vaalipiirin raja protected_area: Suojelualue + "yes": Raja bridge: aqueduct: Akvedukti boardwalk: Laudoitettu polku @@ -636,14 +643,20 @@ fi: viaduct: Maasilta "yes": Silta building: - apartments: Talo + apartments: Kerrostalo + barn: Lato chapel: Kappeli church: Kirkkorakennus commercial: Liikerakennus + construction: Rakenteilla oleva rakennus + detached: Omakotitalo dormitory: Asuntola + duplex: Paritalo farm: Maalaistalo garage: Autotalli + garages: Autotalleja greenhouse: Kasvihuone + hangar: Hangaari hospital: Sairaalarakennus hotel: Hotellirakennus house: Talo @@ -655,7 +668,7 @@ fi: retail: Liikerakennus roof: Katto school: Koulurakennus - terrace: Terassi + terrace: Rivitalo train_station: Rautatieasema university: Yliopistorakennus warehouse: Varasto @@ -1287,23 +1300,15 @@ fi: had_added_you: Käyttäjä %{user} lisäsi sinut kaverikseen OpenStreetMapissa. see_their_profile: Voit tutustua hänen käyttäjäsivuunsa osoitteessa %{userurl}. befriend_them: Voit myös lisätä lähettäjän kaveriksi osoitteessa %{befriendurl}. - gpx_notification: - greeting: Hei! - your_gpx_file: Lähettämäsi GPX-tiedosto - with_description: ', jonka kuvaus on' - and_the_tags: 'ja seuraavat avainsanat:' - and_no_tags: ja jolla ei tageja. - failure: - subject: '[OpenStreetMap] GPX-tuonti epäonnistui' - failed_to_import: 'epäonnistui tuoda. Tässä virhe:' - more_info_1: Lisätietoja GPX-tuontiongelmista ja miten niitä voi välttää - more_info_2: 'ne löytyvät osoitteesta:' - success: - subject: '[OpenStreetMap] GPX-tuonti onnistui' - loaded_successfully: - one: '%{trace_points} pistettä mahdollisesta 1 pisteestä ladattu onnistuneesti.' - other: ' {trace_points} pistettä mahdollisista %{possible_points} ladattu - onnistuneesti pisteestä.' + gpx_failure: + failed_to_import: 'epäonnistui tuoda. Tässä virhe:' + subject: '[OpenStreetMap] GPX-tuonti epäonnistui' + gpx_success: + loaded_successfully: + one: '%{trace_points} pistettä mahdollisesta 1 pisteestä ladattu onnistuneesti.' + other: ' {trace_points} pistettä mahdollisista %{possible_points} ladattu + onnistuneesti pisteestä.' + subject: '[OpenStreetMap] GPX-tuonti onnistui' signup_confirm: subject: '[OpenStreetMap] Tervetuloa OpenStreetMapiin' greeting: Hei! @@ -1314,29 +1319,16 @@ fi: asioita, jotta pääset alkuun. email_confirm: subject: '[OpenStreetMap] Vahvista sähköpostiosoitteesi' - email_confirm_plain: greeting: Hei, hopefully_you: Joku (toivottavasti sinä) haluaa vaihtaa sähköpostiosoitteen palvelimella %{server_url} osoitteeksi %{new_address} click_the_link: Jos tämä olet sinä, napsauta linkkiä alla vahvistaaksesi muutoksen. - email_confirm_html: - greeting: Hei, - hopefully_you: Joku (toivottavasti sinä) tahtoo muuttaa sähköpostiosoitteensa - sivulla %{server_url} osoitteeksi %{new_address}. - click_the_link: Jos tämä olet sinä, napsauta linkkiä alla vahvistaaksesi muutoksen. lost_password: subject: '[OpenStreetMap] Salasanan vaihtopyyntö' - lost_password_plain: - greeting: Hei! + greeting: Hei, hopefully_you: Joku (mahdollisesti sinä) on pyytänyt tähän sähköpostiosoitteeseen rekisteröidyn openstreetmap.org-tunnuksen salasanan vaihtoa. click_the_link: Jos tämä olet sinä, napsauta linkkiä alla nollataksesi salasanasi. - lost_password_html: - greeting: Hei, - hopefully_you: Tähän sähköpostiosoitteeseen linkitetyn OpenStreetMap.org-käyttäjätilin - salasanaa on pyydetty vaihdettavan. - click_the_link: Jos olet pyytänyt uutta salasanaa, palauta salasanasi napsauttamalla - alapuolella olevaa linkkiä. note_comment_notification: anonymous: Tuntematon käyttäjä greeting: Hei! @@ -2623,6 +2615,7 @@ fi: ehdot thunderforest: Laattojen tekijä Andy Allan + opnvkarte: Laattojen tekijä MeMoMaps hotosm: Laattojen tyylin on tehnyt Humanitarian OpenStreetMap Team ja hostannut OpenStreetMap France diff --git a/config/locales/fit.yml b/config/locales/fit.yml index 184e357d9..5f25d5014 100644 --- a/config/locales/fit.yml +++ b/config/locales/fit.yml @@ -628,17 +628,10 @@ fit: hi: Hei %{to_user}, friendship_notification: hi: Hei %{to_user}, - gpx_notification: - greeting: Hei! - your_gpx_file: Ylöslattaamasi GPX-fiili - with_description: ', jonka kuvvaus oon' - failure: - failed_to_import: 'epäonnistui importeerata. Tässä virhe:' - more_info_1: Lissää tietoja GPX-importeerausongelmista ja miten niitä voi - välttää - more_info_2: 'ne löytyvät atressista:' - success: - subject: '[OpenStreetMap] GPX-importeeraus onnistui' + gpx_failure: + failed_to_import: 'epäonnistui importeerata. Tässä virhe:' + gpx_success: + subject: '[OpenStreetMap] GPX-importeeraus onnistui' signup_confirm: subject: '[OpenStreetMap] Tervetuloa OpenStreetMaphiin' greeting: Hei! @@ -649,19 +642,11 @@ fit: asioita, jotta pääset alkuun. email_confirm: subject: '[OpenStreetMap] Vahvista e-postiatressi' - email_confirm_plain: greeting: Hei, hopefully_you: Joku (toivottavasti sinä) haluaa vaihtaa e-postiatressin palvelimella %{server_url} atressiksi %{new_address} click_the_link: Jos tämä olet sinä, knapauta länkkiä alla vahvistaaksesi muutoksen. - email_confirm_html: - greeting: Hei, - hopefully_you: Joku (toivottavasti sinä) tahtoo muuttaa e-postiatressinsa sivula - %{server_url} atressiksi %{new_address}. - click_the_link: Jos tämä olet sinä, knapauta länkkiä alla vahvistaaksesi muutoksen. - lost_password_plain: - greeting: Hei, - lost_password_html: + lost_password: greeting: Hei, note_comment_notification: anonymous: Tuntematon käyttäjä diff --git a/config/locales/fr.yml b/config/locales/fr.yml index b6b485268..cd16df3a4 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -17,6 +17,7 @@ # Author: Eruedin # Author: EtienneChove # Author: F.rodrigo +# Author: Florian COLLIN # Author: Florimondable # Author: Framafan # Author: Freak2fast4u @@ -69,6 +70,7 @@ # Author: Tuxxic # Author: Urhixidur # Author: Vcalame +# Author: Vega # Author: Verdy p # Author: Wladek92 # Author: Yodaspirine @@ -515,7 +517,8 @@ fr: %{id}. Veuillez vérifier votre orthographe ou la validité du lien que vous avez cliqué. diary_entry: - posted_by_html: Publié par %{link_user} le %{created} en %{language_link} + posted_by_html: Publié par %{link_user} le %{created} en %{language_link}. + updated_at_html: Dernière mise à jour le %{updated}. comment_link: Commenter cette entrée reply_link: Envoyer un message à lâauteur comment_count: @@ -1328,12 +1331,15 @@ fr: "yes": Cours dâeau admin_levels: level2: Frontière de pays + level3: Frontière de région level4: Limite dâÃtat, province ou région level5: Limite de région level6: Limite de département ou province + level7: Limite d'arrondissement level8: Limite communale level9: Limite de village ou arrondissement municipal level10: Limite de quartier + level11: Frontière de voisinage types: cities: Villes towns: Villages @@ -1502,13 +1508,21 @@ fr: hi: Bonjour %{to_user}, header: '%{from_user} a publié un commentaire sur un article récent du journal OpenStreetMap avec le sujet %{subject} :' + header_html: '%{from_user} a commenté sur lâentrée dâagenda de OpenStreetMap + avec le sujet %{subject} :' footer: Vous pouvez également lire le commentaire sur %{readurl}, le commenter sur %{commenturl} ou envoyer un message à l'auteur sur %{replyurl} + footer_html: Vous pouvez aussi lire le commentaire sur %{readurl} et vous pouvez + commenter sur %{commenturl} ou envoyer un message à lâauteur sur %{replyurl} message_notification: - subject_header: '[OpenStreetMap] %{subject}' + subject: '[OpenStreetMap] %{message_title}' hi: Bonjour %{to_user}, header: '%{from_user} vous a envoyé un message depuis OpenStreetMap avec le sujet %{subject} :' + header_html: '%{from_user} vous a envoyé un message via OpenStreetMap avec le + sujet %{subject} :' + footer: Vous pouvez aussi lire le message sur %{readurl} et pouvez envoyer un + message à lâauteur sur %{replyurl} footer_html: Vous pouvez aussi lire le message sur %{readurl} ou envoyer un message à l'auteur sur %{replyurl} friendship_notification: @@ -1516,26 +1530,28 @@ fr: subject: '[OpenStreetMap] %{user} vous a ajouté comme ami' had_added_you: '%{user} vous a ajouté comme ami dans OpenStreetMap.' see_their_profile: 'Vous pouvez voir son profil ici : %{userurl}.' + see_their_profile_html: Vous pouvez voir leur profil sur %{userurl}. befriend_them: 'Vous pouvez également l''ajouter comme ami ici : %{befriendurl}.' - gpx_notification: - greeting: Bonjour, - your_gpx_file: Il semble que votre fichier GPX - with_description: avec la description - and_the_tags: 'et les mots-clés suivants :' - and_no_tags: et sans mot-clé. - failure: - subject: '[OpenStreetMap] Ãchec de lâimport GPX' - failed_to_import: 'nâa pas pu être importé. Voici lâerreur :' - more_info_1: Plus dâinformations sur les échecs dâimport GPX et comment les - éviter - more_info_2: 'peuvent être trouvés sur :' - import_failures_url: https://wiki.openstreetmap.org/wiki/GPX_Import_Failures - success: - subject: '[OpenStreetMap] Import GPX réussi' - loaded_successfully: - one: sâest chargé correctement avec %{trace_points} du point possible. - other: sâest chargé correctement avec %{trace_points} des %{possible_points} - points possibles. + befriend_them_html: Vous pouvez aussi les ajouter comme amis sur %{befriendurl}. + gpx_description: + description_with_tags_html: 'Il ressemble à votre fichier GPX %{trace_name} + avec la description %{trace_description} et les balises suivantes : %{tags}' + description_with_no_tags_html: Cela ressemble à votre fichier GPX %{trace_name} + avec la description %{trace_description} et sans balises + gpx_failure: + hi: Bonjour %{to_user}, + failed_to_import: 'nâa pas pu être importé. Voici lâerreur :' + more_info_html: Vous trouverez plus d'informations sur les échecs d'importation + GPX et comment les éviter à l'adresse %{url}. + import_failures_url: https://wiki.openstreetmap.org/wiki/GPX_Import_Failures + subject: '[OpenStreetMap] Ãchec de lâimport GPX' + gpx_success: + hi: Bonjour %{to_user}, + loaded_successfully: + one: sâest chargé correctement avec %{trace_points} du point possible. + other: sâest chargé correctement avec %{trace_points} des %{possible_points} + points possibles. + subject: '[OpenStreetMap] Import GPX réussi' signup_confirm: subject: '[OpenStreetMap] Bienvenue dans OpenStreetMap' greeting: Bonjour ! @@ -1547,27 +1563,13 @@ fr: supplémentaires pour bien démarrer. email_confirm: subject: '[OpenStreetMap] Confirmation de votre adresse de courriel' - email_confirm_plain: greeting: Bonjour, hopefully_you: Quelquâun (vous, espérons-le) aimerait modifier son adresse de courriel sur %{server_url} en %{new_address}. click_the_link: Si vous êtes à lâorigine de cette demande, cliquez le lien ci-dessous pour confirmer cette modification. - email_confirm_html: - greeting: Bonjour, - hopefully_you: Quelquâun (vous, espérons-le) aimerait changer son adresse de - courriel de %{server_url} en %{new_address}. - click_the_link: Si vous êtes à lâorigine de cette demande, cliquez le lien ci-dessous - pour confirmer cette modification. lost_password: subject: '[OpenStreetMap] Demande de réinitialisation du mot de passe' - lost_password_plain: - greeting: Bonjour, - hopefully_you: Quelquâun (vous, espérons-le) a demandé la réinitialisation du - mot de passe du compte openstreetmap.org associé à cette adresse de courriel. - click_the_link: Si vous êtes à lâorigine de cette demande, cliquez le lien ci-dessous - pour réinitialiser votre mot de passe. - lost_password_html: greeting: Bonjour, hopefully_you: Quelquâun (vous, espérons-le) a demandé la réinitialisation du mot de passe du compte openstreetmap.org associé à cette adresse de courriel. @@ -1582,23 +1584,35 @@ fr: vous vous intéressez' your_note: '%{commenter} a laissé un commentaire sur une de vos notes de carte près de %{place}.' + your_note_html: '%{commenter} a laissé un commentaire sur une de vos notes + de carte près de %{place}.' commented_note: '%{commenter} a laissé un commentaire sur une note de carte que vous avez commentée. La note est proche de %{place}.' + commented_note_html: '%{commenter} a laissé un commentaire sur une note de + carte que vous avez commentée. La note est proche de %{place}.' closed: subject_own: '[OpenStreetMap] %{commenter} a résolu une de vos notes' subject_other: '[OpenStreetMap] %{commenter} a résolu une note à laquelle vous vous intéressez' your_note: '%{commenter} a résolu une de vos notes de carte près de %{place}.' + your_note_html: '%{commenter} a résolu une de vos notes de carte près de %{place}.' commented_note: '%{commenter} a résolu une note de carte que vous avez commentée. La note est proche de %{place}.' + commented_note_html: '%{commenter} a résolu une note de carte que vous avez + commentée. La note est près de %{place}.' reopened: subject_own: '[OpenStreetMap] %{commenter} a réactivé une de vos notes' subject_other: '[OpenStreetMap] %{commenter} a réactivé une note à laquelle vous vous intéressez' your_note: '%{commenter} a réactivé une de vos notes de carte près de %{place}.' + your_note_html: '%{commenter} a réactivé une de vos notes de carte près de + %{place}.' commented_note: '%{commenter} a réactivé une note de carte que vous avez commentée. La note se trouve près de %{place}.' + commented_note_html: '%{commenter} a réactivé une note de carte que vous avez + commentée. La note est près de %{place}.' details: Plus de détails concernant la note se trouvent à %{url}. + details_html: Vous pouvez trouver plus de détails sur la note sur %{url}. changeset_comment_notification: hi: Bonjour %{to_user}, greeting: Bonjour, @@ -1609,13 +1623,22 @@ fr: auquel vous vous intéressez' your_changeset: '%{commenter} a laissé un commentaire le %{time} sur un de vos ensembles de changements' + your_changeset_html: '%{commenter} a laissé un commentaire à %{time} sur un + de vos ensembles de modifications' commented_changeset: '%{commenter} a laissé un commentaire le %{time} sur un ensemble de changements créé par %{changeset_author} et que vous suivez' + commented_changeset_html: '%{commenter} a laissé un commentaire à %{time} + sur un ensemble de modifications que vous suivez créée par %{changeset_author}' partial_changeset_with_comment: avec le commentaire « %{changeset_comment}' » + partial_changeset_with_comment_html: avec le commentaire '%{changeset_comment}' partial_changeset_without_comment: sans commentaire details: Plus de détails sur lâensemble de modifications à %{url}. + details_html: Vous pouvez trouver plus de détails sur lâensemble de modifications + sur %{url}. unsubscribe: Pour vous désabonner des mises à jour de cet ensemble de modifications, visitez %{url} et cliquez sur « Désabonner ». + unsubscribe_html: Pour vous désabonner des mises à jour de cet ensemble de modifications, + visitez %{url} et cliquez sur «â¯Désabonnerâ¯Â». messages: inbox: title: Boîte de réception diff --git a/config/locales/fur.yml b/config/locales/fur.yml index 7b70c8787..94df4520e 100644 --- a/config/locales/fur.yml +++ b/config/locales/fur.yml @@ -726,21 +726,14 @@ fur: had_added_you: '%{user} ti à zontât come amì su OpenStreetMap.' see_their_profile: Tu puedis viodi il sô profîl su %{userurl}. befriend_them: Tu puedis ancje zontâlu/le come amì su %{befriendurl}. - gpx_notification: - greeting: Mandi, - your_gpx_file: Al somee che il to file GPX - with_description: cu la descrizion - and_the_tags: 'e lis etichetis ca sot:' - and_no_tags: e nissune etichete. - success: - subject: '[OpenStreetMap] Impuartazion GPX completade cun sucès' - loaded_successfully: al sedi stât cjamât cun sucès, cun %{trace_points} suntun - totâl di %{possible_points} ponts pussibii. + gpx_success: + loaded_successfully: al sedi stât cjamât cun sucès, cun %{trace_points} suntun + totâl di %{possible_points} ponts pussibii. + subject: '[OpenStreetMap] Impuartazion GPX completade cun sucès' signup_confirm: subject: '[OpenStreetMap] Benvignût in OpenStreetMap' email_confirm: subject: '[OpenStreetMap] Conferme la tô direzion di pueste eletroniche' - email_confirm_plain: click_the_link: Se tu sês propite tu, par plasê frache sul leam ca sot par confermâ il cambiament. note_comment_notification: diff --git a/config/locales/ga.yml b/config/locales/ga.yml index 98bbc47af..80a72e46d 100644 --- a/config/locales/ga.yml +++ b/config/locales/ga.yml @@ -1075,22 +1075,13 @@ ga: see_their_profile: Is féidir leat a p(h)róifÃl a fheiceáil ag %{userurl}. befriend_them: Is féidir an duine sin a chur ar liosta na gcairde atá agatsa ag %{befriendurl}. - gpx_notification: - greeting: Haigh, - your_gpx_file: An comhad GPX sin a bhà agat - with_description: a bhfuil an cur sÃos seo ag gabháil leis - and_the_tags: 'agus na clibeanna seo a leanas:' - and_no_tags: agus clib ar bith. - failure: - subject: '[OpenStreetMap] Theip ar Iompórtáil GPX' - failed_to_import: ', theip ar an iompórtáil. Seo an earráid:' - more_info_1: Is féidir tuilleadh eolais maidir le teipeanna ar iompórtálacha - GPX agus conas - more_info_2: 'iad a sheachaint a fháil ag:' - success: - subject: '[OpenStreetMap] Iompórtáladh an GPX' - loaded_successfully: ', lódáladh é gan fhadhb le %{trace_points} as %{possible_points} - pointe féideartha.' + gpx_failure: + failed_to_import: ', theip ar an iompórtáil. Seo an earráid:' + subject: '[OpenStreetMap] Theip ar Iompórtáil GPX' + gpx_success: + loaded_successfully: ', lódáladh é gan fhadhb le %{trace_points} as %{possible_points} + pointe féideartha.' + subject: '[OpenStreetMap] Iompórtáladh an GPX' signup_confirm: subject: '[OpenStreetMap] Fáilte go OpenStreetMap' greeting: A chara, @@ -1102,28 +1093,13 @@ ga: duit le go mbeidh tú in ann tosú amach. email_confirm: subject: '[OpenStreetMap] Do sheoladh rÃomhphoist a dheimhniú' - email_confirm_plain: greeting: A chara, hopefully_you: Is mian le duit éigin (tusa, tá súil againn), a s(h)eoladh rÃomhphoist ag %{server_url} a athrú go %{new_address}. click_the_link: Más tusa atá ann, cliceáil ar an nasc thÃos chun an t-athrú a dheimhniú. - email_confirm_html: - greeting: A chara, - hopefully_you: Is mian le duit éigin (tusa, tá súil againn) a s(h)eoladh rÃomhphoist - ag %{server_url} a athrú go %{new_address}. - click_the_link: Más tusa atá ann, cliceáil ar an nasc thÃos chun an t-athrú - a dheimhniú. lost_password: subject: '[OpenStreetMap] Iarratas ar athshocrú pasfhocail' - lost_password_plain: - greeting: A chara, - hopefully_you: D'iarr duine éigin (tusa, b'fhéidir) go ndéanfaà an pasfhocal - a athshocrú ar an gcuntas openstreetmap.org atá ceangailte leis an seoladh - rÃomhphoist seo. - click_the_link: Más tusa a bhà ann, cliceáil ar an nasc thÃos chun do phasfhocal - a athshocrú. - lost_password_html: greeting: A chara, hopefully_you: D'iarr duine éigin (tusa, b'fhéidir) go ndéanfaà an pasfhocal a athshocrú ar an gcuntas openstreetmap.org atá ceangailte leis an seoladh diff --git a/config/locales/gd.yml b/config/locales/gd.yml index 93eff88b6..1e3cf3b29 100644 --- a/config/locales/gd.yml +++ b/config/locales/gd.yml @@ -975,7 +975,6 @@ gd: beachd agad fhèin a chur ris air %{commenturl} no freagairt a sgrìobhadh air %{replyurl}' message_notification: - subject_header: '[OpenStreetMap] %{subject}' hi: Shin thu, %{to_user}, header: 'Chuir %{from_user} teachdaireachd thugad slighe OpenStreetMap air a bheil an cuspair "%{subject}":' @@ -988,24 +987,15 @@ gd: air %{userurl}.' befriend_them: '''S urrainn dhut an neach ud a a chur ''nad caraid ris air %{befriendurl} cuideachd.' - gpx_notification: - greeting: Shin thu, - your_gpx_file: Tha coltas - with_description: nach deach leinn am faidhle GPX agad air a bheil an tuairisgeul - and_the_tags: 'agus na tagaichean a leanas:' - and_no_tags: agus air nach eil taga - failure: - subject: '[OpenStreetMap] Dh''fhà illig le ion-phortadh GPX' - failed_to_import: 'ion-phortachadh. Seo a'' mhearachd:' - more_info_1: Gheibh thu barrachd fiosrachaidh air duilgheadasan le ion-phortadh - GPX agus air mar a sheachnas tu - more_info_2: 'iad air:' - import_failures_url: http://wiki.openstreetmap.org/wiki/GPX_Import_Failures - success: - subject: '[OpenStreetMap] Shoirbhich le ion-phortadh GPX' - loaded_successfully: gun deach am faidhle GPX agad a luchdachadh gu soirbheachail - le %{trace_points} a-mach à s an uiread de %{possible_points} p(h)uing(ean) - a ghabhas. + gpx_failure: + failed_to_import: 'ion-phortachadh. Seo a'' mhearachd:' + import_failures_url: http://wiki.openstreetmap.org/wiki/GPX_Import_Failures + subject: '[OpenStreetMap] Dh''fhà illig le ion-phortadh GPX' + gpx_success: + loaded_successfully: gun deach am faidhle GPX agad a luchdachadh gu soirbheachail + le %{trace_points} a-mach à s an uiread de %{possible_points} p(h)uing(ean) + a ghabhas. + subject: '[OpenStreetMap] Shoirbhich le ion-phortadh GPX' signup_confirm: subject: '[OpenStreetMap] Fà ilte gu OpenStreetMap' greeting: Shin thu! @@ -1018,13 +1008,6 @@ gd: fiosrachaidh dhut ach am bi e nas fhasa dhut tòiseachadh. email_confirm: subject: '[OpenStreetMap] Dearbhaich an seòladh puist-d agad' - email_confirm_plain: - greeting: Shin thu, - hopefully_you: Tha cuideigin (an dòchas gur e tusa a th' ann) airson an seòladh - puist-d agad atharrachadh gu %{new_address} air %{server_url}. - click_the_link: Mas e tusa a th' ann, briog air a' cheangal gu h-ìosal gus an - atharrachadh a dhearbhadh. - email_confirm_html: greeting: Shin thu, hopefully_you: Tha cuideigin (an dòchas gur e tusa a th' ann) airson an seòladh puist-d agad atharrachadh gu %{new_address} air %{server_url}. @@ -1032,14 +1015,6 @@ gd: atharrachadh a dhearbhadh. lost_password: subject: '[OpenStreetMap] Chaidh ath-shuidheachadh air facal-faire iarraidh' - lost_password_plain: - greeting: Shin thu, - hopefully_you: Dh'iarr cuideigin (an dòchas gur e tusa a bh' ann) gun dèid am - facal-faire agad atharrachadh airson cunntas an t-seòlaidh phuist-d seo air - openstreetmap.org. - click_the_link: Mas e tusa a bh' ann, briog air a' cheangal gu h-ìosal gus am - facal-faire agad ath-shuidheachadh. - lost_password_html: greeting: Shin thu, hopefully_you: Dh'iarr cuideigin (an dòchas gur e tusa a bh' ann) gun dèid am facal-faire agad atharrachadh airson cunntas an t-seòlaidh phuist-d seo air diff --git a/config/locales/gl.yml b/config/locales/gl.yml index b09a47ff7..1bb16eef2 100644 --- a/config/locales/gl.yml +++ b/config/locales/gl.yml @@ -1447,7 +1447,6 @@ gl: footer: Tamén podes ler o comentario en %{readurl} e comentar en %{commenturl} ou enviar unha mensaxe ó autor en %{replyurl} message_notification: - subject_header: '[OpenStreetMap] %{subject}' hi: 'Ola %{to_user}:' header: '%{from_user} envioulle unha mensaxe a través do OpenStreetMap co asunto "%{subject}":' @@ -1459,23 +1458,15 @@ gl: had_added_you: '%{user} engadiuno coma amizade no OpenStreetMap.' see_their_profile: Podes ollar o seu perfil en %{userurl}. befriend_them: Tamén pode engadilo coma amizade no %{befriendurl}. - gpx_notification: - greeting: 'Ola:' - your_gpx_file: Semella que o teu ficheiro GPX - with_description: coa descrición - and_the_tags: 'e coas seguintes etiquetas:' - and_no_tags: e sen etiquetas. - failure: - subject: '[OpenStreetMap] Importación GPX errónea' - failed_to_import: 'erro ao importar. Velaquà atópase o erro:' - more_info_1: Máis información sobre os erros de importación GPX e como evitalos - more_info_2: 'pódense atopar en:' - import_failures_url: https://wiki.openstreetmap.org/wiki/GPX_Import_Failures - success: - subject: '[OpenStreetMap] Importación GPX correcta' - loaded_successfully: - one: cargado con %{trace_points} de entre un 1 punto posÃbel. - other: cargado con %{trace_points} de entre %{possible_points} puntos posÃbeis. + gpx_failure: + failed_to_import: 'erro ao importar. Velaquà atópase o erro:' + import_failures_url: https://wiki.openstreetmap.org/wiki/GPX_Import_Failures + subject: '[OpenStreetMap] Importación GPX errónea' + gpx_success: + loaded_successfully: + one: cargado con %{trace_points} de entre un 1 punto posÃbel. + other: cargado con %{trace_points} de entre %{possible_points} puntos posÃbeis. + subject: '[OpenStreetMap] Importación GPX correcta' signup_confirm: subject: '[OpenStreetMap] Dámoslle a benvida ao OpenStreetMap' greeting: Boas! @@ -1486,25 +1477,12 @@ gl: adicional coma axuda para comezar. email_confirm: subject: '[OpenStreetMap] Confirma o teu enderezo de correo electrónico' - email_confirm_plain: - greeting: 'Ola:' - hopefully_you: Alguén (se cadra ti) quere mudar o teu enderezo de correo electrónico - en %{server_url} a %{new_address}. - click_the_link: Se este es ti, preme na seguinte ligazón para confirmar a modificación. - email_confirm_html: greeting: 'Ola:' hopefully_you: Alguén (se cadra ti) quere mudar o teu enderezo de correo electrónico en %{server_url} a %{new_address}. click_the_link: Se este es ti, preme na seguinte ligazón para confirmar a modificación. lost_password: subject: '[OpenStreetMap] Solicitude de restablecemento do contrasinal' - lost_password_plain: - greeting: 'Ola:' - hopefully_you: Alguén (se cadra ti) pediu o restabelecemento do contrasinal - desta conta de correo electrónico en openstreetmap.org. - click_the_link: Se este es ti, preme na seguinte ligazón para restabelecer o - teu contrasinal. - lost_password_html: greeting: 'Ola:' hopefully_you: Alguén (se cadra ti) pediu o restabelecemento do contrasinal desta conta de correo electrónico en openstreetmap.org. diff --git a/config/locales/he.yml b/config/locales/he.yml index 4d3e82756..69aefcef7 100644 --- a/config/locales/he.yml +++ b/config/locales/he.yml @@ -25,6 +25,7 @@ # Author: YaronSh # Author: Yona b # Author: Ypnypn +# Author: Zstadler # Author: ×××ר ×× # Author: ×שר×× ×§×ר # Author: × ×× ×¡ @@ -54,8 +55,8 @@ he: create: ר×ש×× update: ×¢×××× redaction: - create: ×צ×רת ××ת×× - update: ש××רת ××ת×× + create: ×צ×רת ××¡×¨× + update: ש××רת ××¡×¨× trace: create: ××¢××× update: ש××רת ש×× ×××× @@ -66,7 +67,7 @@ he: errors: messages: invalid_email_address: ××ת ××× × ×ת××ת ××××´× ×ª×§× ×ת - email_address_not_routable: ××× ×פשר×ת ××××ת ×ס××× + email_address_not_routable: ×× ×פשר ××צ×ר × ×ª×× models: acl: רש××ת ×קרת ×××©× changeset: ער×ת ש×× ×××× @@ -75,46 +76,46 @@ he: diary_comment: ת×××× ××××× diary_entry: רש××× ××××× friend: ××ר - issue: ס×××× + issue: ××××× language: ×©×¤× message: ××××¢× node: × ×§××× - node_tag: ×ª× ×פרק - notifier: ×××××¢ + node_tag: ×ª× ×©× × ×§××× + notifier: ×תר××¢ old_node: × ×§××× ××©× × - old_node_tag: ×ª× ×פרק ××©× + old_node_tag: ×ª× ×©× × ×§××× ××©× × old_relation: ××ס ××©× old_relation_member: ×××ר ××ס ××©× old_relation_tag: ×ª× ××ס ××©× - old_way: ××¨× ××©× × - old_way_node: × ×§××ת ××¨× ××©× × - old_way_tag: ×ª× ××¨× ××©× × + old_way: ×§× ××©× + old_way_node: × ×§××ת ×§× ××©× × + old_way_tag: ×ª× ×§× ××©× relation: ××ס relation_member: ×××ר ××ס relation_tag: ×ª× ××ס - report: ××××× + report: ××× session: ש×× - trace: ×ס××× - tracepoint: × ×§××ת ×ס××× - tracetag: ×ª× ×ס××× + trace: ×ק××× + tracepoint: × ×§××ת ×ק××× + tracetag: ×ª× ×ק××× user: ×שת×ש - user_preference: ××¢×פת ××שת×ש + user_preference: ××¢×פ×ת ×שת×ש user_token: ×ס×××× ×שת×ש - way: ××¨× - way_node: × ×§××ת ××¨× - way_tag: ×ª× ××¨× + way: ×§× + way_node: × ×§××× ×©× ×§× + way_tag: ×ª× ×§× attributes: client_application: name: ×©× (× ×רש) url: ×ת××ת ××ש×× ×¨×ש×ת (× ×רש) - callback_url: ×ת××ת קר××× (callback) + callback_url: ×ת××ת קר××× ×××רת (callback) support_url: ×ת××ת ×ת×××× allow_read_prefs: ×קר×× ×ת ××¢×פ×ת ××שת×ש ש××× allow_write_prefs: ××©× ×ת ×ת ××¢×פ×ת ××שת×ש ש××× allow_write_diary: ××צ×ר רש×××ת ×××××, ×ער×ת ×××צ×ר ××ר×××ת allow_write_api: ××©× ×ת ×ת ×××¤× - allow_read_gpx: ×קר×× ×ת ×ס×××× ×Ö¾GPS ×פר×××× ×©××× - allow_write_gpx: ×××¢××ת ×ס×××× GPS + allow_read_gpx: ×קר×× ×ת ×ק×××ת ×Ö¾GPS ×פר×××ת ש××× + allow_write_gpx: ×××¢××ת ×ק×××ת GPS allow_write_notes: ××©× ×ת ×ער×ת diary_comment: body: ×××£ @@ -138,7 +139,7 @@ he: description: ת×××ר gpx_file: ××¢××ת ק×××¥ GPX visibility: × Ö´×¨××ּת - tagstring: ת×××ת + tagstring: ת××× message: sender: ש××× title: × ××©× @@ -146,7 +147,7 @@ he: recipient: × ××¢× report: category: × × ××××ר ×ת ×ס××× ×××××× ×©×× - details: × × ×ספק פר××× ×¢× ×××¢×× (× ×רש). + details: × × ×ספק פר××× × ×ספ×× ×¢× ×××¢×× (× ×רש). user: email: ××××´× active: פע×× @@ -154,58 +155,73 @@ he: description: ת×××ר languages: שפ×ת pass_crypt: ס×ס×× - pass_crypt_confirmation: ××××ת סס×× + pass_crypt_confirmation: ××××ת ס×ס×× help: trace: tagstring: ×××¤×¨× ×פס×ק×× datetime: distance_in_words_ago: about_x_hours: - one: ××¤× × ××¢×¨× ×©×¢× - two: ××¤× × ××¢×¨× ×©×¢×ª××× - many: ××¤× × ××¢×¨× %{count} שע×ת - other: ××¤× × ××¢×¨× %{count} שע×ת + one: ××¤× × ×©×¢× ××¢×¨× + two: ××¤× × ×©×¢×ª××× ××¢×¨× + many: ××¤× × %{count} שע×ת ××¢×¨× + other: ××¤× × %{count} שע×ת ××¢×¨× about_x_months: - one: ××¤× × ××¢×¨× ×××ש - two: ××¤× × ××¢×¨× ×××ש××× - other: ××¤× × ××¢×¨× %{count} ×××ש×× + one: ××¤× × ×××ש ××¢×¨× + two: ××¤× × ×××ש××× ××¢×¨× + many: ××¤× × %{count} ×××ש×× ××¢×¨× + other: ××¤× × %{count} ×××ש×× ××¢×¨× about_x_years: - one: ××¤× × ××¢×¨× ×©× × - two: ××¤× × ××¢×¨× ×©× ×ª××× - other: ××¤× × ××¢×¨× %{count} ×©× ×× + one: ××¤× × ×©× × ××¢×¨× + two: ××¤× × ×©× ×ª××× ××¢×¨× + many: ××¤× × %{count} ×©× ×× ××¢×¨× + other: ××¤× × %{count} ×©× ×× ××¢×¨× almost_x_years: one: ××¤× × ×××¢× ×©× × two: ××¤× × ×××¢× ×©× ×ª××× + many: ××¤× × ×××¢× %{count} ×©× ×× other: ××¤× × ×××¢× %{count} ×©× ×× half_a_minute: ××¤× × ××¦× ××§× less_than_x_seconds: one: ××¤× × ×¤××ת ××©× ××× + two: ××¤× × ×¤××ת ×Ö¾%{count} ×©× ××ת + many: ××¤× × ×¤××ת ×Ö¾%{count} ×©× ××ת other: ××¤× × ×¤××ת ×Ö¾%{count} ×©× ××ת less_than_x_minutes: one: ××¤× × ×¤××ת ×××§× + two: ××¤× × ×¤××ת ×Ö¾%{count} ×ק×ת + many: ××¤× × ×¤××ת ×Ö¾%{count} ×ק×ת other: ××¤× × ×¤××ת ×Ö¾%{count} ×ק×ת over_x_years: one: ××¤× × ×××¢×× ××©× × two: ××¤× × ×××¢×× ××©× ×ª××× + many: ××¤× × ×××¢×× ×Ö¾%{count} ×©× ×× other: ××¤× × ×××¢×× ×Ö¾%{count} ×©× ×× x_seconds: one: ××¤× × ×©× ××× + two: ××¤× × %{count} ×©× ××ת + many: ××¤× × %{count} ×©× ××ת other: ××¤× × %{count} ×©× ××ת x_minutes: one: ××¤× × ××§× + two: ××¤× × %{count} ×ק×ת + many: ××¤× × %{count} ×ק×ת other: ××¤× × %{count} ×ק×ת x_days: one: ×ת××× two: ש×ש×× + many: ××¤× × %{count} ×××× other: ××¤× × %{count} ×××× x_months: one: ××¤× × ×××ש two: ××¤× × ×××ש××× + many: ××¤× × %{count} ×××ש×× other: ××¤× × %{count} ×××ש×× x_years: one: ××¤× × ×©× × two: ××¤× × ×©× ×ª××× - other: ××¤× × ××¢×¨× %{count} ×©× ×× + many: ××¤× × %{count} ×©× ×× + other: ××¤× × %{count} ×©× ×× printable_name: with_name_html: '%{name} (%{id})' editor: @@ -229,7 +245,7 @@ he: google: ×××× facebook: פ××ס××ק windowslive: Windows Live - github: GitHub + github: ×××××× wikipedia: ××ק×פ××× api: notes: @@ -244,12 +260,12 @@ he: reopened_at_by_html: ××פע×× ×××ש %{when} ×¢×Ö¾××× %{user} rss: title: ×ער×ת ×©× OpenStreetMap - description_area: רש××ת ×ער×ת ש××ספ×, ש×תק××× ×¢×××× ×ער×ת ××©× ××××¨× ××××ר ש×× + description_area: רש××ת ×ער×ת ש××ספ×, ש×תק××× ×¢×××× ×ער×ת ××©× ×¤×ª×¨× ××××ר ש×× [(%{min_lat}|%{min_lon}) â (%{max_lat}|%{max_lon})] description_item: ××× ×ª rss ×¢××ר ×××¢×¨× %{id} opened: ××¢×¨× ×××©× (××× %{place}) commented: ת×××× ×××©× (××× %{place}) - closed: ××¢×¨× ×¡×××¨× (××× %{place}) + closed: ××¢×¨× ×¤×ª××¨× (××× %{place}) reopened: ××¢×¨× ×©××פע×× ×××ש (××× %{place}) entry: comment: ת×××× @@ -286,15 +302,15 @@ he: title: 'ער×ת ש×× ××××: %{id}' belongs_to: ××צר node: × ×§×××ת (%{count}) - node_paginated: ×פרק×× (%{x}â%{y} ×ת×× %{count}) - way: ×ר××× (%{count}) - way_paginated: ×ר××× (%{x}â%{y} ×ת×× %{count}) + node_paginated: × ×§×××ת (%{x}â%{y} ×ת×× %{count}) + way: ק×××× (%{count}) + way_paginated: ק×××× (%{x}â%{y} ×ת×× %{count}) relation: ××ס×× (%{count}) relation_paginated: ××ס×× (%{x}â%{y} ×ת×× %{count}) comment: ×ער×ת (%{count}) hidden_commented_by_html: ××¢×¨× ××סתרת ××שת×ש %{user} %{when} commented_by_html: ××¢×¨× ××שת×ש %{user} %{when} - changesetxml: XML ×©× ×¢×¨×ת ש×× ×××× + changesetxml: XML ×©× ×¢×¨×ת ×ש×× ×××× osmchangexml: osmChange XML feed: title: ער×ת ש×× ×××× %{id} @@ -304,10 +320,10 @@ he: still_open: ער×ת ×ש×× ×××× ×¢×××× ×¤×ª××× â ××××× ×××¤×ª× ×××¨× ×©×¢×¨×ת ×ש×× ××× ×ª×ס×ר. node: title_html: '× ×§×××: %{name}' - history_title_html: '××ס××ר××ת ×צ××ת: %{name}' + history_title_html: '××ס××ר××ת ×× ×§×××: %{name}' way: - title_html: '×ר×: %{name}' - history_title_html: '××ס××ר××ת ××ר×: %{name}' + title_html: 'ק×: %{name}' + history_title_html: '××ס××ר××ת ×ק×: %{name}' nodes: × ×§×××ת nodes_count: one: × ×§××× ××ת @@ -315,7 +331,9 @@ he: many: '%{count} × ×§×××ת' other: '%{count} × ×§×××ת' also_part_of_html: - one: ××ק ×××¨× %{related_ways} + one: ××ק ×ק×%{related_ways} + two: ××ק ×××ר××× %{related_ways} + many: ××ק ×××ר××× %{related_ways} other: ××ק ×××ר××× %{related_ways} relation: title_html: '××ס: %{name}' @@ -330,33 +348,32 @@ he: entry_role_html: '%{type} %{name} ×ת×ר %{role}' type: node: × ×§××× - way: ××¨× + way: ×§× relation: ××ס containing_relation: entry_html: ××ס %{relation_name} entry_role_html: ××ס %{relation_name} (×ת×ר %{relation_role}) not_found: title: ×× × ××¦× - sorry: ×× × ××ª× ×¦×××, ×× ×ס×× %{type} ××¢× ××××× %{id} ×× × ×צ×. + sorry: ×× × ××ª× ×¦×××, ×× ×× ×צ×× × %{type} ×ספר %{id}. type: node: × ×§××× - way: ××¨× + way: ×§× relation: ××ס changeset: ער×ת ש×× ×××× note: ××¢×¨× timeout: title: ש×××ת ××× ×××§×¦× - sorry: ×× × ××ª× ×¦×××, ×× ××¢×× ×ª ×ת××× ×¢××ר ×%{type} ×¢× ××××× %{id}, ×ר×× ××× ×¨× - ×××. + sorry: ×× × ××ª× ×¦×××, ×× ××¢×× ×ª ×××××¢ ×¢××ר %{type} ×ספר %{id}, ×ר×× ××× ×¨× ×××. type: node: × ×§××× - way: ××¨× + way: ×§× relation: קשר changeset: ער×ת ש×× ×××× note: ××¢×¨× redacted: - redaction: ××ת×× %{id} - message_html: '×× × ××ª× ××צ×× ×ת ×××¨×¡× %{version} ×©× %{type} ×××××× ×©××× × ×ת××. + redaction: ××¡×¨× %{id} + message_html: '×× × ××ª× ××צ×× ×ת ×××¨×¡× %{version} ×©× %{type} ×××××× ×©××× ××סר×. ×××××¢ × ×סף: %{redaction_link}.' type: node: × ×§××× @@ -398,7 +415,7 @@ he: title: ש×××תת ×ש×××ת introduction: ×ש ×××××¥ ×¢××××¤× ××× ××צ×× ×ש×××ת ×ס××××. nearby: ×ש×××ת ×ס×××× - enclosing: ×ש×××ת ס××××ת + enclosing: ×ש×××ת ×××××ת changesets: changeset_paging_nav: showing_page: ×××£ %{page} @@ -410,7 +427,7 @@ he: view_changeset_details: ×צ×ת פר×× ×¢×¨×ת ש×× ×××× changesets: id: ×××× - saved_at: × ×©××¨× ×ª×ת + saved_at: × ×©××¨× × user: ×שת×ש comment: ××¢×¨× area: ש×× @@ -479,7 +496,8 @@ he: body: ×¢×××× ××× ×¨×©××ת ×××× ×× ×ª×××× ×¢× ××××× %{id}. ×××× ××××ת ×× × ××× ××××× ××צת ×¢× ×§×ש×ר ש×××, ×¢×× ×ס××××. diary_entry: - posted_by_html: פ××¨×¡× ×¢×Ö¾××× %{link_user} ×Ö¾%{created} ×%{language_link} + posted_by_html: פ××¨×¡× ×¢×Ö¾××× %{link_user} ×Ö¾%{created} ×%{language_link}. + updated_at_html: ×¢×××× ×××ר×× × ×Ö¾%{updated}. comment_link: ×ער×ת ×רש××× ×××ת reply_link: ש×××ת ת×××× ××××ר comment_count: @@ -523,13 +541,13 @@ he: heading: ×××ס××£ ×ת %{user} ×ת×ר ××ר? button: ×××ס××£ ×××ר success: '%{name} ××ר ש×× ×¢×ש××!' - failed: ס××××, ××ספת %{name} ×××ר × ×ש××. + failed: ×צ×ער××, ××ספת %{name} ×××ר × ×ש××. already_a_friend: '%{name} ××ר ××ר ש××.' remove_friend: heading: ××ס×ר ×ת %{user} ×רש××ת ×××ר××? button: ××ס×ר ×רש××ת ×××ר×× success: '%{name} ××סר ×רש××ת ×××ר×× ×©××.' - not_a_friend: '%{name} ×× ××× ××××ר×× ×©××.' + not_a_friend: '%{name} ××× × ××× ××××ר×× ×©××.' geocoder: search: title: @@ -547,29 +565,30 @@ he: cable_car: ר××× chair_lift: ××¢××ת ×¡×§× ××ש××× drag_lift: ××¢××ת ×¡×§× ××ר××¨× - gondola: ר××× ××× ×××× + gondola: ר××× magic_carpet: ×ס××¢ ×¡×§× - platter: ××¢××ת צ××ת - pylon: פ×××× + platter: ××¢××ת ×¡×§× ××ר×רת צ××ת + pylon: ×¢××× ×¨××× station: ת×× ×ª ר××× - t-bar: ××¢××ת ××Ö¾×ר - "yes": ×××××¨× + t-bar: ××¢××ת ×¡×§× ××Ö¾×ר + "yes": ר××× ×××× aeroway: - aerodrome: ×× ×ת + aerodrome: ש×× ×ª×¢××¤× airstrip: ×Ö´× ×ת - apron: ר××ת ×× ×× + apron: ר××ת ×× ××ת ×××ס×× gate: שער hangar: ×××¡× ×××ס×× helipad: ×× ×ת ×ס×ק×× holding_position: ××ק×× ××××§× navigationaid: ×¢×ר × ×××× ×××××¨× - parking_position: ××ק×× ×× ×× + parking_position: ×¢××ת ×× ×× runway: ×ס××× ××ר×× - taxiway: ×ס××× × ×¡×עת ×××ס + taxilane: × ×ª×× ××¡×¢× + taxiway: ×ס××× ××¡×¢× terminal: ×ס××£ windsock: שר××× ×¨×× amenity: - animal_boarding: ×¤× ×¡××× + animal_boarding: ×¤× ×¡××× ××××ת animal_shelter: ××ת ×××¡× ××××ת arts_centre: ×ר×× ××× ×××ת atm: ×ספ××× @@ -610,32 +629,32 @@ he: fast_food: ×××× ×××ר ferry_terminal: ×ס××£ ××¢××רת fire_station: ת×× ×ª ××××× ×ש - food_court: ×××ר ×××× ×××ר + food_court: ×ת×× ×××× ×××ר fountain: ×××¨×§× fuel: ××ק gambling: ××××ר×× grave_yard: ××ת ק×ר×ת - grit_bin: grit bin + grit_bin: ×ר×× ××× ××××ש hospital: ××ת ××××× - hunting_stand: תצפ×ת צ××××× + hunting_stand: ×¢××ת צ××××× ice_cream: ××××× - internet_cafe: ××× ××¨× × ×§×¤× + internet_cafe: ×§×¤× ××× ××¨× × kindergarten: ×× ××××× language_school: ××ת ספר ×שפ×ת library: ספר××× - loading_dock: רצ××£ תפע××× + loading_dock: רצ××£ ××¢××¡× love_hotel: ×××× ×××× marketplace: ש×ק - mobile_money_agent: ס××× × ×× ×§××ת ×ר××ק×× + mobile_money_agent: ס××× ×ª×©××××× ×× ××× monastery: ×× ×ר - money_transfer: ××¢×רת ×סף + money_transfer: ××¢×רת ×ספ×× motorcycle_parking: ×× ××ת ×××¤× ××¢×× music_school: ××ת ספר ××××××§× nightclub: ×××¢××× ×××× nursing_home: ××ת ×××ת parking: ×× ×× parking_entrance: ×× ××¡× ××× ×× - parking_space: ××× ×× ×× + parking_space: ×¢××ת ×× ×× payment_terminal: ×ס××£ תש××× pharmacy: ××ת ×רק×ת place_of_worship: ×ק×× ×¤×××× @@ -644,10 +663,10 @@ he: post_office: ×¡× ××£ ×××ר prison: ××× pub: פ×× - public_bath: ×ק××ת צ×××ר×ת + public_bath: ×ר××¥ צ××××¨× public_bookcase: ספר××× ××¢××¨× public_building: ××× × ×¦×××ר - ranger_station: ת×× ×ª ×פק××× + ranger_station: ת×× ×ª פק××× recycling: × ×§××ת ×××××ר restaurant: ×סע×× sanitary_dump_station: ת×× ×ª ר×ק×× ×¤×¡××ת @@ -655,7 +674,7 @@ he: shelter: ×××¡× shower: ×ק××ת social_centre: ×ר×× ×××¨×ª× - social_facility: ××ª×§× ×××¨×ª× + social_facility: ש×ר×ת×× ××רת××× studio: ס××××× swimming_pool: ×רֵ×ת ש×××× taxi: ××× ×ת @@ -668,10 +687,10 @@ he: vehicle_inspection: ×××קת ××× ×¨×× vending_machine: ×××× ×ª ××××¨× veterinary: ×רפ×× ××ר×× ×¨×ת - village_hall: ×××× ××פר + village_hall: ××ת ××¢× waste_basket: ×¤× ××©×¤× waste_disposal: ××פ×× ×פס××ת - waste_dump_site: ×תר ×ש××ת פס××ת + waste_dump_site: ×תר ××ס××£ פס××ת watering_place: ש×קת water_point: × ×§××ת ××× weighbridge: ×××× × ×שר @@ -681,58 +700,58 @@ he: administrative: ×××× ×©×× ×©×פ×× census: ×××× ××¤×§× ×××××ס×× national_park: פ×רק ××××× - political: ×××× ××××¨× ××××¨× + political: ×××× ×××ר ××××¨× protected_area: ×××ר ×××× "yes": ×××× bridge: aqueduct: ××ת ××× - boardwalk: ××ר×× + boardwalk: ש××× ×¦×£ suspension: ×שר ת××× swing: ×שר ס××× - viaduct: ×××× + viaduct: ×שר ×¢××××× "yes": ×שר building: apartment: ×××¨× - apartments: ×ת×× ××ר×ת + apartments: ××ת ××ר×ת barn: ××¡× bungalow: ××× ××× cabin: ××§×ª× chapel: קפ×× church: ×× ××× ×× ×¡××× - civic: ×× ××× ××ר×× + civic: ×× ××× ×¦××××¨× college: ×× ××× ××××× commercial: ×× ××× ×ס××¨× construction: ×× ××× ××× ××× detached: ××ת פר×× dormitory: ××¢×× ×ת - duplex: ××רת ××פ×קס + duplex: ××ת ××פ×קס farm: ××ת ×××× - farm_auxiliary: ××ת ×××× ××× ×ª×ש××× - garage: ×××¡× - garages: ×ת×× ×××¡× ×× + farm_auxiliary: ×× ××× ×× ××××©× ××××× + garage: ×× ×× + garages: ×× ××ת greenhouse: ×××× hangar: ×× ××ר hospital: ××ת ××××× hotel: ×× ××× ×××× house: ××ת - houseboat: ××ת ×¢× ×¡××¨× + houseboat: ××ת ס××¨× hut: צר××£ industrial: ×× ××× ×ª×¢×©×××ª× kindergarten: ××× × ×× ××××× - manufacture: ×× ××× ×ª×¢×©××× + manufacture: ××× × ×ª×¢×©××× office: ×× ××× ×שר××× public: ×× ××× ×¦××××¨× residential: ×× ××× ×××ר×× - retail: ×× ××× ×ס××¨× + retail: ××× × ×ס××¨× roof: ×× - ruins: ×× ××× ×ר×ס + ruins: ××ר×× school: ××ת ספר semidetached_house: ××Ö¾×שפ××ª× service: ×× ××× ×©×ר×ת - shed: ×××¡× + shed: צר××£ stable: ××ר××× static_caravan: קר×××× - temple: ×× ××× ×ק×ש + temple: ×ק×ש terrace: ×× ××× ××××¨× train_station: ×× ××× ×ª×× ×ª ר××ת university: ××× ××רס××× @@ -756,8 +775,8 @@ he: glaziery: ××× handicraft: ××××ת ×× hvac: ת×× ×× ××××× ××××ר - metal_construction: ספק ×ת×ת - painter: צ××ר + metal_construction: ×ר×× ×× ××× + painter: צַ×Ö¸Ö¼×¢ photographer: צ×× plumber: שר××¨× roofer: ××× @@ -772,10 +791,10 @@ he: access_point: × ×§××ת ×××©× ambulance_station: ת×× ×ª ×××××× ×¡×× assembly_point: × ×§××ת ×ת×ספ×ת - defibrillator: ××¤×¢× + defibrillator: ××¤×¢× (×פ××ר××××ר) fire_xtinguisher: ×××¤× fire_water_pond: ×××ר ××× ×××××× ×ש - landing_site: ×תר × ××תת ××ר×× + landing_site: ×תר × ×××ª× ×××ר×× life_ring: ×××× ×צ×× phone: ××פ×× ××ר×× siren: צ×פר ××ר×× @@ -785,35 +804,35 @@ he: highway: abandoned: ×××ש × ××ש bridleway: ש××× ×¢××ר ס×ס×× - bus_guideway: × ×ª×× ×ª××××¨× ×¦×××ר×ת ××× ××ת + bus_guideway: × ×ª×× ×ª××××¨× ×¦×××ר×ת ×××ר×ת bus_stop: ת×× ×ª ××××××ס - construction: ×××ש ×××ר ××× ××× + construction: ××¨× ××× ××× corridor: פר××××ר cycleway: × ×ª×× ×××¤× ××× elevator: ××¢××ת - emergency_access_point: × ×§××ת ×××©× ×ש×ר××ª× ××ר×× + emergency_access_point: × ×§××ת צ××× ×××ר×× emergency_bay: ×פרץ ×××××ת - footway: ש××× ×××××× ×¨×× - ford: ××¢××¨× ×× ×× - give_way: ת×ר×ר ×ª× ×××ת ק×××× - living_street: ר××× ×××ר×× + footway: × ×ª×× ×××××× ×¨×× + ford: ×שר ×××¨× + give_way: ת×ר×ר ××ª× ×××ת ק×××× + living_street: ר××× ×××× ×× milestone: ××× ××¨× - motorway: ×××ש - motorway_junction: צ××ת ×××ש×× - motorway_link: ×××ש ×××× ××ת - passing_place: ××ק×× ××××£ - path: × ×ª×× - pedestrian: ××¨× ×××××× ×¨×× - platform: פ××פ×ר×× + motorway: ×××ש ×××ר + motorway_junction: צ××ת ×ר××× + motorway_link: ××××ר ××××ש ×××ר + passing_place: ×פרץ ××¢×ר + path: ש××× + pedestrian: ××ר××× + platform: רצ××£ primary: ××¨× ×¨×ש×ת - primary_link: ××¨× ×¨×ש×ת + primary_link: ××××ר ×××¨× ×¨×ש×ת proposed: ××¨× ××צעת raceway: ×ס××× ×ר×צ×× residential: ××¨× ××××ר ×××ר×× rest_area: ×××ר ×× ××× road: ××¨× secondary: ××¨× ××©× ×ת - secondary_link: ××¨× ××©× ×ת + secondary_link: ××××ר ×××¨× ××©× ×ת service: ×××ש ש×ר×ת services: ש×ר××ª× ××¨× speed_camera: ×צ××ת ×××ר×ת @@ -821,66 +840,67 @@ he: stop: ת×ר×ר עצ×ר street_lamp: ×¤× ×¡ ר××× tertiary: ××¨× ×©××ש×× ×ת - tertiary_link: ××¨× ×©××ש×× ×ת + tertiary_link: ××××ר ×××¨× ×©××ש×× ×ת track: ××¨× ×¢×¤×¨ traffic_mirror: ×ר×× ×¤× ×ר××ת traffic_signals: ר×××ר trailhead: ש×× ×ª×××ת ×ס××× - trunk: ××¨× ×¨×ש×ת - trunk_link: ××¨× ×¨×ש×ת + trunk: ××¨× ×¢×קר×ת + trunk_link: ××××ר ×××¨× ×¢×קר×ת turning_loop: ××¢×× ×ª× ××¢× unclassified: ××¨× ×× ×ס×××ת "yes": ××¨× historic: aircraft: ××× ××ס ××ס×××¨× archaeological_site: ×תר ×ר××××××× - bomb_crater: ××תש ××ס×××¨× ××¤×¦×¦× + bomb_crater: ××תש ××¤×¦×¦× ××ס×××¨× battlefield: ש×× ×§×¨× - boundary_stone: ××× ×××× + boundary_stone: ××× ×××× ××ס××ר×ת building: ×× ××× ××ס×××¨× - bunker: ××× ×§×¨ + bunker: ××× ×§×¨ ××ס×××¨× cannon: ת××ª× ××ס×××¨× - castle: ×××¨× + castle: ×××¨× ××ס××ר×ת charcoal_pile: ער××ת פ×× ××ס××ר×ת - church: ×× ×¡××× - city_gate: שער ××¢×ר - citywalls: ××××ת ××¢×ר - fort: ××¢×× + church: ×× ×¡××× ××ס××ר×ת + city_gate: שער ×¢×ר ××ס×××¨× + citywalls: ××××ת ×¢×ר ××ס××ר××ת + fort: ×צ××× ××ס××ר×ת heritage: ×תר ××רשת - house: ××ת - manor: ××××× - memorial: ×× ×ר×× ×××ר×× - milestone: × ×§××ת צ××× ××ס××ר×ת - mine: ×××¨× - mine_shaft: פ×ר ×××¨× - monument: ×× ×ר×× + hollow_way: ××¨× ×©×©×§×¢× + house: ××ת ××ס×××¨× + manor: ××××× ××ס××ר×ת + memorial: ×× ×ר×ת ×××ר×× + milestone: ××× ××¨× ××ס××ר×ת + mine: ×××¨× ××ס×××¨× + mine_shaft: פ×ר ×××¨× ××ס×××¨× + monument: ×תר ×× ×¦×× railway: ×ס××ת ר××ת ××ס××ר×ת roman_road: ××¨× ×¨×××ת - ruins: ×ר×ס×ת - stone: ××× + ruins: ××ר×× + stone: ××× ××ס××ר×ת tomb: ק×ר - tower: ×××× - wayside_chapel: קפ×× ××¦× ×××¨× - wayside_cross: צ×× ××¦× ×××¨× - wayside_shrine: ×ק×ש ××¦× ×××¨× + tower: ×××× ××ס×××¨× + wayside_chapel: קפ×ת ×ר××× ××ס××ר×ת + wayside_cross: צ×× ××ס×××¨× ××¦× ×××¨× + wayside_shrine: ×ק×ש ××ס×××¨× ××¦× ×××¨× wreck: ספ×× × ×ר××¤× "yes": ×תר ××ס×××¨× junction: "yes": צ××ת landuse: - allotments: ×קצ×ת קרקע + allotments: ××קת ××× × aquaculture: ×ק×××ת ×××ת - basin: ××× + basin: ×××ר brownfield: ×××ר תעש××× × ××ש cemetery: ××ת ק×ר×ת commercial: ×××ר ×ס××¨× - conservation: ש×××¨× + conservation: ×××ר ×ש×××ר construction: ×××ר ×× ××× farm: ×××× farmland: ש×× ×ק××× - farmyard: ×צר ×××× + farmyard: ×צר ×ק×××ת forest: ×ער - garages: ××ס××× + garages: ×××¡× ×× grass: ××©× greenfield: ש×××× ×ר×ק×× industrial: ×××ר תעש××× @@ -888,16 +908,16 @@ he: meadow: ××× military: ש×× ×¦××× mine: ×××¨× - orchard: פר×ס + orchard: ×××¢ plant_nursery: ×שת×× quarry: ××צ×× railway: ×ס××ת ×ר×× - recreation_ground: ש××× × ×פש ××¤× ×× + recreation_ground: ש×× × ×פש ××¤× ×× religious: ×ת×× ××ª× reservoir: ×××ר - reservoir_watershed: פרשת ××× ×©× ×××ר + reservoir_watershed: ××× × ×ק×× ×©× ×××ר residential: ×××ר ×××ר×× - retail: ק××¢×× ×× + retail: ××××ר ×ס××¨× village_green: ×××ר ××פר vineyard: ××¨× "yes": ש×××ש ×קרקע @@ -906,9 +926,9 @@ he: amusement_arcade: ×ש×ק××× bandstand: ×××ת ת×××רת beach_resort: ×תר × ×פש ××××£ ×× - bird_hide: ×צפ×ר + bird_hide: ××¦×¤× ×¦×פ×ר×× bleachers: ×ר×××× × - bowling_alley: ×ס××× ×××××× × + bowling_alley: ×××××× × common: ש×× ×ש×תף dance: ×ת×× ×¨×ק×××× dog_park: פ×רק ××××× @@ -918,8 +938,8 @@ he: fitness_station: ת×× ×ª ××שר garden: ×× golf_course: ××רש ××××£ - horse_riding: ר×××ת ס×ס×× - ice_rink: ××××©× ×¢× ××§×¨× + horse_riding: ר×××× ×¢× ×¡×ס×× + ice_rink: ××××§× ×¢× ××§×¨× marina: ×ר×× × miniature_golf: ××× ×Ö¾××××£ nature_reserve: ש××רת ×××¢ @@ -939,7 +959,7 @@ he: water_park: פ×רק ××× "yes": × ×פש man_made: - adit: ×× ××¡× ××פק×ת ×××¢×¨× + adit: ×¤×ª× ×××¨× advertising: פרס×× antenna: ×× ×× × avalanche_protection: ××× × ××¤× × ×פ×××ת @@ -951,11 +971,11 @@ he: bunker_silo: ××× ×§×¨ cairn: ×××¢× chimney: ×ר××× - clearcut: ×ר××ª× ×××× - communications_tower: ×¢××× ×ª×§×©×רת - crane: ×¢×××¨× + clearcut: קר×ת ×ער + communications_tower: ×××× ×ª×§×©×רת + crane: ×× ××£ cross: צ×× - dolphin: ×¢××× ×¨×ª××§× + dolphin: ×¢××× ×¨×ª××§× ×××× ×©××× dyke: ×ר×× embankment: ס×××× flagpole: ת××¨× @@ -1288,12 +1308,15 @@ he: "yes": ××¢×ר ×××× admin_levels: level2: ×××× ××××× × + level3: ×××× ×××ר level4: ×××× ××××× × level5: ×××× ××××ר level6: ×××× ××××× + level7: ×××× ×©×× ×¢×ר×× × level8: ×××× ××¢×ר level9: ×××× ××פר level10: ×××× ×פר××ר + level11: ×××× ×©××× × types: cities: ער×× towns: ×¢××ר×ת @@ -1455,12 +1478,17 @@ he: subject: '[×××¤× ×¡×ר×× ××פ OpenStreetMap] ת×××× ××ת %{user} × ××¡×¤× ×רש××ת ××××' hi: ש××× %{to_user}, header: '%{from_user} ×××× ×רש××ת ××××× ×Ö¾OpenStreetMap ×¢× ×× ××©× %{subject}:' + header_html: '%{from_user} ×××× ×רש××ת ××××× ×Ö¾OpenStreetMap ×¢× ×× ××©× %{subject}:' footer: ×פשר ×× ×קר×× ×ת ×ת×××× ××ת××ת %{readurl} ×××××× ××ת××ת %{commenturl} ×× ×ש××× ××××¢× ×××צר ××ת××ת %{replyurl} + footer_html: ×פשר ×× ×קר×× ×ת ×ת×××× ××ת××ת %{readurl} ×××××× ××ת××ת %{commenturl} + ×× ×ש××× ××××¢× ××××ר ××ת××ת %{replyurl} message_notification: - subject_header: '[OpenStreetMap] %{subject}' + subject: '[OpenStreetMap] %{message_title}' hi: ש××× %{to_user}, header: '×ת×××ª× ×Ö¾OpenStreetMap ××××¢× ××××¢× ××ת %{from_user} ×¢× ×× ××©× %{subject}:' + header_html: '%{from_user} ש×× ×× ××××¢× ××¨× OpenStreetMap ×¢× ×× ××©× %{subject}:' + footer: × ××ª× ×× ×קר×× ×ת ×××××¢× ××ת××ת %{readurl} ××ש××× ××××¢× ×ש××× ××¨× %{replyurl} footer_html: × ××ª× ×× ×קר×× ×ת ×××××¢× ××ת××ת %{readurl} ××ש××× ××××¢× ×××צר ××¨× %{replyurl} friendship_notification: @@ -1468,25 +1496,28 @@ he: subject: '[×××¤× ×¡×ר×× ××פ OpenStreetMap] × ×ספת ×רש××ת ×××ר×× ×©× %{user}' had_added_you: '%{user} ××ס××£ ×××ª× ×××ר ×Ö¾OpenStreetMap.' see_their_profile: ××פשר××ª× ×צפ×ת ×פר×פ×× ×©×× ××ת××ת %{userurl}. + see_their_profile_html: ××פשר××ª× ×צפ×ת ×פר×פ×× ×©×× ××ת××ת %{userurl}. befriend_them: ××פשר××ª× ×ס×× × ×××ר ××ת××ת %{befriendurl}. - gpx_notification: - greeting: ש×××, - your_gpx_file: × ×¨×× ×©×§×××¥ ×Ö¾GPX ש×× - with_description: ××¢× ×ת×××ר - and_the_tags: ××ת××× - and_no_tags: ××סר ×ת××× - failure: - subject: '[×××¤× ×¡×ר×× ××פ OpenStreetMap] ש×××× ×××××× GPX' - failed_to_import: '×× ×××× ×ר×××. ×× × ×ש××××:' - more_info_1: ××××¢ × ×סף ×¢× ××ש××× ×ת ×××××× GPX ×××× ××××× ×¢ - more_info_2: '××× ×פשר ××צ×× ×××:' - success: - subject: '[×××¤× ×¡×ר×× ××פ OpenStreetMap] ××××× GPX ×צ×××' - loaded_successfully: - one: × ××¢× ×ר××× ×¢× %{trace_points} ×ת×× × ×§××× ××ת ×פשר×ת. - two: × ××¢× ×ר××× ×¢× %{trace_points} ×ת×× %{possible_points} × ×§×××ת ×פשר××ת. - many: × ××¢× ×ר××× ×¢× %{trace_points} ×ת×× %{possible_points} × ×§×××ת ×פשר××ת. - other: × ××¢× ×ר××× ×¢× %{trace_points} ×ת×× %{possible_points} × ×§×××ת ×פשר××ת. + befriend_them_html: ××פשר××ª× ×ס×× × ×××ר ××ת××ת %{befriendurl}. + gpx_description: + description_with_tags_html: '×× × ×¨×× ××× ×§×××¥ ×Ö¾GPX ש×× %{trace_name} ×¢× ×ת×××ר + %{trace_description} ××ת×××ת ××××ת: %{tags}' + description_with_no_tags_html: ×× × ×¨×× ××× ×§×××¥ ×Ö¾GPX ש×× %{trace_name} ×¢× ×ת×××ר + %{trace_description} ×××× ×ª×××ת + gpx_failure: + hi: ש××× %{to_user}, + failed_to_import: '×× ×××× ×ר×××. ×× × ×ש××××:' + more_info_html: ××××¢ ×¢× ×ª×§××ת ×××××× GPX ××××¦× ××××× ×¢ ××× × ××¦× ×ª×ת %{url}. + import_failures_url: https://wiki.openstreetmap.org/wiki/GPX_Import_Failures + subject: '[×××¤× ×¡×ר×× ××פ OpenStreetMap] ש×××× ×××××× GPX' + gpx_success: + hi: ש××× %{to_user}, + loaded_successfully: + one: × ××¢× ×ר××× ×¢× %{trace_points} ×ת×× × ×§××× ××ת ×פשר×ת. + two: × ××¢× ×ר××× ×¢× %{trace_points} ×ת×× %{possible_points} × ×§×××ת ×פשר××ת. + many: × ××¢× ×ר××× ×¢× %{trace_points} ×ת×× %{possible_points} × ×§×××ת ×פשר××ת. + other: × ××¢× ×ר××× ×¢× %{trace_points} ×ת×× %{possible_points} × ×§×××ת ×פשר××ת. + subject: '[×××¤× ×¡×ר×× ××פ OpenStreetMap] ××××× GPX ×צ×××' signup_confirm: subject: '[×××¤× ×¡×ר×× ××פ OpenStreetMap] ×ר×× ×××× ××××¤× ×¡×ר×× ××פ' greeting: ××××! @@ -1496,28 +1527,16 @@ he: welcome: ×××¨× ×××ת ××ש××× ×©××, × ×¡×¤×§ ×× ××××¢ × ×סף ש××¢××ר ×× ××ת×××. email_confirm: subject: '[×××¤× ×¡×ר×× ××פ OpenStreetMap] × × ×××ת ×ת ×ת××ת ×××××´× ×©××' - email_confirm_plain: greeting: ש×××, hopefully_you: ××ש×× (×× ×× × ×ק×××× ×©×ת ×× ×ת×) ××קש ××©× ×ת ×ת ×ת××ת ××××"× ×××ת ××תר %{server_url} ××ת××ת %{new_address} click_the_link: ×× ×××ת עש×ת ×ת ××, × × ×××××¥ ×¢× ×ק×ש×ר ×××× ××× ××שר ×ת ×ש×× ××. - email_confirm_html: - greeting: ש×××, - hopefully_you: ××ש×× (×תק××× ××××ר ××) ר××¦× ××©× ×ת ×ת ×ת××ת ×××××´× ××ש×××ת ××ש××× - ×שרת %{server_url} ×× %{new_address}. - click_the_link: ×× ×××ת עש×ת ×ת ××, × × ×××××¥ ×¢× ×ק×ש×ר ×××× ××× ××שר ×ת ×ש×× ××. lost_password: subject: '[×××¤× ×¡×ר×× ××פ OpenStreetMap] ×קשת ××פ×ס ס×ס××' - lost_password_plain: greeting: ש×××, hopefully_you: ××ש×× (×××× ×ת ×× ×ת×) ××קש ש×ס×ס×× ××ש×××ת ××ש××× ×××××× ×¢× ×ת××ת ××××"× ×××ת ××תר openstreetmap.org. click_the_link: ×× ××× ×¢×©×ת ××ת, ×ש ×××××¥ ×¢× ×ק×ש×ר ×××× ××× ××פס ×ת ×ס×ס××. - lost_password_html: - greeting: ש×××, - hopefully_you: ××ש×× (×תק××× ×©××××ר ××) ××קש ×× ×ס×ס×× ××ש××× ×××××× ×¢× ×ת××ת - ×××××´× ×××ת ××תר openstreetmap.org ת××פס. - click_the_link: ×× ×××ת ××קשת ×ת ××, × × ×××××¥ ×¢× ×ק×ש×ר ×××× ××× ××פס ×ת ×ס×ס××. note_comment_notification: anonymous: ×שת×ש ××××× × greeting: ש×××, @@ -1527,21 +1546,31 @@ he: subject_other: '[OpenStreetMap] ×תק××× ×ª×××× ××ת %{commenter} ×¢× ××¢×¨× ×©××ª×¢× ××× ×ª ××' your_note: ×תק××× ×ª×××× ××ת %{commenter} ×¢× ××ת ××ער×ת ×××¤× ×©×× ××× %{place} + your_note_html: ×תק××× ×ª×××× ××ת %{commenter} ×¢× ××ת ××ער×ת ×××¤× ×©×× ××× %{place} commented_note: ×תק××× ×ª×××× ××ת %{commenter} ×¢× ××¢×¨× ×¢× ××¤× ×©×××ת ×¢×××. ××¢×¨× × ×צ×ת ××× %{place} + commented_note_html: '%{commenter} ×××× ×¢× ×ערת ××¤× ×©×××ת ×¢××× ××ק×× ××תר. + ××¢×¨× × ×צ×ת ××× %{place}' closed: subject_own: â«[OpenStreetMap] ××ת ×××ער×ת ש×× × ×¤×ª×¨× ×¢×Ö¾××× %{commenter} subject_other: '[OpenStreetMap] ××¢×¨× ×©××ª×¢× ××× ×ª ×× × ×¤×ª×¨× ×¢×Ö¾××× %{commenter}' your_note: ××ת ××ער×ת ×××¤× ×©×× ××× %{place} × ×¤×ª×¨× ×¢×Ö¾××× %{commenter}. + your_note_html: '%{commenter} פתר ×ת ××ת ××ער×ת ×××¤× ×©×× ××× %{place}.' commented_note: ×ערת ××¤× ×©×××ת ×¢××× × ×¤×ª×¨× ×¢×Ö¾××× %{commenter}. ×××¢×¨× × ×צ×ת ××× %{place} + commented_note_html: '%{commenter} פתר ×ערת ××¤× ×©×××ת ×¢×××. ×××¢×¨× × ×צ×ת ××× + %{place}.' reopened: subject_own: â«[OpenStreetMap] ××ת ××ער×ת ש×× ××פע×× ×××ש ×¢×´× %{commenter} subject_other: '[OpenStreetMap] ××¢×¨× ×©××¢× ××× ×ª ×××ª× ××פע×× ×××ש ×¢×Ö¾××× %{commenter}' your_note: ××¢×¨× ×©××ספת ××× %{place} ××פע×× ×××ש ×¢×Ö¾××× %{commenter}. + your_note_html: '%{commenter} ×פע×× ×××ש ×ערת ××¤× ×©××ספת ××× %{place}.' commented_note: ××¢×¨× ×××¤× ×©×××ת ×¢××× ××פע×× ×××ש ×¢×Ö¾××× %{commenter}. ×××¢×¨× ××× ××× %{place}. + commented_note_html: '%{commenter} ×פע×× ×××ש ×ערת ××¤× ×©×××ת ×¢×××. ××¢×¨× × ×צ×ת + ××× %{place}' details: ×פשר ××צ×× ×¤×¨××× × ×ספ×× ×¢× ×××¢×¨× ××ת××ת %{url} + details_html: ×פשר ××צ×× ×¤×¨××× × ×ספ×× ×¢× ×××¢×¨× ××ת××ת %{url}. changeset_comment_notification: hi: ש××× %{to_user}, greeting: ש×××, @@ -1552,13 +1581,21 @@ he: ש××ª×¢× ××× ×ª ×××' your_changeset: ק×××ת ××¢×¨× ×××שת×ש %{commenter} ×¢× ×ת ×ער××ת ×ש×× ×××× ×©×צרת ×Ö¾%{time} + your_changeset_html: ××שת×ש %{commenter} ××ס××£ ××¢×¨× ×Ö¾%{time} ×¢× ××ת ×ער××ת + ×ש×× ×××× ×©××. commented_changeset: ק×××ת ××¢×¨× ×××שת×ש %{commenter} ×Ö¾%{time} ×¢× ××ת ×ער××ת ×ש×× ×××× ×××¤× ×©×¢×§×ת ××ר×× ×× ××¦×¨× ×¢×Ö¾××× %{changeset_author} + commented_changeset_html: ××שת×ש %{commenter} ××ס××£ ××¢×¨× ×Ö¾%{time} ×¢× ×¢×¨×ת + ש×× ×××× ×©×צר %{changeset_author} ××ת/× ×¢×ק×/ת ××ר××. partial_changeset_with_comment: ×¢× ×××¢×¨× '%{changeset_comment}' + partial_changeset_with_comment_html: ×¢× ×××¢×¨× '%{changeset_comment}' partial_changeset_without_comment: ××× ××¢×¨× details: פר××× × ×ספ×× ×¢× ×¢×¨×ת ×ש×× ×××× ×פשר ××צ×× ××ת××ת %{url} + details_html: פר××× × ×ספ×× ×¢× ×¢×¨×ת ×ש×× ×××× ×פשר ××צ×× ××ת××ת %{url} unsubscribe: ××× ×××× ×ת ×××× ×× ××¢×××× ×× ×ער×ת ×ש×× ×××× ×××ת, × × ××קר ××ת××ת %{url} ××××××¥ ×¢× â××××× ××× ××â. + unsubscribe_html: ××× ×××× ×ת ×××¢×§× ×××¨× ×¢×××× × ×ער×ת ×ש×× ×××× ×××ת, × × ××קר + ××ת××ת %{url} ××××××¥ ×¢× â××××× ××× ××â. messages: inbox: title: ת××ת ×××ר × ×× ×¡ @@ -2053,8 +2090,8 @@ he: node_html: × ×§××× ×××צ×ת ××ק×× × ×§××ת×, ×××× ×סע×× ××ת ×× ×¢×¥ ×××. way_html: × ×ª×× ××× ×§× ×× ×××ר ××× ×ר×, ×ר×, ××× ×× ××× ×. - tag_html: ×ª× ××× ×¤×סת ××××¢ ×¢× × ×§××× ×× ×¢× × ×ª×× ××× ×©× ×©× - ×סע×× ×× ××××ת ×××ר×ת ××ר×. + tag_html: ×ª× ××× ×¤×סת ××××¢ ×¢× × ×§××× ×× ×¢× ×§× ××× ×©× ×©× ×סע×× + ×× ××××ת ×××ר×ת ××ר×. rules: title: ××ק××! paragraph_1_html: ×Ö¾OpenStreetMap ×ש ××¢× ××ק×× ×¤×ר×××××, ××× ×× ×× × ×צפ×× ××× @@ -2151,9 +2188,9 @@ he: map: ××¤× index: public_traces: ×ס×××× GPS צ×××ר××× - my_traces: × ×ª××× ×Ö¾GPS ש×× + my_traces: ×ק×××ת ×Ö¾GPS ש×× public_traces_from: ×ס×××× GPS צ×××ר××× ××ת %{user} - description: ×¢××× ×××¢×××ת ××ר×× ×ת ×©× × ×ª××× GPS + description: ×¢××× ×××¢×××ת ××ר×× ×ת ×©× ×ק×××ת GPS tagged_with: ' ×ת××× ×¢× %{tags}' empty_html: ××× ×¤× ×¢×××× ×©×× ××ר. ×פשר ×××¢××ת ××××¢ ××ש ×× ××××× ×¢×× ×¢× ××¢×§× ×ס××××× ×Ö¾GPS ×××£ @@ -2930,33 +2967,33 @@ he: redactions: edit: description: ת×××ר - heading: ער××ת ××ת×× + heading: ער××ת ××¡×¨× title: ער××ת ××ת×× index: - empty: ××× ××ת×××× ×©×פשר ××צ×× + empty: ××× ×סר×ת ש×פשר ××צ×× heading: רש××ת ××ת×××× - title: רש××ת ××ת×××× + title: רש××ת ×סר×ת new: description: ת×××ר - heading: ××× ×ª ××××¢ ×××ת×× ××ש + heading: ××ספת ××××¢ ×××¡×¨× ×××©× title: ×ת×צעת ×צ×רת ××ת×× ××ש show: description: 'ת×××ר:' - heading: ×צ×ת ×××ת×× â%{title}â + heading: ×צ×ת ×××¡×¨× â%{title}â title: ×צ×ת ××ת×× user: '××צר:' - edit: ער××ת ×××ת×× ××× + edit: ער××ת ×××¡×¨× ×××ת destroy: ×סרת ×××ת×× ××× confirm: ×××ת? create: - flash: × ×צר ××ת×× + flash: ××¡×¨× × ×צר×. update: flash: ×ש×× ×××× ×©× ×©×ר×. destroy: - not_empty: ×××ת×× ××× × ×¨×ק. × × ×××× ×ת ×××ת×××× ×©× ××רס××ת שש×××ת ×××ת×× ××× - ××¤× × ×ר×סת×. + not_empty: ×××¡×¨× ××× × ×¨×ק×. × × ×××× ×ת ××סר×ת ×©× ××רס××ת שש×××ת ×××¡×¨× ×× ××¤× × + ××××××. flash: ×××ת×× × ×רס. - error: ×××¨×¢× ×©×××× ×עת ×ר×סת ×××ת×× ×××. + error: ×××¨×¢× ×©×××× ×עת ××××× ×××¡×¨× ×××ת. validations: leading_whitespace: ×ש ר××× ××ת××× trailing_whitespace: ×ש ר××× ×ס××£ diff --git a/config/locales/hi.yml b/config/locales/hi.yml index 88c851d77..404f6e9f1 100644 --- a/config/locales/hi.yml +++ b/config/locales/hi.yml @@ -13,6 +13,7 @@ # Author: Sfic # Author: Shubhamkanodia # Author: Siddhartha Ghai +# Author: ThisIsACreeper0101 # Author: Vdhatterwal --- hi: @@ -32,14 +33,21 @@ hi: create: à¤à¥à¤à¥à¤ client_application: create: à¤à¤¾à¤¤à¤¾ बनाà¤à¤ - update: सà¤à¤ªà¤¾à¤¦à¤¨ + update: ठपडà¥à¤ à¤à¤°à¥à¤ + redaction: + create: रिडà¥à¤à¥à¤¶à¤¨ बनाà¤à¤ + update: रिडà¥à¤à¥à¤¶à¤¨ सहà¥à¤à¥à¤ trace: create: ठपलà¥à¤¡ update: बदलाव सहà¥à¤à¥à¤ + user_block: + create: बà¥à¤²à¥à¤ बनाà¤à¤ + update: बà¥à¤²à¥à¤ à¤à¥ ठपडà¥à¤ à¤à¤°à¥à¤ activerecord: errors: messages: invalid_email_address: 'यह à¤-मà¥à¤² à¤à¤¡à¥à¤°à¥à¤¸ सà¤à¤à¤µà¤¤: ठमानà¥à¤¯ हà¥' + email_address_not_routable: रासà¥à¤¤à¤¾ बनानॠलायठनहà¥à¤ हॠmodels: acl: ठà¤à¤¿à¤à¤® नियà¤à¤¤à¥à¤°à¤£ सà¥à¤à¥ changeset: बदलाव @@ -48,6 +56,7 @@ hi: diary_comment: डायरॠà¤à¤¿à¤ªà¥à¤ªà¤£à¥ diary_entry: डायरॠपà¥à¤°à¤µà¤¿à¤·à¥à¤à¤¿ friend: दà¥à¤¸à¥à¤¤ + issue: समसà¥à¤¯à¤¾ language: à¤à¤¾à¤·à¤¾ message: सà¤à¤¦à¥à¤¶ node: बिà¤à¤¦à¥ @@ -64,6 +73,7 @@ hi: relation: सà¤à¤¬à¤à¤§ relation_member: सà¤à¤¬à¤à¤§ à¤à¤¾ सदसà¥à¤¯ relation_tag: सà¤à¤¬à¤à¤§ à¤à¤¾ ठà¤à¤à¤¿à¤¤à¤ + report: रिपà¥à¤°à¥à¤ à¤à¤°à¥à¤ session: सतà¥à¤° trace: ठनà¥à¤°à¥à¤ tracepoint: ठनà¥à¤°à¥à¤à¤£ बिà¤à¤¦à¥ @@ -75,6 +85,18 @@ hi: way_node: रà¥à¤à¤¾ à¤à¤¾ बिà¤à¤¦à¥ way_tag: रà¥à¤à¤¾ à¤à¤¾ ठà¤à¤à¤¿à¤¤à¤ attributes: + client_application: + name: नाम (à¤à¤¼à¤°à¥à¤°à¥) + url: मà¥à¤à¥à¤¯ à¤à¤ªà¥à¤²à¤¿à¤à¥à¤¶à¤¨ URL (à¤à¤¼à¤°à¥à¤°à¥) + callback_url: à¤à¥à¤²à¤¬à¥à¤ URL + support_url: सहायता URL + allow_read_prefs: à¤à¤¨à¤à¥ सदसà¥à¤¯ पà¥à¤°à¤¾à¤¥à¤®à¤¿à¤à¤¾à¤¤à¤¾à¤à¤ पढ़à¥à¤ + allow_write_prefs: à¤à¤¨à¤à¥ सदसà¥à¤¯ पà¥à¤°à¤¾à¤¥à¤®à¤¿à¤à¤¤à¤¾à¤à¤ à¤à¥ बदलà¥à¤ + allow_write_diary: डायरॠà¤à¤à¤à¥à¤°à¥, à¤à¤®à¥à¤à¤ बनाà¤à¤ à¤à¤° दà¥à¤¸à¥à¤¤à¥ à¤à¥à¤à¤¿à¤ + allow_write_api: मà¥à¤ª à¤à¥ मà¥à¤¡à¤¿à¤«à¤¾à¤ à¤à¤°à¥à¤ + allow_read_gpx: à¤à¤¨à¤à¥ GPS रà¥à¤à¤¾ à¤à¥ दà¥à¤à¥à¤ + allow_write_gpx: GPS रà¥à¤à¤¾ ठपलà¥à¤¡ à¤à¤°à¥à¤ + allow_write_notes: नà¥à¤ मà¥à¤¡à¤¿à¤«à¤¾à¤ à¤à¤°à¥à¤ diary_comment: body: शरà¥à¤° diary_entry: @@ -89,18 +111,23 @@ hi: trace: user: सदसà¥à¤¯ visible: दà¥à¤¶à¥à¤¯ - name: नाम + name: à¤à¤¿à¤¤à¥à¤° à¤à¤¾ नाम size: à¤à¤à¤¾à¤° latitude: ठà¤à¥à¤·à¤¾à¤à¤¶ longitude: दà¥à¤¶à¤¾à¤à¤¤à¤° public: सारà¥à¤µà¤à¤¨à¤¿à¤ description: वरà¥à¤£à¤¨ - visibility: दà¥à¤·à¥à¤à¤¤à¤¾ + gpx_file: GPX फाà¤à¤² ठपलà¥à¤¡ à¤à¤°à¥à¤ + visibility: दà¥à¤¶à¥à¤¯à¤¤à¤¾ + tagstring: à¤à¥à¤ message: sender: पà¥à¤°à¥à¤·à¤ title: विषय body: सà¤à¤¦à¥à¤¶ à¤à¤¾ शारà¥à¤° recipient: पà¥à¤°à¤¾à¤ªà¥à¤¤à¤à¤°à¥à¤¤à¤¾ + report: + category: ठपनॠरिपà¥à¤°à¥à¤ à¤à¤¾ à¤à¤ à¤à¤¾à¤°à¤£ दà¥à¤ + details: à¤à¥à¤ªà¤¯à¤¾ ठपनॠसमसà¥à¤¯à¤¾ à¤à¥ बारॠमà¥à¤ थà¥à¤¡à¤¼à¥ à¤à¤° à¤à¤¾à¤¨à¤à¤¾à¤°à¥ दà¥à¤ (à¤à¤¼à¤°à¥à¤°à¥) user: email: à¤-मà¥à¤² active: सà¤à¥à¤°à¤¿à¤¯ @@ -108,6 +135,10 @@ hi: description: वरà¥à¤£à¤¨ languages: à¤à¤¾à¤·à¤¾à¤à¤ pass_crypt: पासवरà¥à¤¡ + pass_crypt_confirmation: पासवरà¥à¤¡ à¤à¤¨à¥à¤«à¤°à¥à¤® à¤à¤°à¥à¤ + help: + trace: + tagstring: à¤à¥à¤®à¤¾ डà¥à¤²à¤¿à¤®à¤¿à¤ à¤à¤¿à¤¯à¤¾ à¤à¤¯à¤¾ हॠdatetime: distance_in_words_ago: about_x_hours: @@ -123,14 +154,53 @@ hi: one: à¤à¤°à¥à¤¬ १ साल पहलॠother: à¤à¤°à¥à¤¬ %{count} साल पहलॠhalf_a_minute: à¤à¤°à¥à¤¬ à¤à¤ मिनठपहलॠ+ less_than_x_seconds: + one: १ सà¥à¤à¤à¤¡ सॠà¤à¤® समय पहलॠ+ other: '%{count} सॠà¤à¤® समय पहलà¥' + less_than_x_minutes: + one: १ मिनठसॠà¤à¤® समय पहलॠ+ other: '%{count} सॠà¤à¤® समय पहलà¥' + over_x_years: + one: १ साल सॠà¤à¤¼à¤¯à¤¾à¤¦à¤¾ समय पहलॠ+ other: less than %{count} सालà¥à¤ सॠà¤à¤¼à¥à¤¯à¤¾à¤¦à¤¾ समय पहलॠ+ x_seconds: + one: १ सà¥à¤à¤à¤¡ पहलॠ+ other: '%{count} सà¥à¤à¤à¤¡ पहलà¥' + x_minutes: + one: १ मिनठपहलॠ+ other: '%{count} मिनठपहलà¥' + x_days: + one: १ दिन पहलॠ+ other: '%{count} दिन पहलà¥' + x_months: + one: à¤à¤ महà¥à¤¨à¥ पहलॠ+ other: '%{count} महà¥à¤¨à¥ पहलà¥' + x_years: + one: १ साल पहलॠ+ other: '%{count} साल पहलà¥' editor: default: डिफ़à¥à¤²à¥à¤ (currently %{name}) potlatch: name: पà¥à¤à¤²à¥à¤ 1 + description: पà¥à¤à¤²à¥à¤ १ (बà¥à¤°à¤¾à¤à¤à¤¼à¤° à¤à¤¾ à¤à¤¡à¤¿à¤à¤°) id: name: à¤à¤à¤¡à¥ + description: iD (बà¥à¤°à¤¾à¤à¤à¤¼à¤° à¤à¤¾ à¤à¤¡à¤¿à¤à¤°) potlatch2: name: पà¥à¤à¤²à¥à¤ 2 + description: पà¥à¤à¤²à¥à¤ २ (बà¥à¤°à¤¾à¤à¤à¤¼à¤° à¤à¤¾ à¤à¤¡à¤¿à¤à¤°) + remote: + name: रिमà¥à¤ à¤à¤à¤à¥à¤°à¥à¤² + description: रिमà¥à¤ à¤à¤à¤à¥à¤°à¥à¤² (JOSM या Merkaartor) + auth: + providers: + none: à¤à¥à¤ नहà¥à¤ + openid: OpenID + google: à¤à¥à¤à¤² + facebook: फà¥à¤¸à¤¬à¥à¤ + windowslive: विनà¥à¤¡à¥à¤à¤¼ लाà¤à¤µ + github: à¤à¤¿à¤à¥à¤¹à¤¬ + wikipedia: विà¤à¤¿à¤ªà¥à¤¡à¤¿à¤¯à¤¾ api: notes: comment: @@ -143,20 +213,52 @@ hi: reopened_at_html: '%{when} पर पà¥à¤¨: सà¤à¥à¤°à¤¿à¤¯ à¤à¤¿à¤¯à¤¾ à¤à¤¯à¤¾' reopened_at_by_html: '%{when} पर %{user} नॠपà¥à¤¨: सà¤à¥à¤°à¤¿à¤¯ à¤à¤¿à¤¯à¤¾' rss: + title: à¤à¤ªà¤¨à¤¸à¥à¤à¥à¤°à¥à¤à¤®à¥à¤ª नà¥à¤ + description_area: à¤à¤ªà¤à¥ à¤à¤²à¤¾à¤à¥ मà¥à¤ नà¥à¤, रिपà¥à¤°à¥à¤ à¤à¤¿à¤ à¤à¤, à¤à¤®à¥à¤à¤ à¤à¤¿à¤ à¤à¤ या बà¤à¤¦ + à¤à¤¿à¤ à¤à¥à¤à¤¼à¥à¤ à¤à¤ à¤à¥ सà¥à¤à¥ [(%{min_lat}|%{min_lon}) -- (%{max_lat}|%{max_lon})] + description_item: नà¥à¤ %{id} à¤à¥ लिठrss फà¥à¤¡ + opened: नया नà¥à¤ (%{place} à¤à¥ पास) commented: नया à¤à¤µà¤¾à¤¬ (%{place} à¤à¥ पास) + closed: बà¤à¤¦ à¤à¤¿à¤¯à¤¾ à¤à¤¯à¤¾ नà¥à¤ (%{place} à¤à¥ पास) + reopened: फिर सॠà¤à¥à¤²à¤¾ à¤à¤¯à¤¾ नà¥à¤ (%{place} à¤à¥ पास) entry: comment: à¤à¤µà¤¾à¤¬ + full: पà¥à¤°à¤¾ नà¥à¤ browse: + created: बनाया à¤à¤¯à¤¾ + closed: बà¤à¤¦ à¤à¤¿à¤¯à¤¾ à¤à¤¯à¤¾ + created_html: %{time} बनाया à¤à¤¯à¤¾ + closed_html: %{time} बà¤à¤¦ à¤à¤¿à¤¯à¤¾ à¤à¤¯à¤¾ + created_by_html: '%{user} दà¥à¤µà¤¾à¤°à¤¾ %{time} à¤à¥à¤²à¤¾ + à¤à¤¯à¤¾' + deleted_by_html: '%{user} दà¥à¤µà¤¾à¤°à¤¾ %{time} à¤à¥ बà¤à¤¦ + à¤à¤¿à¤¯à¤¾ à¤à¤¯à¤¾' + edited_by_html: '%{user} दà¥à¤µà¤¾à¤°à¤¾ %{time} à¤à¥ समà¥à¤ªà¤¾à¤¦à¤¿à¤¤ + à¤à¤¿à¤¯à¤¾ à¤à¤¯à¤¾' + closed_by_html: '%{user} दà¥à¤µà¤¾à¤°à¤¾ %{time} à¤à¥ बà¤à¤¦ + à¤à¤¿à¤¯à¤¾ à¤à¤¯à¤¾' version: सà¤à¤¸à¥à¤à¤°à¤£ + in_changeset: Changeset anonymous: ठनामठno_comment: (à¤à¥à¤ à¤à¤¿à¤ªà¥à¤ªà¤£à¥ नहà¥à¤) + part_of: à¤à¤¸à¤à¤¾ à¤à¤¾à¤ + part_of_relations: + one: १ समà¥à¤¬à¤à¤§ + other: '%{count} समà¥à¤¬à¤à¤§' + part_of_ways: + one: १ रासà¥à¤¤à¤¾ + other: '%{count} रासà¥à¤¤à¥à¤' + download_xml: XML डाà¤à¤¨à¤²à¥à¤¡ à¤à¤°à¥à¤ view_history: à¤à¤¤à¤¿à¤¹à¤¾à¤¸ दà¥à¤à¥à¤ view_details: à¤à¤¾à¤¨à¤à¤¾à¤°à¥ दà¥à¤à¥à¤ location: 'सà¥à¤¥à¤¾à¤¨:' changeset: + title: 'Changeset: %{id}' belongs_to: लà¥à¤à¤ node: बिà¤à¤¦à¥ (%{count}) + node_paginated: नà¥à¤¡ (%{count} à¤à¤¾ %{x}-%{y}) way: रà¥à¤à¤¾à¤à¤ (%{count}) + way_paginated: रासà¥à¤¤à¥à¤ (%{count} à¤à¤¾ %{x}-%{y}) comment: à¤à¤µà¤¾à¤¬ (%{count}) discussion: à¤à¤°à¥à¤à¤¾ still_open: à¤à¥à¤à¤à¤¸à¥à¤ ठà¤à¥ à¤à¥ à¤à¥à¤²à¤¾ - à¤à¥à¤à¤à¤¸à¥à¤ à¤à¥ à¤à¤ बार बà¤à¤¦ हà¥à¤¨à¥ à¤à¥ पशà¥à¤à¤¾à¤¤ à¤à¤°à¥à¤à¤¾ @@ -326,7 +428,6 @@ hi: marketplace: बाà¤à¤¼à¤¾à¤° nightclub: नाà¤à¤ à¤à¥à¤²à¤¬ nursing_home: नरà¥à¤¸à¤¿à¤à¤ हà¥à¤® - office: à¤à¤¾à¤°à¥à¤¯à¤¾à¤²à¤¯ parking: पारà¥à¤à¤¿à¤à¤ parking_entrance: पारà¥à¤à¤¿à¤à¤ पà¥à¤°à¤µà¥à¤¶ parking_space: पारà¥à¤à¤¿à¤à¤ à¤à¥ à¤à¤à¤¹ @@ -341,7 +442,6 @@ hi: restaurant: à¤à¥à¤à¤¨à¤¾à¤²à¤¯ school: विदà¥à¤¯à¤¾à¤²à¤¯ shelter: à¤à¤¶à¥à¤°à¤¾à¤²à¤¯ - shop: दà¥à¤à¤¾à¤¨ studio: सà¥à¤à¥à¤¡à¤¿à¤¯à¥ swimming_pool: तरणताल taxi: à¤à¥à¤à¥à¤¸à¥ @@ -353,7 +453,6 @@ hi: waste_basket: à¤à¥à¤¡à¤¼à¤¾à¤¦à¤¾à¤¨ waste_disposal: ढलाव water_point: à¤à¤² बिà¤à¤¦à¥ - youth_centre: यà¥à¤µà¤¾ à¤à¥à¤¨à¥à¤¦à¥à¤° boundary: national_park: राषà¥à¤à¥à¤°à¥à¤¯ à¤à¤¦à¥à¤¯à¤¾à¤¨ protected_area: सà¤à¤°à¤à¥à¤·à¤¿à¤¤ à¤à¥à¤·à¥à¤¤à¥à¤° @@ -505,7 +604,6 @@ hi: kitchen: रसà¥à¤ à¤à¥ वसà¥à¤¤à¥à¤à¤ à¤à¥ दà¥à¤à¤¾à¤¨ lottery: लà¥à¤à¤°à¥ mall: मà¥à¤² - market: बाà¤à¤¼à¤¾à¤° massage: मालिश pawnbroker: साहà¥à¤à¤¾à¤° seafood: समà¥à¤¦à¥à¤°à¥ à¤à¤¾à¤¦à¥à¤¯ @@ -539,7 +637,6 @@ hi: level8: शहर सà¥à¤®à¤¾ level9: à¤à¤¾à¤à¤µ सà¥à¤®à¤¾ level10: à¤à¤²à¤¾à¤à¥ à¤à¥ सà¥à¤®à¤¾ - description: types: cities: नà¤à¤° towns: शहर @@ -576,15 +673,13 @@ hi: help: सहायता community: समà¥à¤¦à¤¾à¤¯ foundation: सà¤à¤¸à¥à¤¥à¤¾à¤¨ - notifier: + user_mailer: diary_comment_notification: subject: '[OpenStreetMap] %{user} नॠà¤à¤ दà¥à¤¨à¤¿à¤à¥ पर पà¥à¤°à¤¤à¤¿à¤à¥à¤°à¤¿à¤¯à¤¾ दà¥' friendship_notification: subject: '[OpenStreetMap] %{user} नॠà¤à¤ªà¤à¥ ठपनॠदà¥à¤¸à¥à¤¤à¥à¤ मà¥à¤ शामिल à¤à¤¿à¤¯à¤¾ हà¥' had_added_you: '%{user} नॠà¤à¤ªà¤à¥ OpenStreetMap पर ठपनॠदà¥à¤¸à¥à¤¤à¥à¤ मà¥à¤ शामिल à¤à¤¿à¤¯à¤¾ हà¥à¥¤' - gpx_notification: - greeting: नमसà¥à¤à¤¾à¤°, note_comment_notification: greeting: नमसà¥à¤à¤¾à¤°, messages: @@ -669,19 +764,12 @@ hi: oauth_clients: show: key: à¤à¤ªà¤à¥à¤à¥à¤¤à¤¾ à¤à¥à¤à¤à¥ - allow_write_api: नà¤à¥à¤¶à¥ मà¥à¤ तबà¥à¤¦à¥à¤²à¥ - form: - name: नाम - required: à¤à¤µà¤¶à¥à¤¯à¤à¤¤à¤¾ - allow_write_api: नà¤à¥à¤¶à¤¾ सà¤à¤ªà¤¾à¤¦à¤¿à¤¤ à¤à¤°à¥à¤. - allow_write_notes: नà¥à¤ सà¤à¤¶à¥à¤§à¤¿à¤¤ à¤à¤°à¥à¤à¥¤ users: lost_password: title: lost password new password button: Send me a new password reset_password: title: reset password - password: 'पासवरà¥à¤¡:' show: my friends: मà¥à¤°à¥ मितà¥à¤° account: diff --git a/config/locales/hr.yml b/config/locales/hr.yml index a92479d35..3530b3778 100644 --- a/config/locales/hr.yml +++ b/config/locales/hr.yml @@ -6,6 +6,7 @@ # Author: Astrind # Author: Bugoslav # Author: Ex13 +# Author: Helena # Author: Janjko # Author: Macofe # Author: Mnalis @@ -973,46 +974,25 @@ hr: had_added_you: '%{user} te je dodao kao prijatelja na OpenStreetMap-u.' see_their_profile: MožeÅ¡ vidjeti njihov profil na %{userurl}. befriend_them: TakoÄer, možete ih dodati kao prijatelja na %{befriendurl}. - gpx_notification: - greeting: Bok, - your_gpx_file: LiÄi na vaÅ¡u GPX datoteku - with_description: s opisom - and_the_tags: 'i sa sljedeÄim oznakama:' - and_no_tags: i bez oznaka - failure: - subject: '[OpenStreetMap] GPX Import nije uspio' - failed_to_import: 'Import nije uspio. Ovdje je greÅ¡ka:' - more_info_1: ViÅ¡e o neuspjelom GPX importu i kako to izbjeÄi - more_info_2: 'može se naÄi na:' - success: - subject: '[OpenStreetMap] GPX Import uspjeÅ¡an' - loaded_successfully: |- - uspjeÅ¡no uÄitano sa %{trace_points} od moguÄih - %{possible_points} toÄaka. + gpx_failure: + failed_to_import: 'Import nije uspio. Ovdje je greÅ¡ka:' + subject: '[OpenStreetMap] GPX Import nije uspio' + gpx_success: + loaded_successfully: |- + uspjeÅ¡no uÄitano sa %{trace_points} od moguÄih + %{possible_points} toÄaka. + subject: '[OpenStreetMap] GPX Import uspjeÅ¡an' signup_confirm: subject: '[OpenStreetMap] DobrodoÅ¡li na OpenStreetMap' greeting: Hej! email_confirm: subject: '[OpenStreetMap] Potvrdi svoju e-mail adresu' - email_confirm_plain: greeting: Bok, click_the_link: Ako si ovo ti, molim klinkni na link ispod da potvrdiÅ¡ promjene. - email_confirm_html: - greeting: Bok, - hopefully_you: Netko (nadam se ti) bi želio promjeniti njihovu email adresu - sa %{server_url} na %{new_address}. - click_the_link: Ako si ovo ti, klikni na ispod navedeni link za potvrdu promjene lost_password: subject: '[OpenStreetMap] Zahtjev za resetom lozinke' - lost_password_plain: greeting: Bok, click_the_link: Ako si ovo ti, klikni na link ispod za reset lozinke. - lost_password_html: - greeting: Bok, - hopefully_you: Netko (moguÄe, ti) pitao je za reset lozinke na njihoim email - adresama openstreetmap.org raÄunu. - click_the_link: Ako si ovo ti, molim klikni link ispod za resetiranje tvoje - lozinke. note_comment_notification: anonymous: Anonimni korisnik greeting: Bok, @@ -1280,7 +1260,7 @@ hr: url: http://wiki.openstreetmap.org/ title: wiki.openstreetmap.org sidebar: - search_results: Rezultati traženja + search_results: Rezultati pretraživanja close: Zatvori search: search: Traži @@ -1645,6 +1625,7 @@ hr: consider_pd: Osim gore navedenog ugovora, smatram da su moji doprinosi u javnom vlasniÅ¡tvu (Public Domain) consider_pd_why: Å¡to je ovo? + continue: Nastavi decline: Odbaci you need to accept or decline: Molim proÄitaj, a zatim ili prihvati ili odbij nove Uvjete doprinoÅ¡enja. @@ -1693,6 +1674,7 @@ hr: if_set_location_html: 'Postavi lokaciju svog doma na stranici: %{settings_link}, kako bi vidio/la obližnje korisnike.' settings_link_text: postavke + my friends: Moji prijatelji no friends: Nisi dodao niti jednog prijatelja. km away: udaljen %{count}km m away: '%{count}m daleko' @@ -1720,6 +1702,7 @@ hr: delete_user: ObriÅ¡i ovog korisnika confirm: Potvrdi friends_changesets: changesetovi prijatelja + report: Prijavi ovog korisnika popup: your location: VaÅ¡a lokacija nearby mapper: Obližnji maper @@ -1970,6 +1953,8 @@ hr: center_marker: Centriraj kartu na oznaku paste_html: Zalijepi HTML za ugraÄivanje na web stranicu view_larger_map: Prikaži veÄu kartu + embed: + report_problem: Prijavi problem key: title: Legenda tooltip: Legenda @@ -2021,7 +2006,9 @@ hr: edit_help: Pomakni kartu i približi dio koji želiÅ¡ urediti, zatim klikni ovdje. directions: engines: + fossgis_osrm_bike: Bicikl (OSRM) fossgis_osrm_car: Automobil (OSRM) + fossgis_osrm_foot: PjeÅ¡ke (OSRM) graphhopper_bicycle: Bicikl (GraphHopper) graphhopper_car: Automobil (GraphHopper) graphhopper_foot: PjeÅ¡ke (GraphHopper) @@ -2039,7 +2026,7 @@ hr: endofroad_right_without_exit: Na kraju ceste skreni desno na %{name} context: directions_from: Upute odavde - directions_to: Upute dovde + directions_to: Upute do ovog mjesta show_address: Prikaži adresu query_features: Provjeri elemente karte redactions: diff --git a/config/locales/hsb.yml b/config/locales/hsb.yml index 90d591f2c..a92b01f7c 100644 --- a/config/locales/hsb.yml +++ b/config/locales/hsb.yml @@ -1194,7 +1194,6 @@ hsb: footer: MóžeÅ¡ komentar tež na %{readurl} ÄitaÄ a na %{commenturl} komentowaÄ abo na %{replyurl} wotmoÅwiÄ message_notification: - subject_header: '[OpenStreetMap] %{subject}' hi: Witaj %{to_user}, header: '%{from_user} je Äi pÅez OpenStreetMap powÄsÄ z temu %{subject} pósÅaÅ(a):' footer_html: MóžeÅ¡ powÄsÄ tež pod %{readurl} ÄitaÄ a pod %{replyurl} wotmoÅwiÄ @@ -1204,22 +1203,13 @@ hsb: had_added_you: '%{user} je Äe na OpenStreetMap jako pÅeÄela pÅidaÅ.' see_their_profile: MóžeÅ¡ sej jeho abo jeje profil na %{userurl} wobhladaÄ. befriend_them: MóžeÅ¡ jeho/nju na %{befriendurl} jako pÅeÄela pÅidaÄ. - gpx_notification: - greeting: Witaj, - your_gpx_file: Twoja GPX-dataja - with_description: z wopisanjom - and_the_tags: 'a slÄdowacymi atributami:' - and_no_tags: a bjez atributow. - failure: - subject: '[OpenStreetMap] Zmylk pÅi imporÄe GPX' - failed_to_import: 'njemóhÅo so importowaÄ. Zmylk je:' - more_info_1: DalÅ¡e informacije wo zmylkach pÅi imporÄe GPX a kak móžeÅ¡ jim - zadźÄwaÄ - more_info_2: 'namakaÅ¡ tu:' - success: - subject: '[OpenStreetMap] GPX-import wuspÄÅ¡ny' - loaded_successfully: '%{trace_points} z %{possible_points} móžnych dypkow - bu wuspÄÅ¡nje importowane.' + gpx_failure: + failed_to_import: 'njemóhÅo so importowaÄ. Zmylk je:' + subject: '[OpenStreetMap] Zmylk pÅi imporÄe GPX' + gpx_success: + loaded_successfully: '%{trace_points} z %{possible_points} móžnych dypkow bu + wuspÄÅ¡nje importowane.' + subject: '[OpenStreetMap] GPX-import wuspÄÅ¡ny' signup_confirm: subject: '[OpenStreetMap] Witaj k OpenStreetMap' greeting: Witaj! @@ -1231,32 +1221,18 @@ hsb: krokach. email_confirm: subject: '[OpenStreetMap] Twoju mejlowu adresu wobkruÄiÄ' - email_confirm_plain: greeting: Witaj, hopefully_you: NÄchtó (nadźijomnje ty) chce swoju mejlowu adresu na %{server_url} zmÄniÄ na %{new_address} click_the_link: Jeli ty to sy, klikÅ proÅ¡u na slÄdowacy wotkaz, zo by zmÄnu wobkruÄiÅ(a). - email_confirm_html: - greeting: Witaj, - hopefully_you: NÄchtó (nadźijomnje ty) chce swoju mejlowu adresu pola %{server_url} - na %{new_address} zmÄniÄ. - click_the_link: Jeli ty to sy, klikÅ proÅ¡u na slÄdowacy wotkaz, zo by zmÄnu - wobkruÄiÅ(a). lost_password: subject: '[OpenStreetMap] Próstwa wo wróÄostajenje hesÅa' - lost_password_plain: greeting: Witaj, hopefully_you: NÄchtó (najskerje ty) je pod tutej mejlowej adresu wo to prosyÅ, hesÅo za konto na openstreetmap.org wróÄo stajiÄ. click_the_link: Jeli ty to sy, klikÅ proÅ¡u na slÄdowacy wotkaz, zo by swoje hesÅo wróÄo stajiÅ(a). - lost_password_html: - greeting: Witaj, - hopefully_you: NÄchtó (najskerje ty) je wo to prosyÅ, hesÅo za konto tuteje - mejloweje adresy na openstreetmap.org wróÄo stajiÄ. - click_the_link: Jeli ty to sy, klikÅ proÅ¡u na slÄdowacy wotkaz, zo by swoje - hesÅo wróÄo stajiÅ(a). note_comment_notification: anonymous: Anonymny wužiwar greeting: Witaj, diff --git a/config/locales/hu.yml b/config/locales/hu.yml index b4be774cb..6f1a053b7 100644 --- a/config/locales/hu.yml +++ b/config/locales/hu.yml @@ -162,8 +162,8 @@ hu: other: majdnem %{count} éve half_a_minute: fél perccel ezelÅtt less_than_x_seconds: - one: kevesebb, mint 1 másodperce - other: kevesebb, mint %{count} másodperce + one: kevesebb mint 1 másodperce + other: kevesebb mint %{count} másodperce less_than_x_minutes: one: kevesebb mint 1 perce other: kevesebb mint %{count} perce @@ -1252,7 +1252,6 @@ hu: footer: 'A hozzászólást elolvashatod itt is: %{readurl} és hozzászólhatsz itt: %{commenturl} vagy válaszolhatsz rá itt: %{replyurl}' message_notification: - subject_header: '[OpenStreetMap] %{subject}' hi: Szia %{to_user}! header: '%{from_user} küldött neked egy üzenetet az OpenStreetMapon keresztül %{subject} tárggyal:' @@ -1264,22 +1263,14 @@ hu: had_added_you: '%{user} felvett a barátai közé az OpenStreetMapon.' see_their_profile: 'Megnézheted a profilját itt: %{userurl}.' befriend_them: 'Felveheted Åt barátnak is itt: %{befriendurl}.' - gpx_notification: - greeting: Szia! - your_gpx_file: 'Ãgy tűnik, hogy ez a GPX fájlod:' - with_description: 'ezzel a leÃrással:' - and_the_tags: 'és a következÅ cÃmkékkel:' - and_no_tags: és cÃmkék nélkül - failure: - subject: '[OpenStreetMap] GPX importálás sikertelen' - failed_to_import: 'importálása sikertelen. Ez a hiba:' - more_info_1: További információ a GPX importálás sikertelenségeirÅl és - more_info_2: 'megelÅzésérÅl itt található:' - success: - subject: '[OpenStreetMap] GPX importálás sikeres' - loaded_successfully: |- - sikeresen betöltÅdött %{trace_points} ponttal a lehetséges - %{possible_points} pontból. + gpx_failure: + failed_to_import: 'importálása sikertelen. Ez a hiba:' + subject: '[OpenStreetMap] GPX importálás sikertelen' + gpx_success: + loaded_successfully: |- + sikeresen betöltÅdött %{trace_points} ponttal a lehetséges + %{possible_points} pontból. + subject: '[OpenStreetMap] GPX importálás sikeres' signup_confirm: subject: '[OpenStreetMap] Ãdvözlünk az OpenStreetMapnál' greeting: Szia! @@ -1291,32 +1282,18 @@ hu: az elinduláshoz. email_confirm: subject: '[OpenStreetMap] E-mail cÃm megerÅsÃtése' - email_confirm_plain: greeting: Szia! hopefully_you: 'Valaki (remélhetÅleg te) szeretné megváltoztatni az e-mail cÃmét a %{server_url} cÃmen, erre: %{new_address}.' click_the_link: Ha ez Te vagy, akkor a módosÃtás megerÅsÃtéséhez kattints az alábbi hivatkozásra. - email_confirm_html: - greeting: Szia! - hopefully_you: 'Valaki (remélhetÅleg Te) meg szeretné változtatni az e-mail - cÃmét az %{server_url} oldalon erre: %{new_address}.' - click_the_link: Ha ez Te vagy, akkor a módosÃtás megerÅsÃtéséhez kattints az - alábbi hivatkozásra. lost_password: subject: '[OpenStreetMap] Jelszó alaphelyzetbe állÃtásának kérése' - lost_password_plain: greeting: Szia! hopefully_you: Valaki (remélhetÅleg te) jelszó visszaállÃtást kért, ehhez az e-mail cÃmhez tartozó openstreetmap.org felhasználónak. click_the_link: Ha ez Te vagy, akkor a jelszó alaphelyzetbe állÃtásához kattints az alábbi hivatkozásra. - lost_password_html: - greeting: Szia! - hopefully_you: Valaki (esetleg Te) kérte, hogy az ehhez az e-mail cÃmhez tartozó - openstreetmap.org felhasználói fiók jelszava kerüljön alaphelyzetbe. - click_the_link: Ha ez Te vagy, akkor a jelszó alaphelyzetbe állÃtásához kattints - az alábbi hivatkozásra. note_comment_notification: anonymous: Egy névtelen felhasználó greeting: Szia! @@ -1858,10 +1835,10 @@ hu: mint például egy étterem neve vagy egy sebességkorlátozás mértéke. rules: title: Szabályok! - paragraph_1_html: "Az openStreetMap-nek van néhány formális szabálya is de - alapvetÅen minden résztvevÅtÅl azt várjuk el hogy együttműködjön és kommunikáljon + paragraph_1_html: "Az OpenStreetMap-nek van néhány formális szabálya is, de + alapvetÅen minden résztvevÅtÅl azt várjuk el, hogy együttműködjön és kommunikáljon a közösség többi tagjával. Ha bármilyen kézi szerkesztésen túlmutató tevékenységet - tervezel akkor kérjük, hogy olvasd el az errÅl szóló útmutatókat az \nImportálásról és az \nAutomatikus szerkesztésekrÅl szóló lapokon." @@ -2363,7 +2340,7 @@ hu: button: MegerÅsÃtés success: Az e-mail cÃmed módosÃtása megerÅsÃtve! failure: Egy e-mail cÃm már megerÅsÃtésre került ezzel az utalvánnyal. - unknown_token: Ez a megerÅsÃtÅ kódo lejárt, vagy nem létezik. + unknown_token: Ez a megerÅsÃtÅ kód lejárt, vagy nem létezik. set_home: flash success: Otthon helye sikeresen mentve go_public: @@ -2712,7 +2689,7 @@ hu: node: Csomópont way: Vonal relation: Kapcsolat - nothing_found: Nem találhatóak jellemzÅk + nothing_found: Nem találhatók adatok error: 'Hiba a %{server} szerverhez való kapcsolódáshoz: %{error}' timeout: IdÅtúllépés a %{server}szerverhez kapcsolódás során context: diff --git a/config/locales/ia.yml b/config/locales/ia.yml index 546b878a2..68d5358e8 100644 --- a/config/locales/ia.yml +++ b/config/locales/ia.yml @@ -711,6 +711,7 @@ ia: brewery: Fabrica de bira carpenter: Carpentero caterer: Catering + confectionery: Confecteria electrician: Electricista gardener: Jardinero painter: Pictor @@ -1326,25 +1327,16 @@ ia: had_added_you: '%{user} te ha addite como amico in OpenStreetMap.' see_their_profile: Tu pote vider su profilo a %{userurl}. befriend_them: Tu pote equalmente adder le/la como amico a %{befriendurl}. - gpx_notification: - greeting: Salute, - your_gpx_file: Il pare que tu file GPX - with_description: con le description - and_the_tags: 'e le sequente etiquettas:' - and_no_tags: e sin etiquettas. - failure: - subject: '[OpenStreetMap] Importation GPX fallite' - failed_to_import: 'ha fallite de importar. Ecce le error:' - more_info_1: Plus informationes super le fallimentos de importation GPX e - como evitar los - more_info_2: 'los se trova a:' - success: - subject: '[OpenStreetMap] Importation GPX succedite' - loaded_successfully: - one: ha essite cargate con successo con %{trace_points} ex un maximo de - 1 puncto. - other: ha essite cargate con successo con %{trace_points} ex un maximo de - %{possible_points} punctos. + gpx_failure: + failed_to_import: 'ha fallite de importar. Ecce le error:' + subject: '[OpenStreetMap] Importation GPX fallite' + gpx_success: + loaded_successfully: + one: ha essite cargate con successo con %{trace_points} ex un maximo de 1 + puncto. + other: ha essite cargate con successo con %{trace_points} ex un maximo de + %{possible_points} punctos. + subject: '[OpenStreetMap] Importation GPX succedite' signup_confirm: subject: '[OpenStreetMap] Benvenite a OpenStreetMap' greeting: Bon die! @@ -1356,32 +1348,18 @@ ia: supplementari pro adjutar te a comenciar. email_confirm: subject: '[OpenStreetMap] Confirma tu adresse de e-mail' - email_confirm_plain: greeting: Salute, hopefully_you: Alcuno (probabilemente tu) vole cambiar su adresse de e-mail in %{server_url} a %{new_address}. click_the_link: Si isto es tu, per favor clicca super le ligamine ci infra pro confirmar le alteration. - email_confirm_html: - greeting: Salute, - hopefully_you: Alcuno (sperabilemente tu) vole cambiar su adresse de e-mail - in %{server_url} a %{new_address}. - click_the_link: Si isto es tu, per favor clicca super le ligamine ci infra pro - confirmar le alteration. lost_password: subject: '[OpenStreetMap] Requesta de reinitialisation del contrasigno' - lost_password_plain: greeting: Salute, hopefully_you: Alcuno (probabilemente tu) ha demandate que le contrasigno del conto openstreetmap.org associate con iste adresse de e-mail sia reinitialisate. click_the_link: Si isto es tu, per favor clicca super le ligamine ci infra pro reinitialisar tu contrasigno. - lost_password_html: - greeting: Salute, - hopefully_you: Alcuno (possibilemente tu) ha demandate que le contrasigno del - conto openstreetmap.org associate con iste adresse de e-mail sia reinitialisate. - click_the_link: Si isto es tu, per favor clicca super le ligamine ci infra pro - reinitialisar tu contrasigno. note_comment_notification: anonymous: Un usator anonyme greeting: Salute, @@ -1572,8 +1550,8 @@ ia: Nos require que vos usa le recognoscentia “© OpenStreetMap contributors”. credit_2_1_html: |- - Vos debe etiam indicar clarmente que le datos es disponibile sub Open Database License, e si vos usa nostre tegulas cartographic, que le cartographia es licentiate sub CC-BY-SA. Vos pote facer isto con un ligamine a iste pagina de copyright. - Alternativemente, e obligatorimente si vos distribue OSM in forma de datos, vos pote mentionar le licentia(s) e ligar directemente a illo(s). Si vos usa un medio de communication in le qual le ligamines non es possibile (p.ex. un obra imprimite), nos suggere que vos dirige vostre lectores a openstreetmap.org (forsan per inserer iste adresse complete in loco del parola ‘OpenStreetMap’), a opendatacommons.org, e (si relevante) a creativecommons.org. + Vos debe etiam indicar clarmente que le datos es disponibile sub Open Database License. Vos pote facer isto con un ligamine a iste pagina de copyright. + Alternativemente, e obligatorimente si vos distribue OSM in forma de datos, vos pote mentionar le licentia(s) e ligar directemente a illo(s). Si vos usa un medio de communication in le qual le ligamines non es possibile (p.ex. un obra imprimite), nos suggere que vos dirige vostre lectores a openstreetmap.org (forsan per inserer iste adresse complete in loco del parola ‘OpenStreetMap’) e a opendatacommons.org. credit_4_html: 'Pro un carta electronic navigabile, le recognoscentia debe apparer in le angulo del carta. Per exemplo:' attribution_example: diff --git a/config/locales/id.yml b/config/locales/id.yml index bced63d05..7c9b63a9b 100644 --- a/config/locales/id.yml +++ b/config/locales/id.yml @@ -8,6 +8,7 @@ # Author: ArlandGa # Author: Atriwidada # Author: C5st4wr6ch +# Author: Daud I.F. Argana # Author: Dewisulistio # Author: Emirhartato # Author: Farras @@ -50,7 +51,7 @@ id: create: Kirim client_application: create: Daftar - update: Edit + update: Perbarui redaction: create: Membuat Redaksi update: Simpan Redaksi @@ -152,6 +153,7 @@ id: description: Keterangan languages: Bahasa pass_crypt: Kata Sandi + pass_crypt_confirmation: Konfirmasi Kata Sandi help: trace: tagstring: dipisahkan oleh koma @@ -256,6 +258,12 @@ id: anonymous: Anonimitas no_comment: (tidak ada komentar) part_of: Bagian dari + part_of_relations: + one: 1 relasi + other: '%{count} relasi' + part_of_ways: + one: 1 arah + other: '%{count} arah' download_xml: Unduh XML view_history: Versi terdahulu view_details: Lihat Rincian @@ -290,6 +298,8 @@ id: title_html: 'Jalan: %{name}' history_title_html: 'Riwayat Jalan: %{name}' nodes: Simpul + nodes_count: + other: '%{count} simpul' also_part_of_html: one: bagian dari jalan %{related_ways} other: bagian dari jalan %{related_ways} @@ -297,6 +307,9 @@ id: title_html: 'Hubungan: %{name}' history_title_html: 'Riwayat Hubungan: %{name}' members: Anggota + members_count: + one: 1 anggota + other: '%{count} anggota' relation_member: entry_role_html: '%{type} %{name} sebagai %{role}' type: @@ -307,6 +320,7 @@ id: entry_html: Relasi %{relation_name} entry_role_html: Relasi %{relation_name} (as %{relation_role}) not_found: + title: Tidak Ditemukan sorry: 'Maaf, %{type} #%{id} tidak dapat ditemukan.' type: node: node/titik @@ -315,6 +329,7 @@ id: changeset: Set perubahan note: catatan timeout: + title: Galat Waktu Habis sorry: Maaf, data untuk %{type} dengan id %{id}, terlalu lama untuk dibuka. type: node: node/titik @@ -443,7 +458,7 @@ id: older_entries: Entri Lama newer_entries: Entri Baru edit: - title: Edit entri catatan harian + title: Sunting Entri Catatan Harian marker_text: Lokasi entri catatan harian show: title: Catatan harian %{user} | %{title} @@ -459,18 +474,20 @@ id: diary_entry: posted_by_html: Diterbitkan oleh %{link_user} pada %{created} dalam %{language_link} comment_link: Komentar di entri ini - reply_link: Balasan untuk entri ini + reply_link: Kirim pesan ke penulis comment_count: one: '%{count} komentar' zero: Tidak ada komentar other: '%{count} komentar' edit_link: Edit entri ini hide_link: Sembunyikan entri ini + unhide_link: Tampilkan kembali entri ini confirm: Konfirmasi report: Laporkan entri ini diary_comment: comment_from_html: Komentar dari %{link_user} pada %{comment_created_at} hide_link: Sembunyikan komentar ini + unhide_link: Tampilkan kembali komentar ini confirm: Konfirmasi report: Laporkan komentar ini location: @@ -547,6 +564,7 @@ id: bench: Bangku bicycle_parking: Parkir Sepeda bicycle_rental: Penyewaan Sepeda + bicycle_repair_station: Bengkel Sepeda biergarten: Taman Bir boat_rental: Penyewaan Perahu brothel: Bordil @@ -564,6 +582,7 @@ id: clock: Jam college: Perguruan Tinggi community_centre: Gedung Serbaguna + conference_centre: Pusat Konvensi courthouse: Gedung Pengadilan crematorium: Tempat Kremasi (Pembakaran Mayat) dentist: Dokter Gigi @@ -582,11 +601,14 @@ id: hospital: Rumah Sakit hunting_stand: Pos Berburu ice_cream: Es Krim + internet_cafe: Warung Internet kindergarten: Taman Kanak-kanak + language_school: Sekolah bahasa library: Perpustakaan marketplace: Pasar monastery: Biara motorcycle_parking: Parkir Motor + music_school: Sekolah Musik nightclub: Klub Malam nursing_home: Panti Jompo parking: Parkir @@ -599,6 +621,7 @@ id: post_office: Kantor Pos prison: Penjara pub: Pub + public_bath: Pemandian Umum public_building: Bangunan Publik recycling: Titik Daur Ulang restaurant: Restoran @@ -615,16 +638,20 @@ id: toilets: Toilet townhall: Balai Kota university: Universitas + vehicle_inspection: Pengujian Kendaraan Bermotor vending_machine: Mesin Penjual veterinary: Bedah Hewan village_hall: Balai Desa waste_basket: Keranjang Sampah waste_disposal: Tempat Pembuangan Akhir + waste_dump_site: Tempat Pembuangan Akhir + weighbridge: Jembatan Timbang boundary: administrative: Batas Administratif census: Batas Sensus national_park: Taman Nasional protected_area: Kawasan lindung + "yes": Perbatasan Wilayah bridge: aqueduct: Saluran Air suspension: Jembatan Suspensi @@ -632,24 +659,67 @@ id: viaduct: Jembatan Viaduct "yes": Jembatan building: + apartment: Apartemen + apartments: Apartemen + barn: Gudang Pertanian + bungalow: Bungalow + cabin: Kabin + chapel: Kapel + church: Bangunan Gereja + college: Bangunan Kolese + commercial: Bangunan Komersial + construction: Bangunan yang Sedang Dibangun + dormitory: Asrama + greenhouse: Rumah Kaca + hangar: Hanggar + hospital: Bangunan Rumah Sakit + hotel: Bangunan Hotel + house: Rumah + houseboat: Rumah Perahu + hut: Pondok + industrial: Bangunan Industri + kindergarten: Bangunan Taman Kanak-kanak + manufacture: Bangunan Manufaktur + office: Bangunan Kantor + public: Bangunan Publik + residential: Bangunan Perumahan + school: Bangunan Sekolah + stable: Istal + static_caravan: Karavan + temple: Bangunan Kuil + train_station: Bangunan Stasiun Kereta Api + university: Bangunan Universitas + warehouse: Gudang "yes": Bangunan + club: + sport: Klub Olahraga craft: + beekeper: Peternak Lebah + blacksmith: Tukang Besi brewery: Pabrik Bir carpenter: Tukang Kayu + caterer: Jasa Boga electrician: Tukang Listrik gardener: Tukang Kebun + handicraft: Kerajinan Tangan painter: Tukang Cat photographer: Fotografer plumber: Tukang Pipa + sawmill: Penggergajian Kayu shoemaker: Perajin Sepatu tailor: Penjahit + window_construction: Konstruksi Jendela "yes": Toko Kerajinan emergency: + access_point: Titik Akses ambulance_station: Pos Ambulans assembly_point: Titik Kumpul defibrillator: Alat Pacu Jantung + fire_xtinguisher: Alat Pemadam Api landing_site: Pintu Masuk Darurat + life_ring: Ban Pelampung Darurat phone: Telepon Darurat + siren: Sirene Darurat water_tank: Tangki Air Darurat "yes": Darurat highway: @@ -698,11 +768,14 @@ id: unclassified: Jalan Tidak Terklasifikasi "yes": Jalan historic: + aircraft: Pesawat Bersejarah archaeological_site: Situs arkeologi + bomb_crater: Kawah Bom Bersejarah battlefield: Medan perang boundary_stone: Batu Pembatas building: Bangunan Bersejarah bunker: Bunker + cannon: Meriam Bersejarah castle: Kastil church: Gereja city_gate: Gerbang Kota @@ -712,9 +785,11 @@ id: house: Rumah manor: Tanah Bangsawan memorial: Memorial + milestone: Tonggak Penanda Jarak Bersejarah mine: Tambang mine_shaft: Lubang Bukaan Tambang monument: Monumen + railway: Rel Kereta Bersejarah roman_road: Jalan Romawi ruins: Reruntuhan stone: Batu @@ -728,6 +803,7 @@ id: "yes": Persimpangan landuse: allotments: Tanah garap + aquaculture: Budi Daya Perairan basin: Cekungan brownfield: Lahan industri cemetery: Pemakaman @@ -758,8 +834,10 @@ id: vineyard: Kebun anggur "yes": Lahan Guna leisure: + amusement_arcade: Arkade Permainan beach_resort: Resort Pantai bird_hide: Tempat Observasi Burung + bowling_alley: Arena Boling common: Lahan Publik dog_park: Taman Anjing fishing: Tempat Pemancingan @@ -773,6 +851,7 @@ id: miniature_golf: Mini Golf nature_reserve: Cagar Alam park: Taman + picnic_table: Meja Piknik pitch: Lapangan Olahraga playground: Taman Bermain recreation_ground: Taman Rekreasi @@ -786,12 +865,15 @@ id: water_park: Taman Air "yes": Plesir man_made: + advertising: Iklan + antenna: Antena beacon: Sinyal Pandu beehive: Sarang Lebah breakwater: Pemecah Gelombang bridge: Jembatan bunker_silo: Bungker chimney: Cerobong Asap + communications_tower: Menara Komunikasi crane: Derek embankment: Tanggul flagpole: Tiang Bendera @@ -806,11 +888,16 @@ id: pipeline: Jalur Pipa silo: Silo storage_tank: Tangki Penyimpanan + surveillance: Pengawasan + telescope: Teleskop tower: Menara + utility_pole: Tiang Utilitas wastewater_plant: Pengolahan Limbah watermill: Kincir Air + water_tap: Keran Air water_tower: Menara Air water_well: Sumur + water_works: Penyediaan Air windmill: Kincir Angin works: Pabrik "yes": Buatan Manusia @@ -818,6 +905,7 @@ id: airfield: Lapangan Udara Militer barracks: Barak bunker: Bunker + trench: Parit "yes": Militer mountain_pass: "yes": Perlintasan Pegunungan @@ -837,6 +925,7 @@ id: grassland: Rerumputan heath: Padang Rumpur hill: Bukit + hot_spring: Mata Air Panas island: Pulau land: Lahan marsh: Rawa @@ -863,9 +952,11 @@ id: office: accountant: Akuntan administrative: Tata Usaha + advertising_agency: Agen Periklanan architect: Arsitek association: Perhimpunan company: Perusahaan + diplomatic: Kantor Diplomatik educational_institution: Institusi Pendidikan employment_agency: Badan Tenaga Kerja estate_agent: Agen Pengurus Pertanahan @@ -873,7 +964,12 @@ id: insurance: Kantor Asuransi it: Kantor TI lawyer: Pengacara + newspaper: Kantor Koran ngo: Kantor LSM + notary: Notaris + religion: Kantor Agama + research: Kantor Riset + tax_advisor: Penasihat Perpajakan telecommunication: Kantor Telekomunikasi travel_agent: Agen Perjalanan "yes": Kantor @@ -929,11 +1025,16 @@ id: tram_stop: Perhentian Trem yard: Emplasemen shop: + agrarian: Toko Pertanian alcohol: Pub (di Inggris) antiques: Toko Benda Antik + appliance: Toko Perabot art: Toko Kerajinan Tangan + baby_goods: Barang-barang Bayi + bag: Toko Tas bakery: Toko Roti beauty: Toko Kecantikan + bed: Produk Seprai beverages: Toko Minuman bicycle: Toko Sepeda bookmaker: Juru Taruh @@ -945,13 +1046,18 @@ id: car_repair: Bengkel Mobil carpet: Toko Karpet charity: Toko Amal + cheese: Toko Keju chemist: Toko Kimia + chocolate: Coklat clothes: Toko Baju + coffee: Toko Kopi computer: Toko Komputer confectionery: Toko Konfeksi convenience: Toko Serba Ada (Kecil) copyshop: Fotokopi cosmetics: Toko Kosmetik + craft: Toko Suplai Kriya + curtain: Toko Tirai deli: Siap saji department_store: Toko serba ada discount: Toko Barang Obral @@ -959,8 +1065,10 @@ id: dry_cleaning: Dry Cleaning electronics: Toko Elektronik estate_agent: Agen Properti + fabric: Toko Tekstil farm: Toko Pertanian fashion: Toko Mode + fishing: Toko Suplai Penangkapan Ikan florist: Toko Bunga food: Toko Makanan funeral_directors: Penyelenggara Pemakaman @@ -972,8 +1080,11 @@ id: grocery: Toko Sembako hairdresser: Penata Rambut hardware: Toko Perangkat Keras + hearing_aids: Alat Bantu Dengar + herbalist: Herbalis hifi: Hi-Fi houseware: Toko Peralatan Rumah Tangga + ice_cream: Toko Es Krim interior_decoration: Dekorasi Rumah jewelry: Toko Perhiasan kiosk: Kios/Warung @@ -982,24 +1093,33 @@ id: lottery: Lotere mall: Mal massage: Pijat + medical_supply: Toko Suplai Medis mobile_phone: Toko Handphone + money_lender: Peminjaman Uang motorcycle: Toko Sepeda Motor + motorcycle_repair: Bengkel Sepeda Motor music: Toko Musik + musical_instrument: Instrumen Musik newsagent: Agen Surat Kabar + nutrition_supplements: Suplemen Nutrisi optician: Optik organic: Toko Makanan Organik outdoor: Toko Barang-Barang Outdoor paint: Toko Cat + pastry: Toko Kue Pastri pawnbroker: Rumah Gadai + perfumery: Toko Parfum pet: Toko Hewan photo: Studio Foto seafood: Boga Bahari second_hand: Toko loak + sewing: Toko Jahit shoes: Toko Sepatu sports: Toko Olahraga stationery: Toko Alat Tulis supermarket: Supermarket tailor: Penjahit + tea: Toko Teh ticket: Toko Tiket tobacco: Toko Tembakau toys: Toko Mainan @@ -1008,6 +1128,8 @@ id: vacant: Toko Kosong variety_store: Toko Aneka Ragam video: Toko Video + video_games: Toko Permainan Video + wholesale: Toko Grosir wine: Toko Minuman Beralkohol "yes": Toko tourism: @@ -1073,16 +1195,18 @@ id: title: Isu select_status: Pilih Status select_type: Pilih Jenis + select_last_updated_by: Pilih Terakhir Diperbarui Oleh + reported_user: Pengguna yang Dilaporkan not_updated: Tidak Diperbarui search: Cari + search_guidance: 'Cari Isu:' user_not_found: Pengguna tidak ada issues_not_found: Isu tidak ditemukan status: Status reports: Laporan last_updated: Terakhir Diperbarui - last_updated_time_html: %{time} yang lalu - last_updated_time_user_html: %{time} yang lalu - oleh %{user} + last_updated_time_html: %{time} + last_updated_time_user_html: %{time} oleh %{user} link_to_reports: Lihat Laporan reports_count: one: 1 Laporan @@ -1120,8 +1244,10 @@ id: ignored: Status isu telah diset ke 'Diabaikan' reopen: reopened: Status isu telah diset ke 'Terbuka' + comments: + comment_from_html: Komentar dari %{user_link} pada %{comment_created_at} reports: - reported_by_html: Dilaporkan sebagai %{category} oleh %{user} + reported_by_html: Dilaporkan sebagai %{category} oleh %{user} pada %{updated_at} helper: reportable_title: diary_comment: '%{entry_title}, komentar #%{comment_id}' @@ -1142,8 +1268,14 @@ id: yang bersangkutan categories: diary_entry: + spam_label: Entri catatan harian ini adalah/mengandung spam + offensive_label: Entri catatan harian ini bersifat cabul/menyinggung + threat_label: Entri catatan harian ini mengandung ancaman other_label: Lainnya diary_comment: + spam_label: Komentar catatan pribadi ini adalah/mengandung spam + offensive_label: Komentar catatan harian ini bersifat cabul/menyinggung + threat_label: Komentar catatan harian ini mengandung ancaman other_label: Lainnya user: spam_label: Profil pengguna ini/mengandung spam @@ -1229,22 +1361,13 @@ id: had_added_you: '%{user} telah menambahkan Anda sebagai teman pada OpenStreetMap.' see_their_profile: Anda dapat melihat profilnya pada %{userurl}. befriend_them: Anda juga dapat menambahkannua sebagai teman di %{befriendurl}. - gpx_notification: - greeting: Halo, - your_gpx_file: Kelihatannya ini file GPX Anda - with_description: dengan deskripsi - and_the_tags: 'dan tag berikut:' - and_no_tags: dan tanpa tag. - failure: - subject: '[OpenStreetMap] gagal impor GPX' - failed_to_import: 'gagal melakukan impor. Berikut ini adalah kesalahannya:' - more_info_1: Informasi lebih lanjut mengenai kegagalan mengimpor GPX dan bagaimana - menghindarinya - more_info_2: 'dapat ditemukan pada:' - success: - subject: '[OpenStreetMap] impor GPX sukses' - loaded_successfully: telah berhasil dengan %{trace_points} dari %{possible_points} - titik yang mungkin. + gpx_failure: + failed_to_import: 'gagal melakukan impor. Berikut ini adalah kesalahannya:' + subject: '[OpenStreetMap] gagal impor GPX' + gpx_success: + loaded_successfully: telah berhasil dengan %{trace_points} dari %{possible_points} + titik yang mungkin. + subject: '[OpenStreetMap] impor GPX sukses' signup_confirm: subject: '[OpenStreetMap] Selamat datang di OpenStreetMap' greeting: Halo! @@ -1256,13 +1379,6 @@ id: informasi tambahan agar Anda dapat segera memulainya. email_confirm: subject: '[OpenStreetMap] Konfirmasi alamat email Anda' - email_confirm_plain: - greeting: Halo, - hopefully_you: Seseorang (semoga saja Anda) ingin mengubah alamat email pada - %{server_url} menjadi %{new_address}. - click_the_link: Jika ini adalah Anda, silahkan klik link di bawah ini untuk - mengkonfirmasi perubahan. - email_confirm_html: greeting: Halo, hopefully_you: Seseorang (semoga saja Anda) ingin mengubah alamat email pada %{server_url} menjadi %{new_address}. @@ -1270,13 +1386,6 @@ id: mengkonfirmasi perubahan. lost_password: subject: '[OpenStreetMap] Permintaan atur ulang sandi' - lost_password_plain: - greeting: Halo, - hopefully_you: Seseorang (kemungkinan Anda) telah meminta untuk mengatur ulang - password pada alamat email dari akun openstreetmap.org ini. - click_the_link: Jika ini Anda, silahkan klik link di bawah ini untuk menyetel - ulang kata sandi. - lost_password_html: greeting: Halo, hopefully_you: Seseorang (kemungkinan Anda) telah meminta untuk mengatur ulang password pada alamat email dari akun openstreetmap.org ini. @@ -1408,8 +1517,8 @@ id: about: next: Berikutnya copyright_html: ©Kontributor
- <% @note_comments[1..].each do |comment| %> + <% @note_comments.drop(1).each do |comment| %>-
<%= note_event(comment.event, comment.created_at, comment.author) %>
<%= comment.body.to_html %>
diff --git a/app/views/changesets/index.atom.builder b/app/views/changesets/index.atom.builder
index 2bbae2cc2..7fd9b5dd2 100644
--- a/app/views/changesets/index.atom.builder
+++ b/app/views/changesets/index.atom.builder
@@ -79,7 +79,7 @@ atom_feed(:language => I18n.locale, :schema_date => 2009,
lower_corner = "#{bbox.min_lat} #{bbox.min_lon}"
upper_corner = "#{bbox.max_lat} #{bbox.max_lon}"
- feed.georss :box, lower_corner + " " + upper_corner
+ feed.georss :box, "#{lower_corner} #{upper_corner}"
end
end
end
diff --git a/app/views/diary_entries/_diary_entry.html.erb b/app/views/diary_entries/_diary_entry.html.erb
index 48df5d18e..6616417a1 100644
--- a/app/views/diary_entries/_diary_entry.html.erb
+++ b/app/views/diary_entries/_diary_entry.html.erb
@@ -8,6 +8,9 @@
<%= t(".posted_by_html", :link_user => (link_to diary_entry.user.display_name, user_path(diary_entry.user)), :created => l(diary_entry.created_at, :format => :blog), :language_link => (link_to diary_entry.language.name, :controller => "diary_entries", :action => "index", :display_name => nil, :language => diary_entry.language_code)) %>
+ <% if (l(diary_entry.updated_at, :format => :blog) != l(diary_entry.created_at, :format => :blog)) %>
+ <%= t(".updated_at_html", :updated => l(diary_entry.updated_at, :format => :blog)) %>
+ <% end %>