mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
Make a few string and help page translatable. Fix the recurring todo dialog close button.
This commit is contained in:
parent
465419f46a
commit
31aa6e6516
13 changed files with 163 additions and 12 deletions
|
|
@ -13,3 +13,6 @@ Style/Documentation:
|
||||||
|
|
||||||
Style/StringLiterals:
|
Style/StringLiterals:
|
||||||
EnforcedStyle: double_quotes
|
EnforcedStyle: double_quotes
|
||||||
|
|
||||||
|
Layout/AlignParameters:
|
||||||
|
EnforcedStyle: with_fixed_indentation
|
||||||
|
|
|
||||||
|
|
@ -841,6 +841,7 @@ var RecurringTodosPage = {
|
||||||
RecurringTodosPage.reset_radio();
|
RecurringTodosPage.reset_radio();
|
||||||
$('#recurring_daily').show();
|
$('#recurring_daily').show();
|
||||||
},
|
},
|
||||||
|
closeText: 'X',
|
||||||
appendTo: "#content"
|
appendTo: "#content"
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -54,28 +54,31 @@ module ApplicationHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
def link_to_context(context, descriptor = sanitize(context.name))
|
def link_to_context(context, descriptor = sanitize(context.name))
|
||||||
link_to(descriptor, context, :title => "View context: #{context.name}")
|
link_to(descriptor, context, :title => I18n.t("contexts.view_link", :name => context.name))
|
||||||
end
|
end
|
||||||
|
|
||||||
def link_to_project(project, descriptor = sanitize(project.name))
|
def link_to_project(project, descriptor = sanitize(project.name))
|
||||||
link_to(descriptor, project, :title => "View project: #{project.name}")
|
link_to(descriptor, project, :title => I18n.t("projects.view_link", :name => project.name))
|
||||||
end
|
end
|
||||||
|
|
||||||
def link_to_edit_note(note, descriptor = sanitize(note.id.to_s))
|
def link_to_edit_note(note, descriptor = sanitize(note.id.to_s))
|
||||||
link_to(descriptor, edit_note_path(note),
|
link_to(descriptor, edit_note_path(note),
|
||||||
{ :id => "link_edit_#{dom_id(note)}", :class => "note_edit_settings" })
|
:id => "link_edit_#{dom_id(note)}", :class => "note_edit_settings")
|
||||||
end
|
end
|
||||||
|
|
||||||
def link_to_project_mobile(project, accesskey, descriptor = sanitize(project.name))
|
def link_to_project_mobile(project, accesskey, descriptor = sanitize(project.name))
|
||||||
link_to(descriptor, project_path(project, :format => 'm'), { :title => "View project: #{project.name}", :accesskey => accesskey })
|
link_to(descriptor, project_path(project, :format => 'm'),
|
||||||
|
:title => I18n.t("projects.view_link", :name => project.name), :accesskey => accesskey)
|
||||||
end
|
end
|
||||||
|
|
||||||
def item_link_to_context(item)
|
def item_link_to_context(item)
|
||||||
link_to_context(item.context, prefs.verbose_action_descriptors ? "[#{item.context.name}]" : "[C]")
|
link_to_context(item.context,
|
||||||
|
prefs.verbose_action_descriptors ? "[#{item.context.name}]" : "[" + I18n.t("contexts.letter_abbreviation") + "]")
|
||||||
end
|
end
|
||||||
|
|
||||||
def item_link_to_project(item)
|
def item_link_to_project(item)
|
||||||
link_to_project(item.project, prefs.verbose_action_descriptors ? "[#{item.project.name}]" : "[P]")
|
link_to_project(item.project,
|
||||||
|
prefs.verbose_action_descriptors ? "[#{item.project.name}]" : "[" + I18n.t("projects.letter_abbreviation") + "]")
|
||||||
end
|
end
|
||||||
|
|
||||||
def render_flash
|
def render_flash
|
||||||
|
|
|
||||||
|
|
@ -1,12 +1,12 @@
|
||||||
<h1>Help</h1>
|
<h1><%= t('help.title') %></h1>
|
||||||
|
|
||||||
<p>You can find information on the usage in the <a href="https://github.com/TracksApp/tracks/wiki/User-manual">User manual</a> in the project GitHub wiki.</p>
|
<p><%= raw t('help.usage', :manual_link => '<a href="https://github.com/TracksApp/tracks/wiki/User-manual">' + t('help.manual_link_text') + '</a>') %></p>
|
||||||
|
|
||||||
<p>If you encounter a bug or have a feature request, please report it in the <a href="https://github.com/TracksApp/tracks/issues">issue queue</a>.</p>
|
<p><%= raw t('help.bugs', :issue_link => '<a href="https://github.com/TracksApp/tracks/issues">' + t('help.issue_link_text') + '</a>') %></p>
|
||||||
|
|
||||||
<p>We gladly welcome all contributions to Tracks. Check the <a href="https://www.getontracks.org/contribute/">project website</a> for further information. You can also come discuss with the community:</p>
|
<p><%= raw t('help.contribute', :contribute_link => '<a href="https://www.getontracks.org/contribute/">' + t('help.contribute_link_text') + '</a>') %></p>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="http://groups.google.com/group/TracksApp">Mailing list</a></li>
|
<li><a href="http://groups.google.com/group/TracksApp"><%= t('help.mailing_list_link_text') %></a></li>
|
||||||
<li><a href="https://webchat.freenode.net/#Tracks">IRC channel #Tracks@FreeNode</a> (also available in <a href="https://matrix.to/#/#tracks:matrix.org">Matrix</a>)</li>
|
<li><%= raw t('help.irc_bullet', :irc_link => '<a href="https://webchat.freenode.net/#Tracks">' + t('help.irc_link_text') + '</a>', :matrix_link => '<a href="https://matrix.to/#/#tracks:matrix.org">' + t('help.matrix_link_text') + '</a>') %></li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
|
||||||
|
|
@ -174,6 +174,7 @@ cs:
|
||||||
hide_form: Schovat formulář
|
hide_form: Schovat formulář
|
||||||
hide_form_title: Schovat formulář
|
hide_form_title: Schovat formulář
|
||||||
last_completed_in_context: v tomto kontextu (posledních %{number})
|
last_completed_in_context: v tomto kontextu (posledních %{number})
|
||||||
|
letter_abbreviation: C
|
||||||
new_context_post: "' bude také vytvořen. Opravdu?"
|
new_context_post: "' bude také vytvořen. Opravdu?"
|
||||||
new_context_pre: Nový kontext '
|
new_context_pre: Nový kontext '
|
||||||
no_contexts_: 'No contexts '
|
no_contexts_: 'No contexts '
|
||||||
|
|
@ -187,6 +188,7 @@ cs:
|
||||||
status_hidden: kontext je skrytý
|
status_hidden: kontext je skrytý
|
||||||
todos_append: v této souvislosti
|
todos_append: v této souvislosti
|
||||||
update_status_message: Název kontextu byl změněn
|
update_status_message: Název kontextu byl změněn
|
||||||
|
view_link: 'View context: %{name}'
|
||||||
visible_contexts: Viditelné kontexty
|
visible_contexts: Viditelné kontexty
|
||||||
data:
|
data:
|
||||||
import_destination_invalid: Invalid import destination
|
import_destination_invalid: Invalid import destination
|
||||||
|
|
@ -355,6 +357,18 @@ cs:
|
||||||
update: Обновить %{model}
|
update: Обновить %{model}
|
||||||
integrations:
|
integrations:
|
||||||
opensearch_description: Prohledat Tracks
|
opensearch_description: Prohledat Tracks
|
||||||
|
help:
|
||||||
|
title: Help
|
||||||
|
usage: 'You can find information on the usage in the %{manual_link} in the project GitHub wiki.'
|
||||||
|
manual_link_text: User manual
|
||||||
|
bugs: 'If you encounter a bug or have a feature request, please report it in the %{issue_link}.'
|
||||||
|
issue_link_text: issue queue
|
||||||
|
contribute: 'We gladly welcome all contributions to Tracks. Check the %{contribute_link} for further information. You can also come discuss with the community:'
|
||||||
|
contribute_link_text: project website
|
||||||
|
mailing_list_link_text: Mailing list
|
||||||
|
irc_bullet: '%{irc_link} (also available in %{matrix_link})'
|
||||||
|
irc_link_text: 'IRC channel #Tracks@FreeNode'
|
||||||
|
matrix_link_text: Matrix
|
||||||
layouts:
|
layouts:
|
||||||
mobile_navigation:
|
mobile_navigation:
|
||||||
calendar: Calendar
|
calendar: Calendar
|
||||||
|
|
@ -579,6 +593,7 @@ cs:
|
||||||
hide_form_title: Schovat formulář založení projektu
|
hide_form_title: Schovat formulář založení projektu
|
||||||
is_active: je aktivní
|
is_active: je aktivní
|
||||||
last_completed_in_project: "(last %{number})"
|
last_completed_in_project: "(last %{number})"
|
||||||
|
letter_abbreviation: P
|
||||||
list_completed_projects: TRACKS::Hotové projekty
|
list_completed_projects: TRACKS::Hotové projekty
|
||||||
list_projects: TRACKS::Projekty
|
list_projects: TRACKS::Projekty
|
||||||
list_reviews: TRACKS::Revize
|
list_reviews: TRACKS::Revize
|
||||||
|
|
@ -601,6 +616,7 @@ cs:
|
||||||
status_project_name_changed: Jméno projektu bylo změněno
|
status_project_name_changed: Jméno projektu bylo změněno
|
||||||
this_project: Tento projekt
|
this_project: Tento projekt
|
||||||
to_new_project_page: přejít k novému projektu
|
to_new_project_page: přejít k novému projektu
|
||||||
|
view_link: 'View project: %{name}'
|
||||||
was_marked_complete: byl označen jako hotový
|
was_marked_complete: byl označen jako hotový
|
||||||
was_marked_hidden: byl označen jako skrytý
|
was_marked_hidden: byl označen jako skrytý
|
||||||
with_default_context: s výchozím kontextem '%{context_name}'
|
with_default_context: s výchozím kontextem '%{context_name}'
|
||||||
|
|
|
||||||
|
|
@ -176,6 +176,7 @@ de:
|
||||||
hide_form: Formular verstecken
|
hide_form: Formular verstecken
|
||||||
hide_form_title: Formular für neuen Kontext verstecken
|
hide_form_title: Formular für neuen Kontext verstecken
|
||||||
last_completed_in_context: in diesem Kontext (letzte %{number})
|
last_completed_in_context: in diesem Kontext (letzte %{number})
|
||||||
|
letter_abbreviation: C
|
||||||
new_context_post: "' wird ebenfalls angelegt. Fortfahren?"
|
new_context_post: "' wird ebenfalls angelegt. Fortfahren?"
|
||||||
new_context_pre: Der neue Kontext '
|
new_context_pre: Der neue Kontext '
|
||||||
no_contexts_: 'No contexts '
|
no_contexts_: 'No contexts '
|
||||||
|
|
@ -189,6 +190,7 @@ de:
|
||||||
status_hidden: Kontext ist versteckt
|
status_hidden: Kontext ist versteckt
|
||||||
todos_append: in diesem Kontext
|
todos_append: in diesem Kontext
|
||||||
update_status_message: Kontextname wurde geändert
|
update_status_message: Kontextname wurde geändert
|
||||||
|
view_link: 'View context: %{name}'
|
||||||
visible_contexts: Sichtbare Kontexte
|
visible_contexts: Sichtbare Kontexte
|
||||||
data:
|
data:
|
||||||
import_destination_invalid: Invalid import destination
|
import_destination_invalid: Invalid import destination
|
||||||
|
|
@ -361,6 +363,18 @@ de:
|
||||||
update: Обновить %{model}
|
update: Обновить %{model}
|
||||||
integrations:
|
integrations:
|
||||||
opensearch_description: In Tracks suchen
|
opensearch_description: In Tracks suchen
|
||||||
|
help:
|
||||||
|
title: Help
|
||||||
|
usage: 'You can find information on the usage in the %{manual_link} in the project GitHub wiki.'
|
||||||
|
manual_link_text: User manual
|
||||||
|
bugs: 'If you encounter a bug or have a feature request, please report it in the %{issue_link}.'
|
||||||
|
issue_link_text: issue queue
|
||||||
|
contribute: 'We gladly welcome all contributions to Tracks. Check the %{contribute_link} for further information. You can also come discuss with the community:'
|
||||||
|
contribute_link_text: project website
|
||||||
|
mailing_list_link_text: Mailing list
|
||||||
|
irc_bullet: '%{irc_link} (also available in %{matrix_link})'
|
||||||
|
irc_link_text: 'IRC channel #Tracks@FreeNode'
|
||||||
|
matrix_link_text: Matrix
|
||||||
layouts:
|
layouts:
|
||||||
mobile_navigation:
|
mobile_navigation:
|
||||||
calendar: Kalender
|
calendar: Kalender
|
||||||
|
|
@ -595,6 +609,7 @@ de:
|
||||||
hide_form_title: Formular verstecken
|
hide_form_title: Formular verstecken
|
||||||
is_active: ist aktiv
|
is_active: ist aktiv
|
||||||
last_completed_in_project: "(last %{number})"
|
last_completed_in_project: "(last %{number})"
|
||||||
|
letter_abbreviation: P
|
||||||
list_completed_projects: TRACKS::Liste erledigter Projekte
|
list_completed_projects: TRACKS::Liste erledigter Projekte
|
||||||
list_projects: TRACKS::Projektliste
|
list_projects: TRACKS::Projektliste
|
||||||
list_reviews: TRACKS::Rückblick
|
list_reviews: TRACKS::Rückblick
|
||||||
|
|
@ -617,6 +632,7 @@ de:
|
||||||
status_project_name_changed: Projektname geändert
|
status_project_name_changed: Projektname geändert
|
||||||
this_project: Dieses Projekt
|
this_project: Dieses Projekt
|
||||||
to_new_project_page: Zu neuem Projekt weiterleiten
|
to_new_project_page: Zu neuem Projekt weiterleiten
|
||||||
|
view_link: 'View project: %{name}'
|
||||||
was_marked_complete: wurde als erledigt markiert
|
was_marked_complete: wurde als erledigt markiert
|
||||||
was_marked_hidden: wurde als verborgen markiert
|
was_marked_hidden: wurde als verborgen markiert
|
||||||
with_default_context: mit dem Standard-Kontext '%{context_name}'
|
with_default_context: mit dem Standard-Kontext '%{context_name}'
|
||||||
|
|
|
||||||
|
|
@ -178,6 +178,7 @@ en:
|
||||||
hide_form: Hide form
|
hide_form: Hide form
|
||||||
hide_form_title: Hide new context form
|
hide_form_title: Hide new context form
|
||||||
last_completed_in_context: "(last %{number})"
|
last_completed_in_context: "(last %{number})"
|
||||||
|
letter_abbreviation: C
|
||||||
new_context_post: "' will be also created. Are you sure?"
|
new_context_post: "' will be also created. Are you sure?"
|
||||||
new_context_pre: New context '
|
new_context_pre: New context '
|
||||||
no_contexts_: 'No contexts '
|
no_contexts_: 'No contexts '
|
||||||
|
|
@ -191,6 +192,7 @@ en:
|
||||||
status_hidden: Context is hidden
|
status_hidden: Context is hidden
|
||||||
todos_append: in this context
|
todos_append: in this context
|
||||||
update_status_message: Name of context was changed
|
update_status_message: Name of context was changed
|
||||||
|
view_link: 'View context: %{name}'
|
||||||
visible_contexts: Visible contexts
|
visible_contexts: Visible contexts
|
||||||
data:
|
data:
|
||||||
import_destination_invalid: Invalid import destination
|
import_destination_invalid: Invalid import destination
|
||||||
|
|
@ -365,6 +367,18 @@ en:
|
||||||
update: Update %{model}
|
update: Update %{model}
|
||||||
integrations:
|
integrations:
|
||||||
opensearch_description: Search in Tracks
|
opensearch_description: Search in Tracks
|
||||||
|
help:
|
||||||
|
title: Help
|
||||||
|
usage: 'You can find information on the usage in the %{manual_link} in the project GitHub wiki.'
|
||||||
|
manual_link_text: User manual
|
||||||
|
bugs: 'If you encounter a bug or have a feature request, please report it in the %{issue_link}.'
|
||||||
|
issue_link_text: issue queue
|
||||||
|
contribute: 'We gladly welcome all contributions to Tracks. Check the %{contribute_link} for further information. You can also come discuss with the community:'
|
||||||
|
contribute_link_text: project website
|
||||||
|
mailing_list_link_text: Mailing list
|
||||||
|
irc_bullet: '%{irc_link} (also available in %{matrix_link})'
|
||||||
|
irc_link_text: 'IRC channel #Tracks@FreeNode'
|
||||||
|
matrix_link_text: Matrix
|
||||||
layouts:
|
layouts:
|
||||||
mobile_navigation:
|
mobile_navigation:
|
||||||
calendar: Calendar
|
calendar: Calendar
|
||||||
|
|
@ -596,6 +610,7 @@ en:
|
||||||
hide_form_title: Hide new project form
|
hide_form_title: Hide new project form
|
||||||
is_active: is active
|
is_active: is active
|
||||||
last_completed_in_project: "(last %{number})"
|
last_completed_in_project: "(last %{number})"
|
||||||
|
letter_abbreviation: P
|
||||||
list_completed_projects: TRACKS::List Completed Projects
|
list_completed_projects: TRACKS::List Completed Projects
|
||||||
list_projects: TRACKS::List Projects
|
list_projects: TRACKS::List Projects
|
||||||
list_reviews: TRACKS::Review
|
list_reviews: TRACKS::Review
|
||||||
|
|
@ -618,6 +633,7 @@ en:
|
||||||
status_project_name_changed: Name of project was changed
|
status_project_name_changed: Name of project was changed
|
||||||
this_project: This project
|
this_project: This project
|
||||||
to_new_project_page: Take me to the new project page
|
to_new_project_page: Take me to the new project page
|
||||||
|
view_link: 'View project: %{name}'
|
||||||
was_marked_complete: has been marked as completed
|
was_marked_complete: has been marked as completed
|
||||||
was_marked_hidden: has been marked as hidden
|
was_marked_hidden: has been marked as hidden
|
||||||
with_default_context: with a default context of '%{context_name}'
|
with_default_context: with a default context of '%{context_name}'
|
||||||
|
|
|
||||||
|
|
@ -174,6 +174,7 @@ es:
|
||||||
hide_form: Esconder formulario
|
hide_form: Esconder formulario
|
||||||
hide_form_title: Ocultar el formulario nuevo contexto
|
hide_form_title: Ocultar el formulario nuevo contexto
|
||||||
last_completed_in_context: en este contexto (últimos %{number})
|
last_completed_in_context: en este contexto (últimos %{number})
|
||||||
|
letter_abbreviation: C
|
||||||
new_context_post: "' También se ha creado. ¿Está seguro?"
|
new_context_post: "' También se ha creado. ¿Está seguro?"
|
||||||
new_context_pre: Nuevo contexto '
|
new_context_pre: Nuevo contexto '
|
||||||
no_contexts_: 'No contexts '
|
no_contexts_: 'No contexts '
|
||||||
|
|
@ -187,6 +188,7 @@ es:
|
||||||
status_hidden: Contexto se oculta
|
status_hidden: Contexto se oculta
|
||||||
todos_append: en este contexto
|
todos_append: en este contexto
|
||||||
update_status_message: Nombre de contexto ha cambiado
|
update_status_message: Nombre de contexto ha cambiado
|
||||||
|
view_link: 'View context: %{name}'
|
||||||
visible_contexts: Contextos visible
|
visible_contexts: Contextos visible
|
||||||
data:
|
data:
|
||||||
import_destination_invalid: Invalid import destination
|
import_destination_invalid: Invalid import destination
|
||||||
|
|
@ -352,6 +354,18 @@ es:
|
||||||
update: Обновить %{model}
|
update: Обновить %{model}
|
||||||
integrations:
|
integrations:
|
||||||
opensearch_description: Buscar en las Tracks
|
opensearch_description: Buscar en las Tracks
|
||||||
|
help:
|
||||||
|
title: Help
|
||||||
|
usage: 'You can find information on the usage in the %{manual_link} in the project GitHub wiki.'
|
||||||
|
manual_link_text: User manual
|
||||||
|
bugs: 'If you encounter a bug or have a feature request, please report it in the %{issue_link}.'
|
||||||
|
issue_link_text: issue queue
|
||||||
|
contribute: 'We gladly welcome all contributions to Tracks. Check the %{contribute_link} for further information. You can also come discuss with the community:'
|
||||||
|
contribute_link_text: project website
|
||||||
|
mailing_list_link_text: Mailing list
|
||||||
|
irc_bullet: '%{irc_link} (also available in %{matrix_link})'
|
||||||
|
irc_link_text: 'IRC channel #Tracks@FreeNode'
|
||||||
|
matrix_link_text: Matrix
|
||||||
layouts:
|
layouts:
|
||||||
mobile_navigation:
|
mobile_navigation:
|
||||||
calendar: Calendar
|
calendar: Calendar
|
||||||
|
|
@ -576,6 +590,7 @@ es:
|
||||||
hide_form_title: Hide new project form
|
hide_form_title: Hide new project form
|
||||||
is_active: está activo
|
is_active: está activo
|
||||||
last_completed_in_project: "(last %{number})"
|
last_completed_in_project: "(last %{number})"
|
||||||
|
letter_abbreviation: P
|
||||||
list_completed_projects: 'TRACKS:: Lista de Proyectos Realizados'
|
list_completed_projects: 'TRACKS:: Lista de Proyectos Realizados'
|
||||||
list_projects: TRACKS::Lista de Proyectos
|
list_projects: TRACKS::Lista de Proyectos
|
||||||
list_reviews: TRACKS::Revisión
|
list_reviews: TRACKS::Revisión
|
||||||
|
|
@ -598,6 +613,7 @@ es:
|
||||||
status_project_name_changed: Name of project was changed
|
status_project_name_changed: Name of project was changed
|
||||||
this_project: Este proyecto
|
this_project: Este proyecto
|
||||||
to_new_project_page: Take me to the new project page
|
to_new_project_page: Take me to the new project page
|
||||||
|
view_link: 'View project: %{name}'
|
||||||
was_marked_complete: has been marked as completed
|
was_marked_complete: has been marked as completed
|
||||||
was_marked_hidden: has been marked as hidden
|
was_marked_hidden: has been marked as hidden
|
||||||
with_default_context: with a default context of '%{context_name}'
|
with_default_context: with a default context of '%{context_name}'
|
||||||
|
|
|
||||||
|
|
@ -176,6 +176,7 @@ fi:
|
||||||
hide_form: Piilota lomake
|
hide_form: Piilota lomake
|
||||||
hide_form_title: Piilota asiayhteyden lisäyslomake
|
hide_form_title: Piilota asiayhteyden lisäyslomake
|
||||||
last_completed_in_context: "(last %{number})"
|
last_completed_in_context: "(last %{number})"
|
||||||
|
letter_abbreviation: C
|
||||||
new_context_post: "' will be also created. Are you sure?"
|
new_context_post: "' will be also created. Are you sure?"
|
||||||
new_context_pre: New context '
|
new_context_pre: New context '
|
||||||
no_contexts_: 'No contexts '
|
no_contexts_: 'No contexts '
|
||||||
|
|
@ -189,6 +190,7 @@ fi:
|
||||||
status_hidden: Context is hidden
|
status_hidden: Context is hidden
|
||||||
todos_append: in this context
|
todos_append: in this context
|
||||||
update_status_message: Name of context was changed
|
update_status_message: Name of context was changed
|
||||||
|
view_link: 'View context: %{name}'
|
||||||
visible_contexts: Näkyvät asiayhteydet
|
visible_contexts: Näkyvät asiayhteydet
|
||||||
data:
|
data:
|
||||||
import_destination_invalid: Invalid import destination
|
import_destination_invalid: Invalid import destination
|
||||||
|
|
@ -362,6 +364,18 @@ fi:
|
||||||
update: Обновить %{model}
|
update: Обновить %{model}
|
||||||
integrations:
|
integrations:
|
||||||
opensearch_description: Search in Tracks
|
opensearch_description: Search in Tracks
|
||||||
|
help:
|
||||||
|
title: Help
|
||||||
|
usage: 'You can find information on the usage in the %{manual_link} in the project GitHub wiki.'
|
||||||
|
manual_link_text: User manual
|
||||||
|
bugs: 'If you encounter a bug or have a feature request, please report it in the %{issue_link}.'
|
||||||
|
issue_link_text: issue queue
|
||||||
|
contribute: 'We gladly welcome all contributions to Tracks. Check the %{contribute_link} for further information. You can also come discuss with the community:'
|
||||||
|
contribute_link_text: project website
|
||||||
|
mailing_list_link_text: Mailing list
|
||||||
|
irc_bullet: '%{irc_link} (also available in %{matrix_link})'
|
||||||
|
irc_link_text: 'IRC channel #Tracks@FreeNode'
|
||||||
|
matrix_link_text: Matrix
|
||||||
layouts:
|
layouts:
|
||||||
mobile_navigation:
|
mobile_navigation:
|
||||||
calendar: Calendar
|
calendar: Calendar
|
||||||
|
|
@ -593,6 +607,7 @@ fi:
|
||||||
hide_form_title: Hide new project form
|
hide_form_title: Hide new project form
|
||||||
is_active: is active
|
is_active: is active
|
||||||
last_completed_in_project: "(last %{number})"
|
last_completed_in_project: "(last %{number})"
|
||||||
|
letter_abbreviation: P
|
||||||
list_completed_projects: TRACKS::List Completed Projects
|
list_completed_projects: TRACKS::List Completed Projects
|
||||||
list_projects: TRACKS::List Projects
|
list_projects: TRACKS::List Projects
|
||||||
list_reviews: TRACKS::Review
|
list_reviews: TRACKS::Review
|
||||||
|
|
@ -615,6 +630,7 @@ fi:
|
||||||
status_project_name_changed: Name of project was changed
|
status_project_name_changed: Name of project was changed
|
||||||
this_project: This project
|
this_project: This project
|
||||||
to_new_project_page: Take me to the new project page
|
to_new_project_page: Take me to the new project page
|
||||||
|
view_link: 'View project: %{name}'
|
||||||
was_marked_complete: has been marked as completed
|
was_marked_complete: has been marked as completed
|
||||||
was_marked_hidden: has been marked as hidden
|
was_marked_hidden: has been marked as hidden
|
||||||
with_default_context: with a default context of '%{context_name}'
|
with_default_context: with a default context of '%{context_name}'
|
||||||
|
|
|
||||||
|
|
@ -177,6 +177,7 @@ fr:
|
||||||
hide_form: Cacher le formulaire
|
hide_form: Cacher le formulaire
|
||||||
hide_form_title: Cacher le formulaire nouveau contexte
|
hide_form_title: Cacher le formulaire nouveau contexte
|
||||||
last_completed_in_context: dans ce contexte (dernier %{number})
|
last_completed_in_context: dans ce contexte (dernier %{number})
|
||||||
|
letter_abbreviation: C
|
||||||
new_context_post: "?» sera aussi créé. Êtes-vous sûr ?"
|
new_context_post: "?» sera aussi créé. Êtes-vous sûr ?"
|
||||||
new_context_pre: Nouveau contexte '
|
new_context_pre: Nouveau contexte '
|
||||||
no_contexts_: 'Aucun contexte '
|
no_contexts_: 'Aucun contexte '
|
||||||
|
|
@ -190,6 +191,7 @@ fr:
|
||||||
status_hidden: Le Contexte est caché
|
status_hidden: Le Contexte est caché
|
||||||
todos_append: dans ce contexte
|
todos_append: dans ce contexte
|
||||||
update_status_message: Le nom du contexte a été modifié
|
update_status_message: Le nom du contexte a été modifié
|
||||||
|
view_link: 'View context: %{name}'
|
||||||
visible_contexts: Contextes visibles
|
visible_contexts: Contextes visibles
|
||||||
data:
|
data:
|
||||||
import_destination_invalid: Destination d'importation non valide
|
import_destination_invalid: Destination d'importation non valide
|
||||||
|
|
@ -360,6 +362,18 @@ fr:
|
||||||
update: Mettre à jour %{model}
|
update: Mettre à jour %{model}
|
||||||
integrations:
|
integrations:
|
||||||
opensearch_description: Rechercher dans Tracks
|
opensearch_description: Rechercher dans Tracks
|
||||||
|
help:
|
||||||
|
title: Help
|
||||||
|
usage: 'You can find information on the usage in the %{manual_link} in the project GitHub wiki.'
|
||||||
|
manual_link_text: User manual
|
||||||
|
bugs: 'If you encounter a bug or have a feature request, please report it in the %{issue_link}.'
|
||||||
|
issue_link_text: issue queue
|
||||||
|
contribute: 'We gladly welcome all contributions to Tracks. Check the %{contribute_link} for further information. You can also come discuss with the community:'
|
||||||
|
contribute_link_text: project website
|
||||||
|
mailing_list_link_text: Mailing list
|
||||||
|
irc_bullet: '%{irc_link} (also available in %{matrix_link})'
|
||||||
|
irc_link_text: 'IRC channel #Tracks@FreeNode'
|
||||||
|
matrix_link_text: Matrix
|
||||||
layouts:
|
layouts:
|
||||||
mobile_navigation:
|
mobile_navigation:
|
||||||
calendar: Calendrier
|
calendar: Calendrier
|
||||||
|
|
@ -592,6 +606,7 @@ fr:
|
||||||
hide_form_title: Cacher le formulaire nouveau projet
|
hide_form_title: Cacher le formulaire nouveau projet
|
||||||
is_active: est actif
|
is_active: est actif
|
||||||
last_completed_in_project: "(dernier %{number})"
|
last_completed_in_project: "(dernier %{number})"
|
||||||
|
letter_abbreviation: P
|
||||||
list_completed_projects: TRACKS::Liste des projets achevés
|
list_completed_projects: TRACKS::Liste des projets achevés
|
||||||
list_projects: TRACKS::Liste des projets
|
list_projects: TRACKS::Liste des projets
|
||||||
list_reviews: TRACKS::Revue
|
list_reviews: TRACKS::Revue
|
||||||
|
|
@ -614,6 +629,7 @@ fr:
|
||||||
status_project_name_changed: Le nom du projet a été modifié
|
status_project_name_changed: Le nom du projet a été modifié
|
||||||
this_project: Ce projet
|
this_project: Ce projet
|
||||||
to_new_project_page: Aller à la page du nouveau projet
|
to_new_project_page: Aller à la page du nouveau projet
|
||||||
|
view_link: 'View project: %{name}'
|
||||||
was_marked_complete: est complété
|
was_marked_complete: est complété
|
||||||
was_marked_hidden: est caché
|
was_marked_hidden: est caché
|
||||||
with_default_context: avec '%{context_name}' comme contexte par défaut
|
with_default_context: avec '%{context_name}' comme contexte par défaut
|
||||||
|
|
|
||||||
|
|
@ -174,6 +174,7 @@ he:
|
||||||
hide_form: הסתרת טופס
|
hide_form: הסתרת טופס
|
||||||
hide_form_title: הסתרת טופס הקשר חדש
|
hide_form_title: הסתרת טופס הקשר חדש
|
||||||
last_completed_in_context: בהקשר זה (אחרונות %{number})
|
last_completed_in_context: בהקשר זה (אחרונות %{number})
|
||||||
|
letter_abbreviation: C
|
||||||
new_context_post: "' יווצרו בנוסף. האם להמשיך?"
|
new_context_post: "' יווצרו בנוסף. האם להמשיך?"
|
||||||
new_context_pre: הקשר חדש '
|
new_context_pre: הקשר חדש '
|
||||||
no_contexts_: 'No contexts '
|
no_contexts_: 'No contexts '
|
||||||
|
|
@ -187,6 +188,7 @@ he:
|
||||||
status_hidden: ההקשר מוסתר
|
status_hidden: ההקשר מוסתר
|
||||||
todos_append: בהקשר זה
|
todos_append: בהקשר זה
|
||||||
update_status_message: שונה שם ההקשר
|
update_status_message: שונה שם ההקשר
|
||||||
|
view_link: 'View context: %{name}'
|
||||||
visible_contexts: הקשרים גלויים
|
visible_contexts: הקשרים גלויים
|
||||||
data:
|
data:
|
||||||
import_destination_invalid: Invalid import destination
|
import_destination_invalid: Invalid import destination
|
||||||
|
|
@ -312,6 +314,18 @@ he:
|
||||||
update: Обновить %{model}
|
update: Обновить %{model}
|
||||||
integrations:
|
integrations:
|
||||||
opensearch_description: חיפוש במסלולים
|
opensearch_description: חיפוש במסלולים
|
||||||
|
help:
|
||||||
|
title: Help
|
||||||
|
usage: 'You can find information on the usage in the %{manual_link} in the project GitHub wiki.'
|
||||||
|
manual_link_text: User manual
|
||||||
|
bugs: 'If you encounter a bug or have a feature request, please report it in the %{issue_link}.'
|
||||||
|
issue_link_text: issue queue
|
||||||
|
contribute: 'We gladly welcome all contributions to Tracks. Check the %{contribute_link} for further information. You can also come discuss with the community:'
|
||||||
|
contribute_link_text: project website
|
||||||
|
mailing_list_link_text: Mailing list
|
||||||
|
irc_bullet: '%{irc_link} (also available in %{matrix_link})'
|
||||||
|
irc_link_text: 'IRC channel #Tracks@FreeNode'
|
||||||
|
matrix_link_text: Matrix
|
||||||
layouts:
|
layouts:
|
||||||
mobile_navigation:
|
mobile_navigation:
|
||||||
calendar: Calendar
|
calendar: Calendar
|
||||||
|
|
@ -534,6 +548,7 @@ he:
|
||||||
hide_form_title: הסתרת טופס פרוייקט חדש
|
hide_form_title: הסתרת טופס פרוייקט חדש
|
||||||
is_active: פעיל
|
is_active: פעיל
|
||||||
last_completed_in_project: "(last %{number})"
|
last_completed_in_project: "(last %{number})"
|
||||||
|
letter_abbreviation: P
|
||||||
list_completed_projects: מסלולים::רשימת הפרוייקטים שהולשמו
|
list_completed_projects: מסלולים::רשימת הפרוייקטים שהולשמו
|
||||||
list_projects: מסלולים::רשימת פרוייקטים
|
list_projects: מסלולים::רשימת פרוייקטים
|
||||||
list_reviews: מסלולים::סקירה
|
list_reviews: מסלולים::סקירה
|
||||||
|
|
@ -556,6 +571,7 @@ he:
|
||||||
status_project_name_changed: שם הפרוייקט שונה
|
status_project_name_changed: שם הפרוייקט שונה
|
||||||
this_project: פרוייקט זה
|
this_project: פרוייקט זה
|
||||||
to_new_project_page: עבור לעמוד הפרוייקט החדש
|
to_new_project_page: עבור לעמוד הפרוייקט החדש
|
||||||
|
view_link: 'View project: %{name}'
|
||||||
was_marked_complete: סומן כבוצע
|
was_marked_complete: סומן כבוצע
|
||||||
was_marked_hidden: סומן כמוסתר
|
was_marked_hidden: סומן כמוסתר
|
||||||
with_default_context: עם הקשר בירת מחדל '%{context_name}'
|
with_default_context: עם הקשר בירת מחדל '%{context_name}'
|
||||||
|
|
|
||||||
|
|
@ -174,6 +174,7 @@ nl:
|
||||||
hide_form: Verberg formulier
|
hide_form: Verberg formulier
|
||||||
hide_form_title: Verberg formulier voor nieuwe context
|
hide_form_title: Verberg formulier voor nieuwe context
|
||||||
last_completed_in_context: in deze context (laatste %{number})
|
last_completed_in_context: in deze context (laatste %{number})
|
||||||
|
letter_abbreviation: C
|
||||||
new_context_post: "' zal ook gemaakt worden. Weet u dit zeker?"
|
new_context_post: "' zal ook gemaakt worden. Weet u dit zeker?"
|
||||||
new_context_pre: Nieuwe context '
|
new_context_pre: Nieuwe context '
|
||||||
no_contexts_: 'No contexts '
|
no_contexts_: 'No contexts '
|
||||||
|
|
@ -187,6 +188,7 @@ nl:
|
||||||
status_hidden: Context is verborgen
|
status_hidden: Context is verborgen
|
||||||
todos_append: in deze context
|
todos_append: in deze context
|
||||||
update_status_message: Naam van de context was veranderd
|
update_status_message: Naam van de context was veranderd
|
||||||
|
view_link: 'View context: %{name}'
|
||||||
visible_contexts: Zichtbare contexten
|
visible_contexts: Zichtbare contexten
|
||||||
data:
|
data:
|
||||||
import_destination_invalid: Verkeerde bestemming voor import
|
import_destination_invalid: Verkeerde bestemming voor import
|
||||||
|
|
@ -355,6 +357,18 @@ nl:
|
||||||
update: Bijwerken %{model}
|
update: Bijwerken %{model}
|
||||||
integrations:
|
integrations:
|
||||||
opensearch_description: Zoek in Tracks
|
opensearch_description: Zoek in Tracks
|
||||||
|
help:
|
||||||
|
title: Help
|
||||||
|
usage: 'You can find information on the usage in the %{manual_link} in the project GitHub wiki.'
|
||||||
|
manual_link_text: User manual
|
||||||
|
bugs: 'If you encounter a bug or have a feature request, please report it in the %{issue_link}.'
|
||||||
|
issue_link_text: issue queue
|
||||||
|
contribute: 'We gladly welcome all contributions to Tracks. Check the %{contribute_link} for further information. You can also come discuss with the community:'
|
||||||
|
contribute_link_text: project website
|
||||||
|
mailing_list_link_text: Mailing list
|
||||||
|
irc_bullet: '%{irc_link} (also available in %{matrix_link})'
|
||||||
|
irc_link_text: 'IRC channel #Tracks@FreeNode'
|
||||||
|
matrix_link_text: Matrix
|
||||||
layouts:
|
layouts:
|
||||||
mobile_navigation:
|
mobile_navigation:
|
||||||
calendar: Calendar
|
calendar: Calendar
|
||||||
|
|
@ -579,6 +593,7 @@ nl:
|
||||||
hide_form_title: Verberg nieuw project formulier
|
hide_form_title: Verberg nieuw project formulier
|
||||||
is_active: is actief
|
is_active: is actief
|
||||||
last_completed_in_project: "(laatste %{number})"
|
last_completed_in_project: "(laatste %{number})"
|
||||||
|
letter_abbreviation: P
|
||||||
list_completed_projects: TRACKS::Toon afgeronde projecten
|
list_completed_projects: TRACKS::Toon afgeronde projecten
|
||||||
list_projects: 'TRACKS:: Overzicht van projecten'
|
list_projects: 'TRACKS:: Overzicht van projecten'
|
||||||
list_reviews: TRACKS::Evaluatie
|
list_reviews: TRACKS::Evaluatie
|
||||||
|
|
@ -601,6 +616,7 @@ nl:
|
||||||
status_project_name_changed: Naam van het project werd gewijzigd
|
status_project_name_changed: Naam van het project werd gewijzigd
|
||||||
this_project: Dit project
|
this_project: Dit project
|
||||||
to_new_project_page: Ga naar de nieuwe projectpagina
|
to_new_project_page: Ga naar de nieuwe projectpagina
|
||||||
|
view_link: 'View project: %{name}'
|
||||||
was_marked_complete: is gemarkeerd als voltooid
|
was_marked_complete: is gemarkeerd als voltooid
|
||||||
was_marked_hidden: is gemarkeerd als verborgen
|
was_marked_hidden: is gemarkeerd als verborgen
|
||||||
with_default_context: met een standaard context '%{context_name}'
|
with_default_context: met een standaard context '%{context_name}'
|
||||||
|
|
|
||||||
|
|
@ -177,6 +177,7 @@ ru:
|
||||||
hide_form: Скрыть форму
|
hide_form: Скрыть форму
|
||||||
hide_form_title: Скрыть форму нового контекста
|
hide_form_title: Скрыть форму нового контекста
|
||||||
last_completed_in_context: "(осталось %{number})"
|
last_completed_in_context: "(осталось %{number})"
|
||||||
|
letter_abbreviation: C
|
||||||
new_context_post: "' будет также создан. Вы уверены?"
|
new_context_post: "' будет также создан. Вы уверены?"
|
||||||
new_context_pre: Новый контекст '
|
new_context_pre: Новый контекст '
|
||||||
no_contexts_: 'No contexts '
|
no_contexts_: 'No contexts '
|
||||||
|
|
@ -190,6 +191,7 @@ ru:
|
||||||
status_hidden: Контекст скрыт
|
status_hidden: Контекст скрыт
|
||||||
todos_append: в этом контексте
|
todos_append: в этом контексте
|
||||||
update_status_message: Имя контекста было изменено
|
update_status_message: Имя контекста было изменено
|
||||||
|
view_link: 'View context: %{name}'
|
||||||
visible_contexts: Видимые контексты
|
visible_contexts: Видимые контексты
|
||||||
data:
|
data:
|
||||||
import_destination_invalid: Неверный путь назначения для импорта
|
import_destination_invalid: Неверный путь назначения для импорта
|
||||||
|
|
@ -369,6 +371,18 @@ ru:
|
||||||
update: Обновить %{model}
|
update: Обновить %{model}
|
||||||
integrations:
|
integrations:
|
||||||
opensearch_description: Искать в Tracks
|
opensearch_description: Искать в Tracks
|
||||||
|
help:
|
||||||
|
title: Help
|
||||||
|
usage: 'You can find information on the usage in the %{manual_link} in the project GitHub wiki.'
|
||||||
|
manual_link_text: User manual
|
||||||
|
bugs: 'If you encounter a bug or have a feature request, please report it in the %{issue_link}.'
|
||||||
|
issue_link_text: issue queue
|
||||||
|
contribute: 'We gladly welcome all contributions to Tracks. Check the %{contribute_link} for further information. You can also come discuss with the community:'
|
||||||
|
contribute_link_text: project website
|
||||||
|
mailing_list_link_text: Mailing list
|
||||||
|
irc_bullet: '%{irc_link} (also available in %{matrix_link})'
|
||||||
|
irc_link_text: 'IRC channel #Tracks@FreeNode'
|
||||||
|
matrix_link_text: Matrix
|
||||||
layouts:
|
layouts:
|
||||||
mobile_navigation:
|
mobile_navigation:
|
||||||
calendar: Calendar
|
calendar: Calendar
|
||||||
|
|
@ -593,6 +607,7 @@ ru:
|
||||||
hide_form_title: Скрыть форму нового проекта
|
hide_form_title: Скрыть форму нового проекта
|
||||||
is_active: активен
|
is_active: активен
|
||||||
last_completed_in_project: "(последние %{number})"
|
last_completed_in_project: "(последние %{number})"
|
||||||
|
letter_abbreviation: P
|
||||||
list_completed_projects: TRACKS::Список выполненных проектов
|
list_completed_projects: TRACKS::Список выполненных проектов
|
||||||
list_projects: TRACKS::Список проектов
|
list_projects: TRACKS::Список проектов
|
||||||
list_reviews: TRACKS::Обзор
|
list_reviews: TRACKS::Обзор
|
||||||
|
|
@ -615,6 +630,7 @@ ru:
|
||||||
status_project_name_changed: Имя проекта изменено
|
status_project_name_changed: Имя проекта изменено
|
||||||
this_project: Этот проект
|
this_project: Этот проект
|
||||||
to_new_project_page: Перейти на страницу нового проекта
|
to_new_project_page: Перейти на страницу нового проекта
|
||||||
|
view_link: 'View project: %{name}'
|
||||||
was_marked_complete: помечен как выполненный
|
was_marked_complete: помечен как выполненный
|
||||||
was_marked_hidden: помечен как скрытый
|
was_marked_hidden: помечен как скрытый
|
||||||
with_default_context: с контекстом по-умолчанию '%{context_name}'
|
with_default_context: с контекстом по-умолчанию '%{context_name}'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue