From e74f8842ae2035327e5c04b71245da037cb789a1 Mon Sep 17 00:00:00 2001 From: Reinier Balt Date: Mon, 16 Apr 2012 13:17:59 +0200 Subject: [PATCH] Get more i18n fixed in for he locale. Include fallback to en locale and include pluralization mechanism --- app/controllers/application_controller.rb | 12 +- app/helpers/application_helper.rb | 16 +- app/views/contexts/_context_listing.rhtml | 2 +- .../contexts/_mobile_context_listing.rhtml | 2 +- app/views/projects/_project_listing.rhtml | 2 +- app/views/recurring_todos/index.html.erb | 2 +- app/views/stats/_contexts.rhtml | 8 +- app/views/stats/_projects.rhtml | 6 +- app/views/stats/_tags.rhtml | 4 +- app/views/stats/done.html.erb | 22 +- app/views/todos/_completed.rhtml | 4 +- app/views/todos/all_done.html.erb | 4 +- app/views/todos/done.html.erb | 4 +- config/initializers/i18n-config.rb | 36 + config/locales/cz.yml | 731 +++++++++--------- config/locales/de.yml | 721 ++++++++--------- config/locales/en.yml | 17 +- config/locales/es.yml | 625 +++++++-------- config/locales/fr.yml | 703 ++++++++--------- config/locales/nl.yml | 621 +++++++-------- 20 files changed, 1839 insertions(+), 1703 deletions(-) create mode 100644 config/initializers/i18n-config.rb diff --git a/app/controllers/application_controller.rb b/app/controllers/application_controller.rb index aeae32cc..761be1d9 100644 --- a/app/controllers/application_controller.rb +++ b/app/controllers/application_controller.rb @@ -89,16 +89,16 @@ class ApplicationController < ActionController::Base # is count and a string descriptor, correctly pluralised if there are no # actions or multiple actions # - def count_undone_todos_phrase(todos_parent, string="actions") + def count_undone_todos_phrase(todos_parent) count = count_undone_todos(todos_parent) deferred_count = count_deferred_todos(todos_parent) if count == 0 && deferred_count > 0 - word = deferred_count == 1 ? string.singularize : string.pluralize - word = "deferred " + word - deferred_count.to_s + " " + word + word = I18n.t('common.actions_midsentence', :count => deferred_count) + word = I18n.t('common.deferred') + " " + word + return deferred_count.to_s + " " + word else - word = count == 1 ? string.singularize : string.pluralize - count.to_s + " " + word + word = I18n.t('common.actions_midsentence', :count => count) + return count.to_s + " " + word end end diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 1f318003..183b4c31 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -98,17 +98,17 @@ module ApplicationHelper # is count and a string descriptor, correctly pluralised if there are no # actions or multiple actions # - def count_undone_todos_phrase(todos_parent, string="actions") - @controller.count_undone_todos_phrase(todos_parent, string) + def count_undone_todos_phrase(todos_parent) + @controller.count_undone_todos_phrase(todos_parent) end - def count_undone_todos_phrase_text(todos_parent, string="actions") - count_undone_todos_phrase(todos_parent, string).gsub(" "," ") + def count_undone_todos_phrase_text(todos_parent) + count_undone_todos_phrase(todos_parent).gsub(" "," ") end - def count_undone_todos_and_notes_phrase(project, string="actions") - s = count_undone_todos_phrase(project, string) - s += ", #{pluralize(project.note_count, 'note')}" unless project.note_count == 0 + def count_undone_todos_and_notes_phrase(project) + s = count_undone_todos_phrase(project) + s += ", #{t('common.note', :count => project.note_count)}" unless project.note_count == 0 s end @@ -200,7 +200,7 @@ module ApplicationHelper else return list.inject("") do |html, item| link = (item.class == "Project") ? link_to_project( item ) : link_to_context(item) - html << content_tag(:li, link + " (" + count_undone_todos_phrase(item, I18n.t("common.actions_midsentence"))+")") + html << content_tag(:li, link + " (" + count_undone_todos_phrase(item)+")") end end end diff --git a/app/views/contexts/_context_listing.rhtml b/app/views/contexts/_context_listing.rhtml index 256b3b07..9266ddb9 100644 --- a/app/views/contexts/_context_listing.rhtml +++ b/app/views/contexts/_context_listing.rhtml @@ -10,7 +10,7 @@ suppress_delete_button ||= false <%= suppress_edit_button ? "" : link_to_edit_context(context, image_tag( "blank.png", :title => t('contexts.edit_context'), :class=>"edit_item")) -%> <%= suppress_drag_handle ? "" : image_tag('grip.png', :width => '7', :height => '16', :border => '0', :title => t('common.drag_handle'), :class => 'grip')-%>
- <%= link_to_context( context ) %> <%= " (" + count_undone_todos_phrase(context,t('common.actions_midsentence')) + ")" %> + <%= link_to_context( context ) %> <%= " (" + count_undone_todos_phrase(context) + ")" %>
diff --git a/app/views/recurring_todos/index.html.erb b/app/views/recurring_todos/index.html.erb index 7f7da84c..6ae1fd5d 100644 --- a/app/views/recurring_todos/index.html.erb +++ b/app/views/recurring_todos/index.html.erb @@ -10,7 +10,7 @@
- +

<%= t('common.last') %> <%= t('todos.completed_recurring') %>

diff --git a/app/views/stats/_contexts.rhtml b/app/views/stats/_contexts.rhtml index a55b7b5d..b09989eb 100755 --- a/app/views/stats/_contexts.rhtml +++ b/app/views/stats/_contexts.rhtml @@ -9,7 +9,9 @@ <% 1.upto 5 do |i| %><%=i-%> - - <%= i <= @actions_per_context.size ? link_to(@actions_per_context[i-1]['name'], {:controller => "contexts", :action => "show", :id => @actions_per_context[i-1]['id']}) : "n/a"%> + <%= i <= @actions_per_context.size ? + link_to(@actions_per_context[i-1]['name'], {:controller => "contexts", :action => "show", :id => @actions_per_context[i-1]['id']}) : + t('common.not_available_abbr')%> ( <%= i <= @actions_per_context.size ? @actions_per_context[i-1]['total'] : t('common.not_available_abbr')%> ) @@ -23,7 +25,9 @@ <% 1.upto 5 do |i| %><%=i-%> - - <%= i <= @running_actions_per_context.size ? link_to(@running_actions_per_context[i-1]['name'], {:controller => "contexts", :action => "show", :id => @running_actions_per_context[i-1]['id']}) : "n/a"-%> + <%= i <= @running_actions_per_context.size ? + link_to(@running_actions_per_context[i-1]['name'], {:controller => "contexts", :action => "show", :id => @running_actions_per_context[i-1]['id']}) : + t('common.not_available_abbr')-%> ( <%= i <= @running_actions_per_context.size ? @running_actions_per_context[i-1]['total'] : t('common.not_available_abbr')-%> ) diff --git a/app/views/stats/_projects.rhtml b/app/views/stats/_projects.rhtml index 26ceb7e4..5d0d014a 100755 --- a/app/views/stats/_projects.rhtml +++ b/app/views/stats/_projects.rhtml @@ -3,7 +3,7 @@ <% i=0 @projects_and_actions.each do |p| i+=1 -%> - <%= i -%> - <%= link_to p.name, {:controller => "projects", :action => "show", :id => p.id}%> (<%=p.count %> <%= t('common.actions_midsentence') %>)
+ <%= i -%> - <%= link_to p.name, {:controller => "projects", :action => "show", :id => p.id}%> (<%=p.count %> <%= t('common.actions_midsentence', :count => p.count) %>)
<% end if i < 10 i.upto 10 do |j| -%> @@ -18,7 +18,7 @@ <% i=0 @projects_and_actions_last30days.each do |p| i+=1 -%> - <%= i -%> - <%= link_to p.name, {:controller => "projects", :action => "show", :id => p.id} %> (<%=p.count %> <%= t('common.actions_midsentence') %>)
+ <%= i -%> - <%= link_to p.name, {:controller => "projects", :action => "show", :id => p.id} %> (<%=p.count %> <%= t('common.actions_midsentence', :count => p.count) %>)
<% end if i < 10 i.upto 10 do |j| -%> @@ -33,6 +33,6 @@ <% i=0 @projects_and_runtime.each do |id, name, days| i+=1 -%> - <%= i -%> - <%= link_to name, {:controller => "projects", :action => "show", :id => id} %> (<%=days %> <%= t('common.days_midsentence') %>)
+ <%= i -%> - <%= link_to name, {:controller => "projects", :action => "show", :id => id} %> (<%=days %> <%= t('common.days_midsentence', :count => days) %>)
<% end -%>
\ No newline at end of file diff --git a/app/views/stats/_tags.rhtml b/app/views/stats/_tags.rhtml index 5f5f2fe7..a2c8b945 100755 --- a/app/views/stats/_tags.rhtml +++ b/app/views/stats/_tags.rhtml @@ -10,7 +10,7 @@ <%= link_to t.name, {:controller => "todos", :action => "tag", :id => t.name}, {:style => "font-size: " + (9 + 2*(t.count.to_i-@tags_min)/@tags_divisor).to_s + "pt", - :title => t.count.to_s+" #{t('common.actions_midsentence')}"} + :title => t.count.to_s+" #{t('common.actions_midsentence', :count => t.count)}"} -%> <% end end-%> @@ -28,7 +28,7 @@ <%= link_to t.name, {:controller => "todos", :action => "tag", :id => t.name}, {:style => "font-size: " + (9 + 2*(t.count.to_i-@tags_min_90days)/@tags_divisor_90days).to_s + "pt", - :title => t.count.to_s+" #{t('common.actions_midsentence')}"} + :title => t.count.to_s+" #{t('common.actions_midsentence', :count => t.count)}"} -%> <% end end-%> diff --git a/app/views/stats/done.html.erb b/app/views/stats/done.html.erb index c6f38371..155daccf 100644 --- a/app/views/stats/done.html.erb +++ b/app/views/stats/done.html.erb @@ -1,6 +1,6 @@
- +

<%= t('common.last') %> <%= t('states.completed_plural' )%> <%= t('common.actions') %>

@@ -12,15 +12,15 @@
- -

+ +

<%= t('common.last') %> <%= t('states.completed_plural' )%> <%= t('common.projects') %> -

+ <% if @last_completed_projects.empty? -%>

<%= t('projects.no_last_completed_projects') %>

<% else -%>
- <%= render :partial => '/projects/project_listing', + <%= render :partial => '/projects/project_listing', :collection => @last_completed_projects, :locals => {:suppress_drag_handle => true} %> @@ -29,17 +29,15 @@
- -

+ +

<%= t('common.last') %> <%= t('states.completed_plural' )%> <%= t('common.recurring_todos') %> -

+ <% if @last_completed_recurring_todos.empty? -%>

<%= t('projects.no_last_completed_recurring_todos') %>

<% else -%> <%= render :partial => '/recurring_todos/recurring_todo', :collection => @last_completed_recurring_todos %> <% end -%>
- - - -
+ +
diff --git a/app/views/todos/_completed.rhtml b/app/views/todos/_completed.rhtml index f54601fc..b1a79823 100644 --- a/app/views/todos/_completed.rhtml +++ b/app/views/todos/_completed.rhtml @@ -3,7 +3,7 @@ suppress_project ||= false -%>
- +

<% if collapsible %> <%= image_tag("collapse.png") %> @@ -18,4 +18,4 @@ <%= render :partial => "todos/todo", :collection => completed, :locals => { :parent_container_type => "completed", :suppress_context => suppress_context, :suppress_project => suppress_project } %>

-
\ No newline at end of file +
\ No newline at end of file diff --git a/app/views/todos/all_done.html.erb b/app/views/todos/all_done.html.erb index b758bb4f..5ecc4572 100644 --- a/app/views/todos/all_done.html.erb +++ b/app/views/todos/all_done.html.erb @@ -1,6 +1,6 @@ <% paginate_options = { - :class => :add_note_link, + :class => :add_note_link, :previous_label => '« '+ t('common.previous'), :next_label => t('common.next')+' »', :inner_window => 2 @@ -19,4 +19,4 @@ <%= will_paginate @done, paginate_options %> - + diff --git a/app/views/todos/done.html.erb b/app/views/todos/done.html.erb index b5a24941..aecc4b2a 100644 --- a/app/views/todos/done.html.erb +++ b/app/views/todos/done.html.erb @@ -26,6 +26,6 @@ <% end -%> -

You can see all completed actions <%= link_to "here", determine_all_done_path %>

+

<%= t('todos.see_all_completed', :link => link_to(t("todos.all_completed_here"), determine_all_done_path)) %>

- + diff --git a/config/initializers/i18n-config.rb b/config/initializers/i18n-config.rb new file mode 100644 index 00000000..d9f738a6 --- /dev/null +++ b/config/initializers/i18n-config.rb @@ -0,0 +1,36 @@ +module I18n::Backend::Pluralization + # rules taken from : http://www.gnu.org/software/hello/manual/gettext/Plural-forms.html + def pluralize(locale, entry, n) + return entry unless entry.is_a?(Hash) && n + if n == 0 && entry.has_key?(:zero) + key = :zero + else + key = case locale + when :pl # Polish + n==1 ? :one : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? :few : :other + when :cs, :sk # Czech, Slovak + n==1 ? :one : (n>=2 && n<=4) ? :few : :other + when :lt # Lithuanian + n%10==1 && n%100!=11 ? :one : n%10>=2 && (n%100<10 || n%100>=20) ? :few : :other + when :lv # Latvian + n%10==1 && n%100!=11 ? :one : n != 0 ? :few : :other + when :ru, :uk, :sr, :hr # Russian, Ukrainian, Serbian, Croatian + n%10==1 && n%100!=11 ? :one : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? :few : :other + when :sl # Slovenian + n%100==1 ? :one : n%100==2 ? :few : n%100==3 || n%100==4 ? :many : :other + when :ro # Romanian + n==1 ? :one : (n==0 || (n%100 > 0 && n%100 < 20)) ? :few : :other + when :gd # Gaeilge + n==1 ? :one : n==2 ? :two : :other; + # add another language if you like... + else + n==1 ? :one : :other # default :en + end + end + raise InvalidPluralizationData.new(entry, n) unless entry.has_key?(key) + entry[key] + end +end + +I18n::Backend::Simple.send(:include, I18n::Backend::Pluralization) +I18n::Backend::Simple.send(:include, I18n::Backend::Fallbacks) \ No newline at end of file diff --git a/config/locales/cz.yml b/config/locales/cz.yml index f6db1b3b..17fa2b21 100755 --- a/config/locales/cz.yml +++ b/config/locales/cz.yml @@ -1,5 +1,68 @@ --- cz: + layouts: + toggle_contexts_title: "Zobraz\xC3\xAD/skryje sbalen\xC3\xA9 kontexty" + toggle_contexts: "P\xC5\x99epnout sbalen\xC3\xA9 kontexty" + toggle_notes: "Zobrazit/skr\xC3\xBDt pozn\xC3\xA1mky" + next_actions_rss_feed: "RSS feed aktu\xC3\xA1ln\xC3\xADch \xC3\xBAkol\xC5\xAF" + toggle_notes_title: "Zobraz\xC3\xAD/skryje v\xC5\xA1echny pozn\xC3\xA1mky" + mobile_navigation: + new_action: !binary | + MC1Ob3bDvSDDumtvbA== + + logout: "Odhl\xC3\xA1sit" + feeds: Feedy + starred: !binary | + NC1IdsSbemRpxI1reQ== + + projects: 3-Projekty + tickler: Tickler + contexts: 2-Kontexty + home: "1-Dom\xC5\xAF" + navigation: + manage_users_title: "P\xC5\x99idat nebo smazat u\xC5\xBEivatele" + recurring_todos: "Opakuj\xC3\xADc\xC3\xAD se \xC3\xBAkoly" + api_docs: REST API Dokumenty + help: "?" + feeds: Feedy + starred: "S hv\xC4\x9Bzdou" + stats: Statistiky + notes_title: "Zobrazit v\xC5\xA1echny pozn\xC3\xA1mky" + manage_users: !binary | + U3Byw6F2YSB1xb5pdmF0ZWzFrw== + + tickler_title: Tickler + admin: n/d + preferences: "Nastaven\xC3\xAD" + integrations_: Integrovat Tracks + export_title: Import a export dat + calendar_title: !binary | + S2FsZW5kw6HFmSBkYXRvdmFuw71jaCDDumtvbMWv + + feeds_title: "Seznam dostupn\xC3\xBDch feed\xC5\xAF" + stats_title: "Zobraz\xC3\xAD statistiky \xC3\xBAkol\xC5\xAF" + tickler: Tickler + home_title: !binary | + RG9txa8= + + starred_title: "Zobraz\xC3\xAD \xC3\xBAkoly s hv\xC4\x9Bzdi\xC4\x8Dkou" + recurring_todos_title: "Spr\xC3\xA1va opakovan\xC3\xBDch \xC3\xBAkol\xC5\xAF" + completed_tasks: "Hotov\xC3\xA9" + view: "Uk\xC3\xA1zat" + organize: "Spr\xC3\xA1va" + completed_tasks_title: "Hotov\xC3\xA9 \xC3\xBAkoly" + home: !binary | + RG9txa8= + + export: Export + contexts_title: Kontexty + preferences_title: "Zobraz\xC3\xAD mo\xC5\xBEnosti nastaven\xC3\xAD" + search: Hledat + review_title: "Prov\xC3\xA9st revizi" + projects_title: Projekty + calendar: !binary | + S2FsZW5kw6HFmQ== + number: format: separator: . @@ -34,80 +97,11 @@ cz: separator: . precision: 2 delimiter: "," - layouts: - toggle_contexts_title: "Zobraz\xC3\xAD/skryje sbalen\xC3\xA9 kontexty" - toggle_notes: "Zobrazit/skr\xC3\xBDt pozn\xC3\xA1mky" - toggle_contexts: "P\xC5\x99epnout sbalen\xC3\xA9 kontexty" - next_actions_rss_feed: "RSS feed aktu\xC3\xA1ln\xC3\xADch \xC3\xBAkol\xC5\xAF" - toggle_notes_title: "Zobraz\xC3\xAD/skryje v\xC5\xA1echny pozn\xC3\xA1mky" - mobile_navigation: - feeds: Feedy - new_action: !binary | - MC1Ob3bDvSDDumtvbA== - - logout: "Odhl\xC3\xA1sit" - starred: !binary | - NC1IdsSbemRpxI1reQ== - - projects: 3-Projekty - tickler: Tickler - contexts: 2-Kontexty - home: "1-Dom\xC5\xAF" - navigation: - manage_users_title: "P\xC5\x99idat nebo smazat u\xC5\xBEivatele" - api_docs: REST API Dokumenty - recurring_todos: "Opakuj\xC3\xADc\xC3\xAD se \xC3\xBAkoly" - feeds: Feedy - help: "?" - stats: Statistiky - starred: "S hv\xC4\x9Bzdou" - notes_title: "Zobrazit v\xC5\xA1echny pozn\xC3\xA1mky" - manage_users: !binary | - U3Byw6F2YSB1xb5pdmF0ZWzFrw== - - tickler_title: Tickler - admin: n/d - integrations_: Integrovat Tracks - export_title: Import a export dat - preferences: "Nastaven\xC3\xAD" - calendar_title: !binary | - S2FsZW5kw6HFmSBkYXRvdmFuw71jaCDDumtvbMWv - - feeds_title: "Seznam dostupn\xC3\xBDch feed\xC5\xAF" - completed_tasks: "Hotov\xC3\xA9" - stats_title: "Zobraz\xC3\xAD statistiky \xC3\xBAkol\xC5\xAF" - tickler: Tickler - home_title: !binary | - RG9txa8= - - starred_title: "Zobraz\xC3\xAD \xC3\xBAkoly s hv\xC4\x9Bzdi\xC4\x8Dkou" - recurring_todos_title: "Spr\xC3\xA1va opakovan\xC3\xBDch \xC3\xBAkol\xC5\xAF" - view: "Uk\xC3\xA1zat" - organize: "Spr\xC3\xA1va" - completed_tasks_title: "Hotov\xC3\xA9 \xC3\xBAkoly" - home: !binary | - RG9txa8= - - contexts_title: Kontexty - export: Export - preferences_title: "Zobraz\xC3\xAD mo\xC5\xBEnosti nastaven\xC3\xAD" - review_title: "Prov\xC3\xA9st revizi" - calendar: !binary | - S2FsZW5kw6HFmQ== - - search: Hledat - projects_title: Projekty - integrations: - opensearch_description: Prohledat Tracks - applescript_next_action_prompt: "Popis \xC3\xBAkolu:" - gmail_description: Gadget pro Tracks do Gmailu - applescript_success_after_id: "vytvo\xC5\x99en" - applescript_success_before_id: "Nov\xC3\xBD \xC3\xBAkol s ID" common: + recurring_todos: "Opakovan\xC3\xA9 \xC3\xBAkoly" back: !binary | WnDEm3Q= - recurring_todos: "Opakovan\xC3\xA9 \xC3\xBAkoly" actions: !binary | w5prb2x5 @@ -125,7 +119,6 @@ cz: second: !binary | RHJ1aMO9 - show_all: "Zobrazit v\xC5\xA1echny" none: !binary | xb3DoWRuw70= @@ -133,24 +126,44 @@ cz: dMO9ZGVu optional: "voliteln\xC3\xA9" + deferred: !binary | + b2Rsb8W+ZW7DqQ== + + show_all: "Zobrazit v\xC5\xA1echny" cancel: "Zru\xC5\xA1it" month: !binary | bcSbc8OtYw== - actions_midsentence: akce + actions_midsentence: + one: !binary | + w7prb2zFrw== + + other: !binary | + w5prb2x5 + + zero: !binary | + w5prb2x5 + + notes: "Pozn\xC3\xA1mky" server_error: Nastala chyba na serveru. forum: !binary | RsOzcnVt - notes: "Pozn\xC3\xA1mky" - last: "Posledn\xC3\xAD" projects: Projekty + last: "Posledn\xC3\xAD" + review: Revize action: !binary | w5prb2w= - review: Revize + days_midsentence: + one: den + other: !binary | + ZG7DrQ== + + zero: !binary | + ZG7DrQ== + project: Projekt - days_midsentence: dny contribute: !binary | UMWZaXNwxJt0 @@ -159,40 +172,49 @@ cz: first: !binary | UHJ2bsOt - numbered_step: Krok %{number} - errors_with_fields: !binary | - TmFzdGFseSBwb3TDrcW+ZSBzIG7DoXNsZWR1asOtY8OtbWkgcG9sw63EjWt5 - Og== + note: + one: !binary | + MSBuYSB2xJtkb23DrQ== + other: "%{count} na v\xC4\x9Bdomy" + zero: !binary | + MCBuYSB2xJtkb23DrQ== + + numbered_step: Krok %{number} create: "Vytvo\xC5\x99it" sort: by_task_count_title: "\xC5\x98adit podle po\xC4\x8Dtu \xC3\xBAkol\xC5\xAF" by_task_count_title_confirm: "Ur\xC4\x8Dit\xC4\x9B chcete \xC5\x99adit tyto projekty podle po\xC4\x8Dtu \xC3\xBAkol\xC5\xAF? St\xC3\xA1vaj\xC3\xADc\xC3\xAD po\xC5\x99ad\xC3\xAD bude ztraceno." alphabetically: "Abecedn\xC4\x9B" - alphabetically_title: "Se\xC5\x99adit projekty abecedn\xC4\x9B" sort: !binary | xZhhZGl0 + alphabetically_title: "Se\xC5\x99adit projekty abecedn\xC4\x9B" alphabetically_confirm: "Ur\xC4\x8Dit\xC4\x9B chcete \xC5\x99adit tyto projekty abecedn\xC4\x9B? St\xC3\xA1vaj\xC3\xADc\xC3\xAD po\xC5\x99ad\xC3\xAD bude ztraceno." by_task_count: "Podle po\xC4\x8Dtu \xC3\xBAkol\xC5\xAF" - months: !binary | - bcSbc8OtY2U= - - description: Popis todo: !binary | w7prb2w= + months: !binary | + bcSbc8OtY2U= + + errors_with_fields: !binary | + TmFzdGFseSBwb3TDrcW+ZSBzIG7DoXNsZWR1asOtY8OtbWkgcG9sw63EjWt5 + Og== + + description: Popis next: !binary | RGFsxaHDrQ== fourth: !binary | xIx0dnJ0w70= - context: Kontext - contexts: Kontexty drag_handle: !binary | Q0hZxaQgTcSa + context: Kontext + contexts: Kontexty + bugs: Chyby update: "Ulo\xC5\xBEit" weeks: !binary | dMO9ZG55 @@ -201,11 +223,16 @@ cz: xIx0dnJ0w70= wiki: Wiki - bugs: Chyby - ajaxError: "Chyba \xC4\x8Dten\xC3\xAD ze serveru" - not_available_abbr: "" email: Email + ajaxError: "Chyba \xC4\x8Dten\xC3\xAD ze serveru" search: Hledat + not_available_abbr: n/a + integrations: + opensearch_description: Prohledat Tracks + applescript_next_action_prompt: "Popis \xC3\xBAkolu:" + gmail_description: Gadget pro Tracks do Gmailu + applescript_success_after_id: "vytvo\xC5\x99en" + applescript_success_before_id: "Nov\xC3\xBD \xC3\xBAkol s ID" activerecord: attributes: project: @@ -221,23 +248,16 @@ cz: created_at: "Vytvo\xC5\x99eno:" updated_at: "Aktualizov\xC3\xA1n" todo: + show_from: Zobrazovat od predecessors: !binary | WsOhdmlzw60gbmE= - show_from: Zobrazovat od notes: "Pozn\xC3\xA1mky" - project: Projekt tags: Tagy + project: Projekt description: Popis context: Kontext due: "Pl\xC3\xA1nov\xC3\xA1no na" - user: - last_name: !binary | - Sm3DqW5v - - first_name: !binary | - UMWZw61qbWVuw60= - preference: show_hidden_projects_in_sidebar: "Zobrazovat skryt\xC3\xA9 projekty v sidebaru" show_hidden_contexts_in_sidebar: "Zobrazovat skryt\xC3\xA9 kontexty v sidebaru" @@ -246,8 +266,8 @@ cz: verbose_action_descriptors: "Ukecan\xC3\xA9 popisova\xC4\x8De \xC3\xBAkol\xC5\xAF" staleness_starts: "Jako pro\xC5\xA1l\xC3\xA9 ozna\xC4\x8Dit projekty star\xC5\xA1\xC3\xAD ne\xC5\xBE" mobile_todos_per_page: "\xC3\x9Akol\xC5\xAF na str\xC3\xA1nku (mobiln\xC3\xAD zobrazen\xC3\xAD)" - title_date_format: "Form\xC3\xA1t data nadpisu" show_number_completed: "Po\xC4\x8Det hotov\xC3\xBDch \xC3\xBAkol\xC5\xAF k zobrazen\xC3\xAD" + title_date_format: "Form\xC3\xA1t data nadpisu" refresh: "Interval obnoven\xC3\xAD str\xC3\xA1nky (v minut\xC3\xA1ch)" week_starts: !binary | WmHEjcOhdGVrIHTDvWRuZQ== @@ -260,13 +280,20 @@ cz: time_zone: !binary | xIxhc292w6kgcMOhc21v - show_project_on_todo_done: "Po spln\xC4\x9Bn\xC3\xAD \xC3\xBAkolu p\xC5\x99ej\xC3\xADt na projekt" sms_email: SMS email + show_project_on_todo_done: "Po spln\xC4\x9Bn\xC3\xAD \xC3\xBAkolu p\xC5\x99ej\xC3\xADt na projekt" + show_completed_projects_in_sidebar: "Zobrazovat hotov\xC3\xA9 projekty v sidebaru" first_name: !binary | Sm3DqW5v - show_completed_projects_in_sidebar: "Zobrazovat hotov\xC3\xA9 projekty v sidebaru" review_period: "Interval revize projekt\xC5\xAF" + user: + last_name: !binary | + Sm3DqW5v + + first_name: !binary | + UMWZw61qbWVuw60= + errors: models: project: @@ -306,6 +333,8 @@ cz: not_a_number: !binary | bmVuw60gxI3DrXNsbw== + full_messages: + format: "%{attribute} %{message}" template: body: !binary | TmFzdGFseSBwb3TDrcW+ZSBzIG7DoXNsZWR1asOtY8OtbWkgcG9sw63EjWt5 @@ -314,8 +343,6 @@ cz: header: one: "jedna chyba br\xC3\xA1n\xC3\xAD ulo\xC5\xBEen\xC3\xAD tohoto objektu %{model}" other: "%{count} chyb br\xC3\xA1n\xC3\xAD ulo\xC5\xBEen\xC3\xAD tohoto objektu %{model}" - full_messages: - format: "%{attribute} %{message}" data: import_successful: !binary | SW1wb3J0IGJ5bCDDunNwxJvFoW7DvS4= @@ -327,23 +354,23 @@ cz: feed_description: "V\xC5\xA1echny projekty u\xC5\xBEivatele %{username}" todo: error_date_must_be_future: "datum mus\xC3\xAD b\xC3\xBDt v budoucnosti" - user: - error_context_not_associated: "Kontext %{context} nepat\xC5\x99\xC3\xAD u\xC5\xBEivateli %{user}." - error_project_not_associated: "Projekt %{project} nepat\xC5\x99\xC3\xAD u\xC5\xBEivateli %{user}." preference: due_on: "Pl\xC3\xA1nov\xC3\xA1no na %{date}" due_in: "Pl\xC3\xA1nov\xC3\xA1no za %{days} dn\xC3\xAD" due_styles: - "Pl\xC3\xA1nov\xC3\xA1no za ___ dn\xC3\xAD" - "Pl\xC3\xA1nov\xC3\xA1no na _______" + user: + error_context_not_associated: "Kontext %{context} nepat\xC5\x99\xC3\xAD u\xC5\xBEivateli %{user}." + error_project_not_associated: "Projekt %{project} nepat\xC5\x99\xC3\xAD u\xC5\xBEivateli %{user}." stats: + actions_min_max_completion_days: "Maximum/minimum dn\xC3\xAD na dokon\xC4\x8Den\xC3\xAD je %{min}/%{max}." + totals_hidden_context_count: "a %{count} skryt\xC3\xBDch kontext\xC5\xAF." + actions_avg_created: "Za posledn\xC3\xADch 12 m\xC4\x9Bs\xC3\xADc\xC5\xAF bylo vytvo\xC5\x99eno pr\xC5\xAFm\xC4\x9Brn\xC4\x9B %{count} \xC3\xBAkol\xC5\xAF" + totals_actions_completed: "%{count} z nich je hotov\xC3\xBDch." tag_cloud_title: !binary | TXJhayDFoXTDrXRrxa8gcHJvIHbFoWVjaG55IMO6a2x5 - totals_hidden_context_count: "a %{count} skryt\xC3\xBDch kontext\xC5\xAF." - actions_avg_created: "Za posledn\xC3\xADch 12 m\xC4\x9Bs\xC3\xADc\xC5\xAF bylo vytvo\xC5\x99eno pr\xC5\xAFm\xC4\x9Brn\xC4\x9B %{count} \xC3\xBAkol\xC5\xAF" - actions_min_max_completion_days: "Maximum/minimum dn\xC3\xAD na dokon\xC4\x8Den\xC3\xAD je %{min}/%{max}." - totals_actions_completed: "%{count} z nich je hotov\xC3\xBDch." actions_actions_avg_created_30days: "Za posledn\xC3\xADch 30 dn\xC3\xAD bylo vytvo\xC5\x99eno pr\xC5\xAFm\xC4\x9Brn\xC4\x9B %{count} \xC3\xBAkol\xC5\xAF" actions_avg_completed: !binary | YSB1emF2xZllbm8gcHLFr23Em3JuxJsgJXtjb3VudH0gw7prb2zFryB6YSBt @@ -370,13 +397,13 @@ cz: weeks: "\xC4\x8Cas b\xC4\x9Bhu \xC3\xBAkolu (t\xC3\xBDdny). Klepn\xC4\x9Bte na sloupec pro dal\xC5\xA1\xC3\xAD info" totals_action_count: "m\xC3\xA1te celkem %{count} \xC3\xBAkol\xC5\xAF" tag_cloud_90days_title: "Zna\xC4\x8Dky \xC3\xBAkol\xC5\xAF z posledn\xC3\xADch 90-ti dn\xC3\xAD" + actions_avg_completion_time: "Pro v\xC5\xA1echny va\xC5\xA1e hotov\xC3\xA9 \xC3\xBAkoly je pr\xC5\xAFm\xC4\x9Brn\xC3\xBD \xC4\x8Das dokon\xC4\x8Den\xC3\xAD %{count} dn\xC3\xAD." tod30: "Denn\xC3\xAD doba (posledn\xC3\xADch 30 dn\xC3\xAD)" tags: !binary | xaB0w610a3k= projects: Projekty - actions_avg_completion_time: "Pro v\xC5\xA1echny va\xC5\xA1e hotov\xC3\xA9 \xC3\xBAkoly je pr\xC5\xAFm\xC4\x9Brn\xC3\xBD \xC4\x8Das dokon\xC4\x8Den\xC3\xAD %{count} dn\xC3\xAD." - actions_lastyear_title: "\xC3\x9Akoly za posledn\xC3\xADch 12 m\xC4\x9Bs\xC3\xADc\xC5\xAF" + totals_completed_project_count: "a %{count} je hotov\xC3\xBDch projekt\xC5\xAF." labels: month_avg_completed: !binary | JXttb250aHN9IG3Em3PDrcSNbsOtIHByxa9txJtyIGhvdG92w71jaA== @@ -393,8 +420,8 @@ cz: created: "Vytvo\xC5\x99eno" actions_selected_from_week: "\xC3\x9Akoly vybran\xC3\xA9 z t\xC3\xBDdne " - totals_completed_project_count: "a %{count} je hotov\xC3\xBDch projekt\xC5\xAF." actions_day_of_week_title: "Den v t\xC3\xBDdnu (v\xC5\xA1echny \xC3\xBAkoly)" + actions_lastyear_title: "\xC3\x9Akoly za posledn\xC3\xADch 12 m\xC4\x9Bs\xC3\xADc\xC5\xAF" open_per_week: "Aktivn\xC3\xAD (viditeln\xC3\xA9 i skryt\xC3\xA9) dal\xC5\xA1\xC3\xAD akce za t\xC3\xBDden" action_selection_title: !binary | VFJBQ0tTOjp2w71ixJtyIMO6a29sxa8= @@ -440,19 +467,19 @@ cz: months_ago: !binary | bcSbc8OtY8WvIHpwxJt0 - top10_projects: "Top 10 projekt\xC5\xAF" top5_contexts: "Top 5 kontext\xC5\xAF" - click_to_return: "Klepn\xC4\x9Bte %{link} pro n\xC3\xA1vrat ke statistik\xC3\xA1m." - totals: Celkem + top10_projects: "Top 10 projekt\xC5\xAF" contexts: Kontexty + totals: Celkem + click_to_return: "Klepn\xC4\x9Bte %{link} pro n\xC3\xA1vrat ke statistik\xC3\xA1m." tag_cloud_90days_description: "Tento mrak zahrnuje \xC5\xA1t\xC3\xADtky \xC3\xBAkol\xC5\xAF, kter\xC3\xA9 byly vytvo\xC5\x99eny nebo dokon\xC4\x8Deny v posledn\xC3\xADch 90-ti dnech." totals_visible_context_count: "Z nich je %{count} viditeln\xC3\xBDch kontext\xC5\xAF" - actions_min_completion_time: "Minim\xC3\xA1ln\xC3\xAD \xC4\x8Das k dokon\xC4\x8Den\xC3\xAD je %{time}." top10_projects_30days: "Top 10 projekt\xC5\xAF za posledn\xC3\xADch 30 dn\xC3\xAD" running_time_all: !binary | QWt0dcOhbG7DrSDEjWFzIGLEm2h1IHbFoWVjaCBuZWhvdG92w71jaCDDumtv bMWv + actions_min_completion_time: "Minim\xC3\xA1ln\xC3\xAD \xC4\x8Das k dokon\xC4\x8Den\xC3\xAD je %{time}." action_completion_time_title: "\xC4\x8Cas dokon\xC4\x8Den\xC3\xAD (v\xC5\xA1echny hotov\xC3\xA9 \xC3\xBAkoly)" click_to_show_actions_from_week: "Klepn\xC4\x9Bte %{link} pro zobrazen\xC3\xAD \xC3\xBAkol\xC5\xAF z t\xC3\xBDdne %{week} a dal\xC5\xA1\xC3\xADch." top10_longrunning: !binary | @@ -470,9 +497,9 @@ cz: day_of_week: "Den v t\xC3\xBDdnu" totals_first_action: "Od va\xC5\xA1eho prvn\xC3\xADho \xC3\xBAkolu %{date}" tag_cloud_description: "Tento mrak zahrnuje \xC5\xA1t\xC3\xADtky v\xC5\xA1ech \xC3\xBAkol\xC5\xAF (hotov\xC3\xBDch, nehotov\xC3\xBDch, viditeln\xC3\xBDch i skryt\xC3\xBDch)" + spread_of_actions_for_all_context: "Distribuce v\xC5\xA1ech \xC3\xBAkol\xC5\xAF do kontext\xC5\xAF" click_to_update_actions: "Klepn\xC4\x9Bte na sloupec v grafu pro zobrazen\xC3\xAD detail\xC5\xAF n\xC3\xAD\xC5\xBEe." click_to_return_link: zde - spread_of_actions_for_all_context: "Distribuce v\xC5\xA1ech \xC3\xBAkol\xC5\xAF do kontext\xC5\xAF" more_stats_will_appear: "Dal\xC5\xA1\xC3\xAD statistiky se zobraz\xC3\xAD a\xC5\xBE p\xC5\x99ibyde v\xC3\xADce \xC3\xBAkol\xC5\xAF." actions_avg_completed_30days: "a dokon\xC4\x8Deno pr\xC5\xAFm\xC4\x9Brn\xC4\x9B %{count} \xC3\xBAkol\xC5\xAF za den." actions_30days_title: "\xC3\x9Akoly za posledn\xC3\xADch 30 dn\xC3\xAD" @@ -501,21 +528,21 @@ cz: UG9kw61s other_actions_label: "(ostatn\xC3\xAD)" - time_of_day: "Denn\xC3\xAD doba (v\xC5\xA1echny \xC3\xBAkoly)" totals_hidden_project_count: "%{count} je skryt\xC3\xBDch" + time_of_day: "Denn\xC3\xAD doba (v\xC5\xA1echny \xC3\xBAkoly)" todos: - completed_actions: "Hotov\xC3\xA9 \xC3\xBAkoly" + recurring_action_deleted: "\xC3\x9Akol byl smaz\xC3\xA1n. Proto\xC5\xBEe jde o opakovan\xC3\xBD \xC3\xBAkol, byl vlo\xC5\xBEen nov\xC3\xBD \xC3\xBAkol" show_from: Zobrazovat od error_starring_recurring: "Nebylo mo\xC5\xBEno ohv\xC4\x9Bzdi\xC4\x8Dkovat opakovan\xC3\xBD \xC3\xBAkol \\'%{description}\\'" - recurring_action_deleted: "\xC3\x9Akol byl smaz\xC3\xA1n. Proto\xC5\xBEe jde o opakovan\xC3\xBD \xC3\xBAkol, byl vlo\xC5\xBEen nov\xC3\xBD \xC3\xBAkol" - completed_rest_of_previous_month: "Uzav\xC5\x99eno ve zbytku minul\xC3\xA9ho m\xC4\x9Bs\xC3\xADce" - completed_recurring: "Hotov\xC3\xA9 opakovan\xC3\xA9 \xC3\xBAkoly" + completed_actions: "Hotov\xC3\xA9 \xC3\xBAkoly" added_new_next_action: !binary | UMWZaWTDoW4gbm92w70gw7prb2w= + completed_recurring: "Hotov\xC3\xA9 opakovan\xC3\xA9 \xC3\xBAkoly" + completed_rest_of_previous_month: "Uzav\xC5\x99eno ve zbytku minul\xC3\xA9ho m\xC4\x9Bs\xC3\xADce" blocked_by: "\xC4\x8Cek\xC3\xA1 na %{predecessors}" - completed_recurrence_completed: "Bylo smaz\xC3\xA1no posledn\xC3\xAD opakov\xC3\xA1n\xC3\xAD opakovan\xC3\xA9ho \xC3\xBAkolu. Opakov\xC3\xA1n\xC3\xAD dokon\xC4\x8Deno" star_action: "Ozna\xC5\x99it hv\xC4\x9Bzdi\xC4\x8Dkou" + completed_recurrence_completed: "Bylo smaz\xC3\xA1no posledn\xC3\xAD opakov\xC3\xA1n\xC3\xAD opakovan\xC3\xA9ho \xC3\xBAkolu. Opakov\xC3\xA1n\xC3\xAD dokon\xC4\x8Deno" defer_date_after_due_date: "Datum zobrazen\xC3\xAD je a\xC5\xBE po pl\xC3\xA1novan\xC3\xA9m datu \xC3\xBAkolu. Upravte datum \xC3\xBAkolu p\xC5\x99ed dal\xC5\xA1\xC3\xADm pokusem o odplo\xC5\xBEen\xC3\xAD zobrazen\xC3\xAD." unable_to_add_dependency: "Nepoda\xC5\x99ilo se p\xC5\x99idat z\xC3\xA1vislost" done: Hotovo? @@ -531,22 +558,22 @@ cz: edit_action_with_description: "Upravit \xC3\xBAkol '%{description}'" action_due_on: "(\xC3\xBAkol pl\xC3\xA1nov\xC3\xA1n na %{date})" + list_incomplete_next_actions: "Zabraz\xC3\xAD nehotov\xC3\xA9 \xC3\xBAkoly" archived_tasks_title: "TRACKS::Archiv hotov\xC3\xBDch \xC3\xBAkol\xC5\xAF" remove_dependency: "Odstranit z\xC3\xA1vislost (nesma\xC5\xBEe \xC3\xBAkol)" - list_incomplete_next_actions: "Zabraz\xC3\xAD nehotov\xC3\xA9 \xC3\xBAkoly" - tags: !binary | - xaB0w610a3kgKG9kZMSbbGVuw6kgxI3DoXJrYW1pKQ== - action_deleted_success: !binary | w5prb2wgYnlsIMO6c3DEm8WhbsSbIHNtYXrDoW4= - mobile_todos_page_title: "V\xC5\xA1echny \xC3\xBAkoly" - new_related_todo_created: "Byl vytvo\xC5\x99en nov\xC3\xBD \xC3\xBAkol pat\xC5\x99\xC3\xADc\xC3\xAD do tohoto opakovan\xC3\xA9ho \xC3\xBAkolu" + tags: !binary | + xaB0w610a3kgKG9kZMSbbGVuw6kgxI3DoXJrYW1pKQ== + + delete_recurring_action_title: "Smazat opakovan\xC3\xBD \xC3\xBAkol" context_changed: "Kontext byl zm\xC4\x9Bn\xC4\x9Bn na %{name}" + new_related_todo_created: "Byl vytvo\xC5\x99en nov\xC3\xBD \xC3\xBAkol pat\xC5\x99\xC3\xADc\xC3\xAD do tohoto opakovan\xC3\xA9ho \xC3\xBAkolu" + mobile_todos_page_title: "V\xC5\xA1echny \xC3\xBAkoly" add_another_dependency: !binary | UMWZaWRhdCBkYWzFocOtIHrDoXZpc2xvc3Q= - delete_recurring_action_title: "Smazat opakovan\xC3\xBD \xC3\xBAkol" removed_predecessor: "Byl odstran\xC4\x9Bn %{successor} jako z\xC3\xA1vislost pro %{predecessor}." recurring_actions_title: "TRACKS::Opakovan\xC3\xA9 \xC3\xBAkoly" next_action_needed: "Je pot\xC5\x99eba zadat aspo\xC5\x88 jeden \xC3\xBAkol" @@ -558,23 +585,24 @@ cz: edit_action: "Upravit \xC3\xBAkol" added_new_context: "P\xC5\x99id\xC3\xA1n nov\xC3\xBD kontext" next_actions_description: "Filtr:" + list_incomplete_next_actions_with_limit: "Zobrazuje posledn\xC3\xADch %{count} nedokon\xC4\x8Den\xC3\xBDch \xC3\xBAkol\xC5\xAF" + set_to_pending: "%{task} nastaven jako \xC4\x8Dekaj\xC3\xADc\xC3\xAD" + added_new_project: "P\xC5\x99id\xC3\xA1n nov\xC3\xBD projekt" next_actions_title_additions: completed: "hotov\xC3\xA9 \xC3\xBAkoly" due_today: dnes due_within_a_week: !binary | YsSbaGVtIHTDvWRuZQ== - list_incomplete_next_actions_with_limit: "Zobrazuje posledn\xC3\xADch %{count} nedokon\xC4\x8Den\xC3\xBDch \xC3\xBAkol\xC5\xAF" - set_to_pending: "%{task} nastaven jako \xC4\x8Dekaj\xC3\xADc\xC3\xAD" - added_new_project: "P\xC5\x99id\xC3\xA1n nov\xC3\xBD projekt" older_completed_items: "" - error_deleting_item: "Nepoda\xC5\x99ilo se smazat polo\xC5\xBEku %{description}" - edit_recurring_todo: "Upravit opakovan\xC3\xBD \xC3\xBAkol" - append_in_this_project: v tomto projektu - task_list_title: "TRACKS::\xC3\x9Akoly" no_actions_due_this_week: !binary | xb3DoWRuw6kgw7prb2x5IHBsw6Fub3bDoW55IG5hIHRlbnRvIHTDvWRlbg== + all_completed_here: zde + append_in_this_project: v tomto projektu + edit_recurring_todo: "Upravit opakovan\xC3\xBD \xC3\xBAkol" + error_deleting_item: "Nepoda\xC5\x99ilo se smazat polo\xC5\xBEku %{description}" + task_list_title: "TRACKS::\xC3\x9Akoly" no_recurring_todos: !binary | xb3DoWRuw6kgb3Bha292YW7DqSDDumtvbHk= @@ -584,26 +612,26 @@ cz: no_deferred_pending_actions: !binary | xb3DoWRuw6kgb2Rsb8W+ZW7DqSBhbmkgxI1la2Fqw61jw60gw7prb2x5 - completed_last_day: "Ukon\xC4\x8Den\xC3\xA9 v posledn\xC3\xADch 24 hodin\xC3\xA1ch" delete_recurring_action_confirm: "Opravdu chcete smazat opakovan\xC3\xBD \xC3\xBAkol '%{description}'?" - show_in_days: "Zobrazit za %{days} dn\xC3\xAD" + completed_last_day: "Ukon\xC4\x8Den\xC3\xA9 v posledn\xC3\xADch 24 hodin\xC3\xA1ch" + feed_title_in_context: v kontextu '%{context}' no_project: "--\xC5\xBD\xC3\xA1dn\xC3\xBD projekt--" + show_in_days: "Zobrazit za %{days} dn\xC3\xAD" error_saving_recurring: "Nepoda\xC5\x99ilo se ulo\xC5\xBEit opakovan\xC3\xBD \xC3\xBAkol \\'%{description}\\'" completed_more_than_x_days_ago: "" - all_completed: "V\xC5\xA1echny hotov\xC3\xA9 \xC3\xBAkoly" - feed_title_in_context: v kontextu '%{context}' new_related_todo_created_short: "vytvo\xC5\x99en nov\xC3\xBD \xC3\xBAkol" + all_completed: "V\xC5\xA1echny hotov\xC3\xA9 \xC3\xBAkoly" edit: Upravit + completed_actions_with: "Hotov\xC3\xA9 \xC3\xBAkoly se \xC5\xA1t\xC3\xADtkem '%{tag_name}'" older_than_days: "" completed_tagged_page_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly se \xC5\xA1t\xC3\xADtkem '%{tag_name}'" pending: !binary | xIxla2Fqw61jw60= - completed_actions_with: "Hotov\xC3\xA9 \xC3\xBAkoly se \xC5\xA1t\xC3\xADtkem '%{tag_name}'" + completed_tasks_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly" deleted_success: !binary | w5prb2wgYnlsIMO6c3DEm8WhbsSbIHNtYXrDoW4u - completed_tasks_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly" feed_title_in_project: v projektu '%{project}' clear_due_date: "Smazat pl\xC3\xA1novan\xC3\xA9 datum \xC3\xBAkolu" error_removing_dependency: "Nepoda\xC5\x99ilo se odstranit z\xC3\xA1vislost" @@ -616,22 +644,23 @@ cz: recurring_deleted_success: !binary | T3Bha292YW7DvSDDumtvbCBieWwgw7pzcMSbxaFuxJsgc21hesOhbi4= - clear_show_from_date: "Odstranit datum zobrazen\xC3\xAD" + no_completed_actions_with: "\xC5\xBD\xC3\xA1dn\xC3\xA9 hotov\xC3\xA9 \xC3\xBAkoly se \xC5\xA1t\xC3\xADtkem '%{tag_name}'" next_actions_title: "Tracks - \xC3\x9Akoly" next_action_description: "Popis \xC3\xBAkolu" deferred_tasks_title: TRACKS::Tickler - no_completed_actions_with: "\xC5\xBD\xC3\xA1dn\xC3\xA9 hotov\xC3\xA9 \xC3\xBAkoly se \xC5\xA1t\xC3\xADtkem '%{tag_name}'" - unresolved_dependency: "Hodnota v poli 'z\xC3\xA1vis\xC3\xAD na' neodpov\xC3\xADd\xC3\xA1 \xC5\xBE\xC3\xA1dn\xC3\xA9mu existuj\xC3\xADc\xC3\xADmu \xC3\xBAkolu. Hodnota bude ignorov\xC3\xA1na. Pokra\xC4\x8Dovat?" - calendar_page_title: "TRACKS::Kalend\xC3\xA1\xC5\x99" + clear_show_from_date: "Odstranit datum zobrazen\xC3\xAD" in_hidden_state: "(skryt\xC3\xBD)" - show_today: Zobrazit Dnes + see_all_completed: "M\xC5\xAF\xC5\xBEete vid\xC4\x9Bt v\xC5\xA1echny dokon\xC4\x8Den\xC3\xA9 akce %{link}" + calendar_page_title: "TRACKS::Kalend\xC3\xA1\xC5\x99" + unresolved_dependency: "Hodnota v poli 'z\xC3\xA1vis\xC3\xAD na' neodpov\xC3\xADd\xC3\xA1 \xC5\xBE\xC3\xA1dn\xC3\xA9mu existuj\xC3\xADc\xC3\xADmu \xC3\xBAkolu. Hodnota bude ignorov\xC3\xA1na. Pokra\xC4\x8Dovat?" no_actions_found_title: !binary | TmVuYWxlemVueSDFvsOhZG7DqSDDumtvbHk= + show_today: Zobrazit Dnes next_actions_due_date: overdue_by: "Pro\xC5\xA1l\xC3\xA9 %{days} den" - due_today: Dnes due_in_x_days: "Za %{days} dn\xC3\xAD" + due_today: Dnes overdue_by_plural: "Pro\xC5\xA1l\xC3\xA9 %{days} dn\xC3\xAD" due_tomorrow: !binary | WsOtdHJh @@ -660,15 +689,15 @@ cz: feeds: completed: "Hotov\xC3\xA9: %{date}" due: "Pl\xC3\xA1nov\xC3\xA1no na: %{date}" - delete_action: "Smazat \xC3\xBAkol" - error_deleting_recurring: "Nepoda\xC5\x99ilo se smazat opakovan\xC3\xBD \xC3\xBAkol \\'%{description}\\'" recurring_todos: "Opakovan\xC3\xA9 \xC3\xBAkoly" + error_deleting_recurring: "Nepoda\xC5\x99ilo se smazat opakovan\xC3\xBD \xC3\xBAkol \\'%{description}\\'" + delete_action: "Smazat \xC3\xBAkol" delete: Smazat - drag_action_title: "P\xC5\x99et\xC3\xA1hnout na jin\xC3\xBD \xC3\xBAkol pro vytvo\xC5\x99en\xC3\xAD z\xC3\xA1vislosti" - cannot_add_dependency_to_completed_todo: "Nelze p\xC5\x99idat \xC3\xBAkol jako z\xC3\xA1vislost k hotov\xC3\xA9mu \xC3\xBAkolu!" no_last_completed_actions: !binary | xb3DoWRuw6kgaG90b3bDqSDDumtvbHk= + drag_action_title: "P\xC5\x99et\xC3\xA1hnout na jin\xC3\xBD \xC3\xBAkol pro vytvo\xC5\x99en\xC3\xAD z\xC3\xA1vislosti" + cannot_add_dependency_to_completed_todo: "Nelze p\xC5\x99idat \xC3\xBAkol jako z\xC3\xA1vislost k hotov\xC3\xA9mu \xC3\xBAkolu!" depends_on: !binary | WsOhdmlzw60gbmE= @@ -680,6 +709,7 @@ cz: added_new_next_action_plural: "\xC3\x9Akoly byly p\xC5\x99id\xC3\xA1ny" new_related_todo_not_created_short: "\xC3\xBAkol nebyl vytvo\xC5\x99en" completed_rest_of_week: "Dokon\xC4\x8Den\xC3\xA9 ve zbytku t\xC3\xBDdne" + show_tomorrow: "Zobrazit z\xC3\xADtra" error_starring: "Nepoda\xC5\x99ilo se ozna\xC4\x8Dit \xC3\xBAkol hv\xC4\x9Bzdi\xC4\x8Dkou '%{description}'" calendar: get_in_ical_format: "Kalend\xC3\xA1\xC5\x99 ve form\xC3\xA1tu iCal" @@ -702,9 +732,9 @@ cz: no_actions_due_this_month: "Na zbytek tohoto m\xC4\x9Bs\xC3\xADce nejsou \xC5\xBE\xC3\xA1dn\xC3\xA9 \xC3\xBAkoly" due_this_month: "Pl\xC3\xA1nov\xC3\xA1no na %{month}" - show_tomorrow: "Zobrazit z\xC3\xADtra" - tagged_page_title: "TRACKS::Se \xC5\xA1t\xC3\xADtkem '%{tag_name}'" - action_deferred: "\xC3\x9Akol '%{description}' byl oldo\xC5\xBEen" + no_completed_recurring: !binary | + xb3DoWRuw6kgaG90b3bDqSBvcGFrb3ZhbsOpIMO6a29seQ== + recurrence: ends_on_date: "Kon\xC4\x8D\xC3\xAD %{date}" every_work_day: "Ka\xC5\xBEd\xC3\xBD pracovn\xC3\xAD den" @@ -717,16 +747,19 @@ cz: monthly_options: !binary | TmFzdGF2ZW7DrSBwcm8gbcSbc8OtxI1uw60gb3Bha292YW7DqSDDumtvbHk= + daily_options: "Nastaven\xC3\xAD pro denn\xC3\xAD opakovan\xC3\xA9 \xC3\xBAkoly" monthly: !binary | TcSbc8OtxI1uxJs= starts_on: !binary | WmHEjcOtbsOh - daily_options: "Nastaven\xC3\xAD pro denn\xC3\xAD opakovan\xC3\xA9 \xC3\xBAkoly" daily: !binary | RGVubsSb + show_option_always: !binary | + c3TDoWxl + pattern: third: !binary | dMWZZXTDrQ== @@ -754,21 +787,26 @@ cz: every_n: !binary | a2HFvmTDqSAle259 - every_xth_day_of_every_n_months: "ka\xC5\xBEd\xC3\xBD %{x} %{day} ka\xC5\xBEd\xC3\xBDch %{n_months}" second: !binary | ZHJ1aMO9 + every_xth_day_of_every_n_months: "ka\xC5\xBEd\xC3\xBD %{x} %{day} ka\xC5\xBEd\xC3\xBDch %{n_months}" on_day_n: "%{n}. den" weekly: !binary | a2HFvmTDvSB0w71kZW4= from: od + last: "posledn\xC3\xAD" every_day: !binary | a2HFvmTDvSBkZW4= - last: "posledn\xC3\xAD" - times: "(%{number} opakov\xC3\xA1n\xC3\xAD)" the_xth_day_of_month: "%{x} %{day} m\xC4\x9Bs\xC3\xADce %{month}" + times: "(%{number} opakov\xC3\xA1n\xC3\xAD)" + show: "uk\xC3\xA1zat" + first: !binary | + cHJ2bsOt + + every_year_on: "ka\xC5\xBEd\xC3\xBD rok %{date}" day_names: - "ned\xC4\x9Ble" - !binary | @@ -783,11 +821,6 @@ cz: cMOhdGVr - sobota - show: "uk\xC3\xA1zat" - first: !binary | - cHJ2bsOt - - every_year_on: "ka\xC5\xBEd\xC3\xBD rok %{date}" on_work_days: "v pracovn\xC3\xAD dny" fourth: !binary | xI10dnJ0w70= @@ -797,51 +830,50 @@ cz: a2HFvmTDvSBtxJtzw61j until: do - show_option_always: !binary | - c3TDoWxl - yearly_every_x_day: "Ka\xC5\xBEd\xC3\xBD %{month} %{day}" recurrence_on_options: "Nastavit opakov\xC3\xA1n\xC3\xAD na" daily_every_number_day: "Ka\xC5\xBEd\xC3\xBDch %{number} dn\xC3\xAD" - ends_on: !binary | - S29uxI3DrQ== - show_options: !binary | w5prw6F6YXQgw7prb2w= weekly_every_number_week: "Ka\xC5\xBEd\xC3\xBDch %{number} t\xC3\xBDdn\xC5\xAF" + ends_on: !binary | + S29uxI3DrQ== + show_days_before: "%{days} dn\xC3\xAD p\xC5\x99ed pl\xC3\xA1novan\xC3\xBDm datem" - yearly_every_xth_day: "%{day} %{day_of_week} m\xC4\x9Bs\xC3\xADce %{month}" from_tickler: "datum kdy \xC3\xBAkol vypadne z Tickleru (nen\xC3\xAD nastaveno pl\xC3\xA1novan\xC3\xA9 datum)" no_end_date: Nikdy day_x_on_every_x_month: "%{day}. den ka\xC5\xBEd\xC3\xBD %{month}. m\xC4\x9Bs\xC3\xADc" + yearly_every_xth_day: "%{day} %{day_of_week} m\xC4\x9Bs\xC3\xADce %{month}" yearly_options: "Nastaven\xC3\xAD pro ro\xC4\x8Dn\xC3\xAD opakovan\xC3\xA9 \xC3\xBAkoly" yearly: !binary | Um/EjW7Emw== monthly_every_xth_day: "%{day} %{day_of_week} ka\xC5\xBEd\xC3\xBD %{month}. m\xC4\x9Bs\xC3\xADc" - no_completed_recurring: !binary | - xb3DoWRuw6kgaG90b3bDqSBvcGFrb3ZhbsOpIMO6a29seQ== - + action_deferred: "\xC3\x9Akol '%{description}' byl oldo\xC5\xBEen" + tagged_page_title: "TRACKS::Se \xC5\xA1t\xC3\xADtkem '%{tag_name}'" added_dependency: "P\xC5\x99id\xC3\xA1no %{dependency} jako z\xC3\xA1vislost." + completed_rest_of_month: "Ukon\xC4\x8Den\xC3\xA9 ve zbytku tohoto m\xC4\x9Bs\xC3\xADce" + all_completed_tagged_page_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly se \xC5\xA1t\xC3\xADtkem %{tag_name}" no_deferred_actions: !binary | xb3DoWRuw6kgb2Rsb8W+ZW7DqSDDumtvbHku - all_completed_tagged_page_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly se \xC5\xA1t\xC3\xADtkem %{tag_name}" - completed_rest_of_month: "Ukon\xC4\x8Den\xC3\xA9 ve zbytku tohoto m\xC4\x9Bs\xC3\xADce" recurrence_completed: "Posledn\xC3\xAD opakov\xC3\xA1n\xC3\xAD \xC3\xBAkolu bylo ozna\xC4\x8Deno jako hotov\xC3\xA9. Opakovan\xC3\xBD \xC3\xBAkol je dokon\xC4\x8Den\xC3\xBD" - error_toggle_complete: "Nepoda\xC5\x99ilo se ozna\xC4\x8Dit \xC3\xBAkol jako hotov\xC3\xBD" - due: "Pl\xC3\xA1nov\xC3\xA1no na" + action_marked_complete_error: "\xC3\x9Akol '%{description}' NEBYL ozna\xC4\x8Den jako %{completed} kv\xC5\xAFli chyb\xC4\x9B na serveru." no_actions_found: !binary | xb3DoWRuw6kgYsSbxb7DrWPDrSDDumtvbHku in_pending_state: "ve stavu \xC4\x8Dekaj\xC3\xADc\xC3\xAD" - action_marked_complete_error: "\xC3\x9Akol '%{description}' NEBYL ozna\xC4\x8Den jako %{completed} kv\xC5\xAFli chyb\xC4\x9B na serveru." - depends_on_separate_with_commas: !binary | - WsOhdmlzw60gbmEgKG9kZMSbbGVubyDEjcOhcmthbWkp + error_toggle_complete: "Nepoda\xC5\x99ilo se ozna\xC4\x8Dit \xC3\xBAkol jako hotov\xC3\xBD" + due: "Pl\xC3\xA1nov\xC3\xA1no na" + no_incomplete_actions: !binary | + xb3DoWRuw6kgbmVob3RvdsOpIMO6a29seQ== action_saved_to_tickler: "\xC3\x9Akol byl ulo\xC5\xBEen do Tickleru" recurring_action_saved: "Opakovan\xC3\xBD \xC3\xBAkol byl ulo\xC5\xBEen" + depends_on_separate_with_commas: !binary | + WsOhdmlzw60gbmEgKG9kZMSbbGVubyDEjcOhcmthbWkp + completed_in_archive: one: "V archivu je hotov\xC3\xBD \xC3\xBAkol." other: "V archivu je %{count} hotov\xC3\xBDch \xC3\xBAkol\xC5\xAF." @@ -853,34 +885,104 @@ cz: U3Bvxb5kxJtuw6kgw7prb2x5 add_new_recurring: "Vytvo\xC5\x99it opakovan\xC3\xBD \xC3\xBAkol" - no_incomplete_actions: !binary | - xb3DoWRuw6kgbmVob3RvdsOpIMO6a29seQ== - notes: delete_note_title: "Smazat pozn\xC3\xA1mku '%{id}'" delete_confirmation: "Opravdu chcete smazat pozn\xC3\xA1mku '%{id}'?" in_project: "V:" delete_item_title: "Smazat polo\xC5\xBEku" + deleted_note: "Smazat pozn\xC3\xA1mku '%{id}'" note_link_title: "Zobrazit pozn\xC3\xA1mku %{id}" show_note_title: "Zobrazit pozn\xC3\xA1mku" - deleted_note: "Smazat pozn\xC3\xA1mku '%{id}'" edit_item_title: "Upravit polo\xC5\xBEku" note_location_link: "V:" no_notes_available: "\xC5\xBD\xC3\xA1dn\xC3\xA9 pozn\xC3\xA1mky: p\xC5\x99idejte pozn\xC3\xA1mky ze str\xC3\xA1nek jednotliv\xC3\xBDch projekt\xC5\xAF." note_header: "Pozn\xC3\xA1mka %{id}" delete_note_confirm: "Opravdu chcete smazat pozn\xC3\xA1mku '%{id}'?" + projects: + default_context_set: "V\xC3\xBDchoz\xC3\xAD kontext %{default_context} byl nastaven" + no_actions_in_project: !binary | + xb3DoWRuw6kgYWt0aXZuw60gw7prb2x5 + + deferred_actions: "Odlo\xC5\xBEen\xC3\xA9 \xC3\xBAkoly projektu" + was_marked_hidden: "byl ozna\xC4\x8Den jako skryt\xC3\xBD" + edit_project_title: Upravit projekt + default_tags_removed_notice: "V\xC3\xBDchoz\xC3\xAD \xC5\xA1t\xC3\xADtky byly odstran\xC4\x9Bny" + page_title: "TRACKS::Projekt: %{project}" + all_completed_tasks_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly projektu '%{project_name}'" + hide_form: !binary | + U2tyw710IGZvcm11bMOhxZk= + + list_completed_projects: "TRACKS::Hotov\xC3\xA9 projekty" + no_notes_attached: !binary | + xb3DoWRuw6kgcG96bsOhbWt5 + + to_new_project_page: "p\xC5\x99ej\xC3\xADt k nov\xC3\xA9mu projektu" + show_form_title: "Nov\xC3\xBD projekt" + deferred_actions_empty: !binary | + xb3DoWRuw6kgb2Rsb8W+ZW7DqSDDumtvbHk= + + project_state: Projekt je %{state}. + this_project: Tento projekt + no_last_completed_projects: !binary | + xb3DoWRuw6kgaG90b3bDqSBwcm9qZWt0eQ== + + no_last_completed_recurring_todos: !binary | + xb3DoWRuw6kgaG90b3bDqSBvcGFrb3ZhbsOpIMO6a29seQ== + + notes: "Pozn\xC3\xA1mky" + todos_append: v tomto projektu + list_reviews: TRACKS::Revize + notes_empty: !binary | + xb3DoWRuw6kgcG96bsOhbWt5 + + no_projects: !binary | + xb3DoWRuw6kgcHJvamVrdHk= + + hide_form_title: "Schovat formul\xC3\xA1\xC5\x99 zalo\xC5\xBEen\xC3\xAD projektu" + delete_project: Smazat projekt + completed_actions_empty: "V tomto projektu nejsou \xC5\xBE\xC3\xA1dn\xC3\xA9 hotov\xC3\xA9 \xC3\xBAkoly" + with_no_default_context: "bez v\xC3\xBDchoz\xC3\xADho kontextu" + delete_project_confirmation: Opravdu chcete smazat projekt '%{name}'? + with_default_context: "s v\xC3\xBDchoz\xC3\xADm kontextem '%{context_name}'" + show_form: "Nov\xC3\xBD projekt" + actions_in_project_title: "\xC3\x9Akoly v tomto projetku" + completed_projects: "Hotov\xC3\xA9 projetky" + is_active: "je aktivn\xC3\xAD" + add_note: "Nov\xC3\xA1 pozn\xC3\xA1mka" + set_default_tags_notice: "Nastavit v\xC3\xBDchoz\xC3\xAD \xC5\xA1\xC3\xADtky \xC3\xBAkol\xC5\xAF v tomto projektu %{default_tags}" + add_project: "P\xC5\x99idat projekt" + settings: "Nastaven\xC3\xAD" + project_saved_status: "Projekt byl ulo\xC5\xBEen" + list_projects: TRACKS::Projekty + with_default_tags: "a s '%{tags}' jako v\xC3\xBDchoz\xC3\xAD \xC5\xA1t\xC3\xADtky" + completed_tasks_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly projektu '%{project_name}'" + hidden_projects: "Skryt\xC3\xA9 projekty" + delete_project_title: "Sma\xC5\xBEe projekt" + default_context_removed: "V\xC3\xBDchoz\xC3\xAD kontext byl odstran\xC4\x9Bn" + add_note_submit: "Nov\xC3\xA1 pozn\xC3\xA1mka" + completed_actions: "Hotov\xC3\xA9 \xC3\xBAkoly tohoto projektu" + was_marked_complete: "byl ozna\xC4\x8Den jako hotov\xC3\xBD" + no_default_context: "Tento projekt nem\xC3\xA1 v\xC3\xBDchoz\xC3\xAD kontext" + with_no_default_tags: !binary | + YSBuZW3DoSDFvsOhZG7DqSB2w71jaG96w60gem5hxI1reQ== + + default_context: "V\xC3\xBDchoz\xC3\xAD kontext pro tento projekt je %{context}" + edit_project_settings: Upravit vlastnosti projektu + status_project_name_changed: "Jm\xC3\xA9no projektu bylo zm\xC4\x9Bn\xC4\x9Bno" + state: Tento projekt je %{state} + active_projects: "Aktivn\xC3\xAD projekty" states: hidden_plural: "Skryt\xC3\xA9" - review_plural: "Nerevidovan\xC3\xA9" stalled: !binary | T3B1xaF0xJtuw70= + review_plural: "Nerevidovan\xC3\xA9" completed: "Hotov\xC3\xBD" current: !binary | QWt0dcOhbG7DrQ== - completed_plural: "Hotov\xC3\xA9" review: "Nerevidovan\xC3\xBD" + completed_plural: "Hotov\xC3\xA9" blocked: "Blokovan\xC3\xBD" blocked_plural: "Blokovan\xC3\xA9" stalled_plural: !binary | @@ -889,99 +991,16 @@ cz: visible_plural: "Viditeln\xC3\xA9" active_plural: "Aktivn\xC3\xAD" visible: "Viditeln\xC3\xBD" + hidden: "Skryt\xC3\xBD" + active: "Aktivn\xC3\xAD" current_plural: !binary | QWt0dcOhbG7DrQ== - hidden: "Skryt\xC3\xBD" - active: "Aktivn\xC3\xAD" - projects: - was_marked_hidden: "byl ozna\xC4\x8Den jako skryt\xC3\xBD" - edit_project_title: Upravit projekt - default_tags_removed_notice: "V\xC3\xBDchoz\xC3\xAD \xC5\xA1t\xC3\xADtky byly odstran\xC4\x9Bny" - default_context_set: "V\xC3\xBDchoz\xC3\xAD kontext %{default_context} byl nastaven" - no_actions_in_project: !binary | - xb3DoWRuw6kgYWt0aXZuw60gw7prb2x5 - - deferred_actions: "Odlo\xC5\xBEen\xC3\xA9 \xC3\xBAkoly projektu" - all_completed_tasks_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly projektu '%{project_name}'" - page_title: "TRACKS::Projekt: %{project}" - hide_form: !binary | - U2tyw710IGZvcm11bMOhxZk= - - no_notes_attached: !binary | - xb3DoWRuw6kgcG96bsOhbWt5 - - show_form_title: "Nov\xC3\xBD projekt" - deferred_actions_empty: !binary | - xb3DoWRuw6kgb2Rsb8W+ZW7DqSDDumtvbHk= - - this_project: Tento projekt - project_state: Projekt je %{state}. - list_completed_projects: "TRACKS::Hotov\xC3\xA9 projekty" - to_new_project_page: "p\xC5\x99ej\xC3\xADt k nov\xC3\xA9mu projektu" - no_last_completed_recurring_todos: !binary | - xb3DoWRuw6kgaG90b3bDqSBvcGFrb3ZhbsOpIMO6a29seQ== - - todos_append: v tomto projektu - no_last_completed_projects: !binary | - xb3DoWRuw6kgaG90b3bDqSBwcm9qZWt0eQ== - - notes: "Pozn\xC3\xA1mky" - notes_empty: !binary | - xb3DoWRuw6kgcG96bsOhbWt5 - - no_projects: !binary | - xb3DoWRuw6kgcHJvamVrdHk= - - hide_form_title: "Schovat formul\xC3\xA1\xC5\x99 zalo\xC5\xBEen\xC3\xAD projektu" - list_reviews: TRACKS::Revize - delete_project: Smazat projekt - completed_actions_empty: "V tomto projektu nejsou \xC5\xBE\xC3\xA1dn\xC3\xA9 hotov\xC3\xA9 \xC3\xBAkoly" - with_no_default_context: "bez v\xC3\xBDchoz\xC3\xADho kontextu" - show_form: "Nov\xC3\xBD projekt" - actions_in_project_title: "\xC3\x9Akoly v tomto projetku" - delete_project_confirmation: Opravdu chcete smazat projekt '%{name}'? - with_default_context: "s v\xC3\xBDchoz\xC3\xADm kontextem '%{context_name}'" - add_note: "Nov\xC3\xA1 pozn\xC3\xA1mka" - add_project: "P\xC5\x99idat projekt" - with_default_tags: "a s '%{tags}' jako v\xC3\xBDchoz\xC3\xAD \xC5\xA1t\xC3\xADtky" - is_active: "je aktivn\xC3\xAD" - list_projects: TRACKS::Projekty - settings: "Nastaven\xC3\xAD" - completed_projects: "Hotov\xC3\xA9 projetky" - set_default_tags_notice: "Nastavit v\xC3\xBDchoz\xC3\xAD \xC5\xA1\xC3\xADtky \xC3\xBAkol\xC5\xAF v tomto projektu %{default_tags}" - project_saved_status: "Projekt byl ulo\xC5\xBEen" - delete_project_title: "Sma\xC5\xBEe projekt" - hidden_projects: "Skryt\xC3\xA9 projekty" - completed_tasks_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly projektu '%{project_name}'" - was_marked_complete: "byl ozna\xC4\x8Den jako hotov\xC3\xBD" - completed_actions: "Hotov\xC3\xA9 \xC3\xBAkoly tohoto projektu" - default_context_removed: "V\xC3\xBDchoz\xC3\xAD kontext byl odstran\xC4\x9Bn" - add_note_submit: "Nov\xC3\xA1 pozn\xC3\xA1mka" - edit_project_settings: Upravit vlastnosti projektu - status_project_name_changed: "Jm\xC3\xA9no projektu bylo zm\xC4\x9Bn\xC4\x9Bno" - active_projects: "Aktivn\xC3\xAD projekty" - default_context: "V\xC3\xBDchoz\xC3\xAD kontext pro tento projekt je %{context}" - state: Tento projekt je %{state} - no_default_context: "Tento projekt nem\xC3\xA1 v\xC3\xBDchoz\xC3\xAD kontext" - with_no_default_tags: !binary | - YSBuZW3DoSDFvsOhZG7DqSB2w71jaG96w60gem5hxI1reQ== - errors: user_unauthorized: "401 Neautorizov\xC3\xA1no: Jen administr\xC3\xA1to\xC5\x99i sm\xC3\xAD pou\xC5\xBE\xC3\xADvat tuto funkci." - time: - am: am - formats: - stats: "%a %d-%m" - default: "%a, %d %b %Y %H:%M:%S %z" - time: "" - short: "%d %b %H:%M" - month_day: "%B %d" - long: "%B %d, %Y %H:%M" - pm: pm preferences: - change_identity_url: "Zm\xC4\x9Bna URL identity" open_id_url: "Va\xC5\xA1e OpenID URL je" + change_identity_url: "Zm\xC4\x9Bna URL identity" staleness_starts_after: "Zastar\xC3\xA1n\xC3\xAD nast\xC3\xA1v\xC3\xA1 po %{days} dnech" page_title: "TRACKS::Nastaven\xC3\xAD" change_password: "Zm\xC4\x9Bna hesla" @@ -989,10 +1008,10 @@ cz: title: "Va\xC5\xA1e nastaven\xC3\xAD" is_false: ne show_number_completed: "Zobrazit %{number} hotov\xC3\xBDch polo\xC5\xBEek" + password_changed: "Heslo bylo zm\xC4\x9Bn\xC4\x9Bno. Pros\xC3\xADm znovu se p\xC5\x99ihla\xC5\xA1te." edit_preferences: "Editace nastaven\xC3\xAD" page_title_edit: "TRACKS::Editace nastaven\xC3\xAD" is_true: ano - password_changed: "Heslo bylo zm\xC4\x9Bn\xC4\x9Bno. Pros\xC3\xADm znovu se p\xC5\x99ihla\xC5\xA1te." sms_context_none: !binary | xb7DoWRuw70= @@ -1006,10 +1025,20 @@ cz: change_authentication_type: "Zm\xC4\x9Bna typu autentizace" generate_new_token_confirm: "Opravdu? Nov\xC3\xBD pe\xC5\xA1ek nahrad\xC3\xAD ten p\xC5\xAFvodn\xC3\xAD a zp\xC5\xAFsob\xC3\xAD nefunk\xC4\x8Dnost ve v\xC5\xA1ech aplikac\xC3\xADch, kde jej pou\xC5\xBE\xC3\xADv\xC3\xA1te." tabs: - tracks_behavior: "Chov\xC3\xA1n\xC3\xAD Tracks" authentication: Autentizace + tracks_behavior: "Chov\xC3\xA1n\xC3\xAD Tracks" profile: Profil date_and_time: "Datum a \xC4\x8Das" + time: + am: am + formats: + stats: "%a %d-%m" + default: "%a, %d %b %Y %H:%M:%S %z" + time: "" + short: "%d %b %H:%M" + month_day: "%B %d" + long: "%B %d, %Y %H:%M" + pm: pm date: month_names: - @@ -1130,10 +1159,10 @@ cz: send_feedback: "Poslat zp\xC4\x9Btnou vazbu na %{version}" shared: multiple_next_actions: "\xC3\x9Akoly (jeden na ka\xC5\xBEd\xC3\xA9m \xC5\x99\xC3\xA1dku)" + make_actions_dependent: "Akce budou vz\xC3\xA1jemn\xC4\x9B z\xC3\xA1visl\xC3\xA9" toggle_single: !binary | UMWZaWRhdCDDumtvbA== - make_actions_dependent: "Akce budou vz\xC3\xA1jemn\xC4\x9B z\xC3\xA1visl\xC3\xA9" hide_form: "Schovat formul\xC3\xA1\xC5\x99" add_actions: "P\xC5\x99idat \xC3\xBAkoly" add_action: !binary | @@ -1157,6 +1186,32 @@ cz: ZSDDumtvbMWv hide_action_form_title: "Skr\xC3\xBDt formul\xC3\xA1\xC5\x99 pro zalo\xC5\xBEen\xC3\xAD nov\xC3\xA9ho \xC3\xBAkolu" + feedlist: + choose_context: "Vyberte kontext jeho\xC5\xBE feed si p\xC5\x99ejete" + actions_due_today: "Akce pl\xC3\xA1novan\xC3\xA9 na dnes" + ical_feed: iCal feed + legend: "Legenda:" + all_contexts: "V\xC5\xA1echny kontexty" + rss_feed: RSS Feed + choose_project: "Vyberte projekt jeho\xC5\xBE feed si p\xC5\x99ejete" + all_projects: "V\xC5\xA1echny projekty" + project_needed: "Mus\xC3\xADte nejd\xC5\x99\xC3\xADve zalo\xC5\xBEit aspo\xC5\x88 jeden projekt" + select_feed_for_project: Vyberte feed pro tento projekt + active_projects_wo_next: "Aktivni projekty bez \xC3\xBAkol\xC5\xAF" + active_starred_actions: "V\xC5\xA1echny aktivn\xC3\xAD \xC3\xBAkoly s hv\xC4\x9Bzdi\xC4\x8Dkou" + context_needed: "Mus\xC3\xADte nejd\xC5\x99\xC3\xADve zalo\xC5\xBEit aspo\xC5\x88 jeden kontext" + select_feed_for_context: Select the feed for this context + projects_and_actions: "Aktivn\xC3\xAD projekty a jejich \xC3\xBAkoly" + notice_incomplete_only: "Pozn\xC3\xA1mka: v\xC5\xA1echny feedy obsahuj\xC3\xAD jen nehotov\xC3\xA9 \xC3\xBAkoly." + actions_due_next_week: !binary | + w5prb2x5IHBsw6Fub3ZhbsOpIG5hIHDFmcOtxaF0w61jaCBzZWRtIGRuw60= + + actions_completed_last_week: "\xC3\x9Akoly dokon\xC4\x8Den\xC3\xA9 v posledn\xC3\xADch sedmi dnech" + context_centric_actions: "Feedy s aktivn\xC3\xADmi \xC3\xBAkoly podle kontext\xC5\xAF" + plain_text_feed: "Prost\xC3\xBD text" + last_fixed_number: "Posledn\xC3\xADch %{number} \xC3\xBAkol\xC5\xAF" + all_actions: "V\xC5\xA1echny \xC3\xBAkoly" + project_centric: "Feedy s aktivn\xC3\xADmi \xC3\xBAkoly podle projektu" sidebar: list_name_active_contexts: "Aktivn\xC3\xAD kontexty" list_name_active_projects: "Aktivn\xC3\xAD projekty" @@ -1164,72 +1219,14 @@ cz: list_name_completed_projects: "Hotov\xC3\xA9 projekty" list_name_hidden_projects: "Skryt\xC3\xA9 projekty" list_name_hidden_contexts: "Skryt\xC3\xA9 kontexty" - feedlist: - actions_due_today: "Akce pl\xC3\xA1novan\xC3\xA9 na dnes" - choose_context: "Vyberte kontext jeho\xC5\xBE feed si p\xC5\x99ejete" - rss_feed: RSS Feed - legend: "Legenda:" - ical_feed: iCal feed - all_contexts: "V\xC5\xA1echny kontexty" - all_projects: "V\xC5\xA1echny projekty" - choose_project: "Vyberte projekt jeho\xC5\xBE feed si p\xC5\x99ejete" - project_needed: "Mus\xC3\xADte nejd\xC5\x99\xC3\xADve zalo\xC5\xBEit aspo\xC5\x88 jeden projekt" - select_feed_for_project: Vyberte feed pro tento projekt - active_projects_wo_next: "Aktivni projekty bez \xC3\xBAkol\xC5\xAF" - active_starred_actions: "V\xC5\xA1echny aktivn\xC3\xAD \xC3\xBAkoly s hv\xC4\x9Bzdi\xC4\x8Dkou" - select_feed_for_context: Select the feed for this context - projects_and_actions: "Aktivn\xC3\xAD projekty a jejich \xC3\xBAkoly" - context_needed: "Mus\xC3\xADte nejd\xC5\x99\xC3\xADve zalo\xC5\xBEit aspo\xC5\x88 jeden kontext" - actions_due_next_week: !binary | - w5prb2x5IHBsw6Fub3ZhbsOpIG5hIHDFmcOtxaF0w61jaCBzZWRtIGRuw60= - - notice_incomplete_only: "Pozn\xC3\xA1mka: v\xC5\xA1echny feedy obsahuj\xC3\xAD jen nehotov\xC3\xA9 \xC3\xBAkoly." - context_centric_actions: "Feedy s aktivn\xC3\xADmi \xC3\xBAkoly podle kontext\xC5\xAF" - plain_text_feed: "Prost\xC3\xBD text" - last_fixed_number: "Posledn\xC3\xADch %{number} \xC3\xBAkol\xC5\xAF" - all_actions: "V\xC5\xA1echny \xC3\xBAkoly" - actions_completed_last_week: "\xC3\x9Akoly dokon\xC4\x8Den\xC3\xA9 v posledn\xC3\xADch sedmi dnech" - project_centric: "Feedy s aktivn\xC3\xADmi \xC3\xBAkoly podle projektu" - contexts: - delete_context_title: Smazat kontext - all_completed_tasks_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly v kontextu '%{context_name}'" - hide_form: "Schovat formul\xC3\xA1\xC5\x99" - show_form_title: "Nov\xC3\xBD kontext" - todos_append: "v t\xC3\xA9to souvislosti" - delete_context_confirmation: "Opravdu chcete smazat kontext '%{name}'? Dojde ke smaz\xC3\xA1n\xC3\xAD v\xC5\xA1ech (opakovan\xC3\xBDch) \xC3\xBAkol\xC5\xAF z dan\xC3\xA9ho kontextu!" - delete_context: Smazat kontext - edit_context: Upravit kontext - hide_form_title: "Schovat formul\xC3\xA1\xC5\x99" - hidden_contexts: Schovat kontexty - no_contexts_active: !binary | - xb3DoWRuw6kgYWt0aXZuw60ga29udGV4dHk= - - context_hide: "Schovat z \xC3\xBAvodn\xC3\xAD str\xC3\xA1nky?" - show_form: "Nov\xC3\xBD kontext" - visible_contexts: "Viditeln\xC3\xA9 kontexty" - save_status_message: "Kontext ulo\xC5\xBEen" - add_context: "Vytvo\xC5\x99it kontext" - update_status_message: "N\xC3\xA1zev kontextu byl zm\xC4\x9Bn\xC4\x9Bn" - context_name: "N\xC3\xA1ev kontextu" - status_active: "Kontext je aktivn\xC3\xAD" - completed_tasks_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly v kontextu '%{context_name}'" - new_context_post: "' bude tak\xC3\xA9 vytvo\xC5\x99en. Opravdu?" - no_actions: "\xC5\xBD\xC3\xA1dn\xC3\xA9 aktivn\xC3\xAD \xC3\xBAkoly v tomto kontextu" - last_completed_in_context: "v tomto kontextu (posledn\xC3\xADch %{number})" - context_deleted: "Kontext byl odstran\xC4\x9Bn '%{name}'" - no_contexts_hidden: !binary | - xb3DoWRuw6kgc2tyeXTDqSBrb250ZXh0eQ== - - new_context_pre: "Nov\xC3\xBD kontext '" - status_hidden: "kontext je skryt\xC3\xBD" users: - successfully_deleted_user: "U\xC5\xBEivatel %{username} byl \xC3\xBAsp\xC4\x9B\xC5\xA1n\xC4\x9B smaz\xC3\xA1n" + openid_url_verified: "Identitn\xC3\xAD url %{url} bylo \xC3\xBAsp\xC4\x9B\xC5\xA1n\xC4\x9B ov\xC4\x9B\xC5\x99eno a nastavena autentizace pomoc\xC3\xAD OpenID." auth_type_update_error: "Nepoda\xC5\x99ilo se zm\xC4\x9Bnit typ autentizace: %{error_messages}" failed_to_delete_user: "Nepoda\xC5\x99ilo se smazat u\xC5\xBEivatele %{username}" destroy_successful: "U\xC5\xBEivatel %{login} byl \xC3\xBAsp\xC4\x9B\xC5\xA1n\xC4\x9B zni\xC4\x8Den" - total_contexts: "Kontext\xC5\xAF celkem" first_user_heading: "V\xC3\xADtejte v TRACKS. Nejd\xC5\x99\xC3\xADve je nutn\xC3\xA9 vytvo\xC5\x99it administr\xC3\xA1torsk\xC3\xBD \xC3\xBA\xC4\x8Det:" - openid_url_verified: "Identitn\xC3\xAD url %{url} bylo \xC3\xBAsp\xC4\x9B\xC5\xA1n\xC4\x9B ov\xC4\x9B\xC5\x99eno a nastavena autentizace pomoc\xC3\xAD OpenID." + total_contexts: "Kontext\xC5\xAF celkem" + successfully_deleted_user: "U\xC5\xBEivatel %{username} byl \xC3\xBAsp\xC4\x9B\xC5\xA1n\xC4\x9B smaz\xC3\xA1n" signup_successful: "Registrace u\xC5\xBEivatele %{username} byla \xC3\xBAsp\xC4\x9B\xC5\xA1n\xC3\xA1." new_token_generated: !binary | Tm92w70gcGXFoWVrIGJ5bCDDunNwxJvFoW7EmyB2eWdlbmVyb3bDoW4= @@ -1239,25 +1236,25 @@ cz: no_signups_title: "TRACKS::Registrace nen\xC3\xAD povolena" user_created: "U\xC5\xBEivatel byl vytvo\xC5\x99en." account_signup: "Registrace u\xC5\xBEivatele" - password_updated: "Heslo bylo zm\xC4\x9Bn\xC4\x9Bno." manage_users: !binary | U3Byw6F2YSB1xb5pdmF0ZWzFrw== - new_user_heading: "Registrace nov\xC3\xA9ho u\xC5\xBEivatele:" + password_updated: "Heslo bylo zm\xC4\x9Bn\xC4\x9Bno." auth_type_updated: "Typ autentizace byl zm\xC4\x9Bn\xC4\x9Bn." total_actions: "\xC3\x9Akol\xC5\xAF celkem" desired_login: "U\xC5\xBEivatelsk\xC3\xA9 jm\xC3\xA9no" signup: Registrace confirm_password: "Potvrzen\xC3\xAD hesla" - change_password_prompt: "Pro zm\xC4\x9Bnu hesla zadejte nov\xC3\xA9 hestlo do pol\xC3\xAD n\xC3\xAD\xC5\xBEe a stiskn\xC4\x9Bte 'Zm\xC4\x9Bna hesla'." + new_user_heading: "Registrace nov\xC3\xA9ho u\xC5\xBEivatele:" password_confirmation_label: "Potvrzen\xC3\xAD hesla" destroy_error: "Nepoda\xC5\x99ilo se smazat u\xC5\xBEivatele %{login}" choose_password: Zvolte heslo change_password_title: "TRACKS::Zm\xC4\x9Bna hesla" change_auth_type_title: "TRACKS::Zm\xC4\x9Bna z\xC5\xAFsobu autentizace" + change_password_prompt: "Pro zm\xC4\x9Bnu hesla zadejte nov\xC3\xA9 hestlo do pol\xC3\xAD n\xC3\xAD\xC5\xBEe a stiskn\xC4\x9Bte 'Zm\xC4\x9Bna hesla'." + new_password_label: "Nov\xC3\xA9 heslo" register_with_cas: "S va\xC5\xA1\xC3\xADm u\xC5\xBEivatelsk\xC3\xBDm jm\xC3\xA9nem z CASu" label_auth_type: "Zp\xC5\xAFsob autentizace" - new_password_label: "Nov\xC3\xA9 heslo" total_users_count: "M\xC3\xA1te celkem %{count} u\xC5\xBEivatel\xC5\xAF" new_user_title: "TRACKS::P\xC5\x99ihl\xC3\xA1\xC5\xA1en\xC3\xAD jako administr\xC3\xA1tor" destroy_user: "Zni\xC4\x8Dit u\xC5\xBEivatele" @@ -1272,15 +1269,45 @@ cz: change_authentication_type: !binary | Wm3Em25hIHpwxa9zb2J1IHDFmWlobGHFoW92w6Fuw60= - select_authentication_type: "Vyberte nov\xC3\xBD zp\xC5\xAFsob autentizace a stiskn\xC4\x9Bte 'Zm\xC4\x9Bnit zp\xC5\xAFsob p\xC5\x99ihla\xC5\xA1ov\xC3\xA1n\xC3\xAD'." total_notes: "Pozn\xC3\xA1mek celkem" + select_authentication_type: "Vyberte nov\xC3\xBD zp\xC5\xAFsob autentizace a stiskn\xC4\x9Bte 'Zm\xC4\x9Bnit zp\xC5\xAFsob p\xC5\x99ihla\xC5\xA1ov\xC3\xA1n\xC3\xAD'." + contexts: + delete_context_title: Smazat kontext + all_completed_tasks_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly v kontextu '%{context_name}'" + hide_form: "Schovat formul\xC3\xA1\xC5\x99" + show_form_title: "Nov\xC3\xBD kontext" + delete_context_confirmation: "Opravdu chcete smazat kontext '%{name}'? Dojde ke smaz\xC3\xA1n\xC3\xAD v\xC5\xA1ech (opakovan\xC3\xBDch) \xC3\xBAkol\xC5\xAF z dan\xC3\xA9ho kontextu!" + todos_append: "v t\xC3\xA9to souvislosti" + delete_context: Smazat kontext + edit_context: Upravit kontext + hide_form_title: "Schovat formul\xC3\xA1\xC5\x99" + hidden_contexts: Schovat kontexty + no_contexts_active: !binary | + xb3DoWRuw6kgYWt0aXZuw60ga29udGV4dHk= + + context_hide: "Schovat z \xC3\xBAvodn\xC3\xAD str\xC3\xA1nky?" + add_context: "Vytvo\xC5\x99it kontext" + show_form: "Nov\xC3\xBD kontext" + save_status_message: "Kontext ulo\xC5\xBEen" + visible_contexts: "Viditeln\xC3\xA9 kontexty" + update_status_message: "N\xC3\xA1zev kontextu byl zm\xC4\x9Bn\xC4\x9Bn" + context_name: "N\xC3\xA1ev kontextu" + status_active: "Kontext je aktivn\xC3\xAD" + completed_tasks_title: "TRACKS::Hotov\xC3\xA9 \xC3\xBAkoly v kontextu '%{context_name}'" + new_context_post: "' bude tak\xC3\xA9 vytvo\xC5\x99en. Opravdu?" + new_context_pre: "Nov\xC3\xBD kontext '" + no_actions: "\xC5\xBD\xC3\xA1dn\xC3\xA9 aktivn\xC3\xAD \xC3\xBAkoly v tomto kontextu" + last_completed_in_context: "v tomto kontextu (posledn\xC3\xADch %{number})" + context_deleted: "Kontext byl odstran\xC4\x9Bn '%{name}'" + no_contexts_hidden: !binary | + xb3DoWRuw6kgc2tyeXTDqSBrb250ZXh0eQ== + + status_hidden: "kontext je skryt\xC3\xBD" login: - login_cas: "p\xC5\x99ej\xC3\xADt na CAS" openid_identity_url_not_found: "Je n\xC3\xA1m l\xC3\xADto, neexistuje u\xC5\xBEivatel s touto identitou (%{identity_url})" user_no_expiry: "Neodhl\xC5\xA1ovat" sign_in: "P\xC5\x99ihl\xC3\xA1sit se" - please_login: "Pro pokra\xC4\x8Dov\xC3\xA1n\xC3\xAD se pros\xC3\xADm p\xC5\x99ihl\xC5\xA1te do Tracks" - cas_logged_in_greeting: "Zdrav\xC3\xAD\xC4\x8Dko, %{username}! Byl jste autorizov\xC3\xA1n." + login_cas: "p\xC5\x99ej\xC3\xADt na CAS" cas_no_user_found: "Nazdar, %{username}! Nem\xC3\xA1te \xC3\xBA\xC4\x8Det na Tracks." cas_login: !binary | UMWZaWhsw6HFoWVuw60gcMWZZXMgQ0FT @@ -1288,6 +1315,8 @@ cz: successful_with_session_info: !binary | UMWZaWhsw6HFoWVuw60gYnlsbyDDunNwxJvFoW7DqTo= + please_login: "Pro pokra\xC4\x8Dov\xC3\xA1n\xC3\xAD se pros\xC3\xADm p\xC5\x99ihl\xC5\xA1te do Tracks" + cas_logged_in_greeting: "Zdrav\xC3\xAD\xC4\x8Dko, %{username}! Byl jste autorizov\xC3\xA1n." cas_username_not_found: "Bohu\xC5\xBEel neexistuje u\xC5\xBEivatel v CASu se jm\xC3\xA9nem (%{username})" cas_create_account: "Pro vytvo\xC5\x99en\xC3\xAD \xC3\xBA\xC4\x8Dtu v CASu pros\xC3\xADm pokra\xC4\x8Dujte sem %{signup_link}" mobile_use_openid: !binary | @@ -1307,12 +1336,12 @@ cz: session_time_out: "Sezen\xC3\xAD vypr\xC5\xA1elo. Pros\xC3\xADm %{link}" session_will_expire: "sezen vypr\xC5\xA1\xC3\xAD za %{hours} hodin neaktivity." login_standard: "vra\xC5\xA5te se ke standardn\xC3\xADmu p\xC5\x99ihl\xC3\xA1\xC5\xA1en\xC3\xAD" - log_in_again: "p\xC5\x99ihla\xC5\xA1te se znovu." - logged_out: You have been logged out of Tracks. login_with_openid: "p\xC5\x99ihla\xC5\xA1te se se sv\xC3\xBDm OpenID" unsuccessful: !binary | UMWZaWhsw6HFoWVuw60gYnlsbyDDunNwxJvFoW7DqS4= + log_in_again: "p\xC5\x99ihla\xC5\xA1te se znovu." + logged_out: You have been logged out of Tracks. datetime: prompts: minute: Minuta @@ -1375,7 +1404,7 @@ cz: tags_matching_query: !binary | TmFsZXplbsOpIMWhdMOtdGt5 + no_results: "Na v\xC3\xA1\xC5\xA1 dotaz nebylo nic nalezeno." todos_matching_query: "Nalezen\xC3\xA9 \xC3\xBAkoly" projects_matching_query: "Nalezen\xC3\xA9 projekty" notes_matching_query: "Nalezen\xC3\xA9 pozn\xC3\xA1mky" - no_results: "Na v\xC3\xA1\xC5\xA1 dotaz nebylo nic nalezeno." diff --git a/config/locales/de.yml b/config/locales/de.yml index 112ddb61..39001004 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -1,5 +1,54 @@ --- de: + layouts: + toggle_contexts_title: Machen Sie brach Kontexten (un)sichtbare + toggle_contexts: Toggle zusammengebrochen Kontexten + toggle_notes: Notizen umschalten + next_actions_rss_feed: RSS-Feed kommende Aufgaben + toggle_notes_title: Alle Notizen umschalten + mobile_navigation: + new_action: Neue Aufgabe + logout: Abmelden + feeds: Feeds + starred: Markiert + projects: Projekte + tickler: Notizbuch + contexts: Kontexte + home: Home + navigation: + manage_users_title: "Benutzer hinzuf\xC3\xBCgen oder entfernen" + recurring_todos: Sich wiederholende To-Dos + api_docs: REST API Docs + help: "?" + feeds: Feeds + starred: Markiert + stats: Statistiken + notes_title: Alle Notizen anzeigen + manage_users: Benutzer verwalten + tickler_title: Notizbuch + admin: Admin + preferences: Einstellungen + integrations_: Tracks integrieren + export_title: Daten importieren und exportieren + calendar_title: "Kalender mit \xC3\xBCberf\xC3\xA4lligen Aufgaben" + feeds_title: "Liste der verf\xC3\xBCgbaren Feeds anzeigen" + stats_title: Statistiken anzeigen + tickler: Notizbuch + home_title: Start + starred_title: Markierte Aufgaben betrachten + recurring_todos_title: Sich wiederholende To-Dos verwalten + completed_tasks: Erledigt + view: Betrachten + organize: Organisieren + completed_tasks_title: "Vollst\xC3\xA4ndig" + home: Start + export: Export + contexts_title: Kontexte + preferences_title: Meine Einstellungen + search: "Alle Eintr\xC3\xA4ge durchsuchen" + review_title: "Machen Sie \xC3\xBCberpr\xC3\xBCfen" + projects_title: Projekte + calendar: Kalender number: format: separator: "," @@ -34,121 +83,83 @@ de: separator: . precision: delimiter: "," - layouts: - toggle_contexts_title: Machen Sie brach Kontexten (un)sichtbare - toggle_notes: Notizen umschalten - toggle_contexts: Toggle zusammengebrochen Kontexten - next_actions_rss_feed: RSS-Feed kommende Aufgaben - toggle_notes_title: Alle Notizen umschalten - mobile_navigation: - feeds: Feeds - new_action: Neue Aufgabe - logout: Abmelden - starred: Markiert - projects: Projekte - tickler: Notizbuch - contexts: Kontexte - home: Home - navigation: - manage_users_title: "Benutzer hinzuf\xC3\xBCgen oder entfernen" - api_docs: REST API Docs - recurring_todos: Sich wiederholende To-Dos - feeds: Feeds - help: "?" - stats: Statistiken - starred: Markiert - notes_title: Alle Notizen anzeigen - manage_users: Benutzer verwalten - tickler_title: Notizbuch - admin: Admin - integrations_: Tracks integrieren - export_title: Daten importieren und exportieren - preferences: Einstellungen - calendar_title: "Kalender mit \xC3\xBCberf\xC3\xA4lligen Aufgaben" - feeds_title: "Liste der verf\xC3\xBCgbaren Feeds anzeigen" - completed_tasks: Erledigt - stats_title: Statistiken anzeigen - tickler: Notizbuch - home_title: Start - starred_title: Markierte Aufgaben betrachten - recurring_todos_title: Sich wiederholende To-Dos verwalten - view: Betrachten - organize: Organisieren - completed_tasks_title: "Vollst\xC3\xA4ndig" - home: Start - contexts_title: Kontexte - export: Export - preferences_title: Meine Einstellungen - review_title: "Machen Sie \xC3\xBCberpr\xC3\xBCfen" - calendar: Kalender - search: "Alle Eintr\xC3\xA4ge durchsuchen" - projects_title: Projekte + common: + recurring_todos: Wiederholenden Aktionen + back: "Zur\xC3\xBCck" + actions: Aktionen + third: Dritte + add: "Hinzuf\xC3\xBCgen" + go_back: "Zur\xC3\xBCck" + previous: Vorherige + logout: Abmelden + second: Zweite + none: Keine + week: Woche + optional: optional + deferred: Aufgeschoben + cancel: Abbrechen + show_all: Alle einzeigen + month: Monat + actions_midsentence: + one: Aktion + other: Aktionen + zero: Aktionen + forum: Forum + server_error: Auf dem Server ist ein Fehler aufgetreten. + notes: Notizen + projects: Projekte + last: Letzte + review: !binary | + w5xiZXJwcsO8ZnVuZw== + + action: Aktion + days_midsentence: + one: Tag + other: Tagen + zero: Tagen + project: Projekt + contribute: Mitwirken + ok: Ok + website: Website + first: Erste + note: + one: 1 Notiz + other: "%{count} Notizen" + zero: keine Notizen + numbered_step: Schritt %{number} + sort: + by_task_count_title: Nach Anzahl der Aufgaben sortieren + by_task_count_title_confirm: Sollen diese Projekte wirklich nach Anzahl der Aufgaben sortiert werden? Die bisherige Sortier-Reihenfolge wird damit überschrieben. + alphabetically: Alphabetisch + sort: Sortieren + alphabetically_title: Projekte alphabetisch sortieren + alphabetically_confirm: Sollen diese Projekte wirklich alphabetisch sortiert werden? Die bisherige Sortier-Reihenfolge wird damit überschrieben. + by_task_count: Nach Anzahl der Aufgaben + create: Erstellen + todo: Aktione + months: Monate + description: Beschreibung + errors_with_fields: "Mit folgenden Feldern sind Probleme aufgetreten:" + drag_handle: Verschieben + next: "N\xC3\xA4chste" + fourth: Vierte + context: Kontext + contexts: Kontexte + bugs: Bugs + update: Aktualisieren + forth: Vierte + weeks: Woche + wiki: Wiki + email: E-Mail + search: Suchen + ajaxError: Fehler beim Empfangen vom Server + not_available_abbr: n/b integrations: opensearch_description: In Tracks suchen applescript_next_action_prompt: "Beschreibung der n\xC3\xA4chsten Aufgabe:" gmail_description: "Gadget, um Tracks als Gadget zu Googlemail hinzuzuf\xC3\xBCgen" applescript_success_after_id: erstellt applescript_success_before_id: "N\xC3\xA4chste neue Aufgabe mit ID" - common: - back: "Zur\xC3\xBCck" - recurring_todos: Wiederholenden Aktionen - actions: Aktionen - third: Dritte - add: "Hinzuf\xC3\xBCgen" - previous: Vorherige - go_back: "Zur\xC3\xBCck" - logout: Abmelden - second: Zweite - show_all: Alle einzeigen - optional: optional - week: Woche - none: Keine - cancel: Abbrechen - month: Monat - actions_midsentence: Aktionen - server_error: Auf dem Server ist ein Fehler aufgetreten. - forum: Forum - notes: Notizen - last: Letzte - projects: Projekte - action: Aktion - review: !binary | - w5xiZXJwcsO8ZnVuZw== - - project: Projekt - days_midsentence: Tagen - contribute: Mitwirken - ok: Ok - website: Website - first: Erste - numbered_step: Schritt %{number} - errors_with_fields: "Mit folgenden Feldern sind Probleme aufgetreten:" - create: Erstellen - sort: - by_task_count_title: Nach Anzahl der Aufgaben sortieren - by_task_count_title_confirm: Sollen diese Projekte wirklich nach Anzahl der Aufgaben sortiert werden? Die bisherige Sortier-Reihenfolge wird damit überschrieben. - alphabetically: Alphabetisch - alphabetically_title: Projekte alphabetisch sortieren - sort: Sortieren - alphabetically_confirm: Sollen diese Projekte wirklich alphabetisch sortiert werden? Die bisherige Sortier-Reihenfolge wird damit überschrieben. - by_task_count: Nach Anzahl der Aufgaben - months: Monate - description: Beschreibung - todo: Aktione - fourth: Vierte - next: "N\xC3\xA4chste" - contexts: Kontexte - context: Kontext - drag_handle: Verschieben - update: Aktualisieren - weeks: Woche - forth: Vierte - wiki: Wiki - bugs: Bugs - ajaxError: Fehler beim Empfangen vom Server - not_available_abbr: n/b - email: E-Mail - search: Suchen activerecord: attributes: project: @@ -160,17 +171,14 @@ de: created_at: Erstellt am updated_at: Aktualisiert am todo: - predecessors: "H\xC3\xA4ngt ab von" show_from: Zeigen ab dem + predecessors: "H\xC3\xA4ngt ab von" notes: Notizen - project: Projekt tags: Stichworte + project: Projekt description: Beschreibung context: Kontext due: Fällig - user: - last_name: Nachname - first_name: Vorname preference: show_hidden_projects_in_sidebar: Zeige Versteckte Projekte in der Sidebar show_hidden_contexts_in_sidebar: "Zeige Versteckte Zusammenh\xC3\xA4nge in der Sidebar" @@ -179,19 +187,22 @@ de: verbose_action_descriptors: "Ausf\xC3\xBChrlich Aktion Deskriptoren" staleness_starts: Anfang des Abgestandenheit mobile_todos_per_page: Aufgaben pro Seite (Mobile Version) - title_date_format: Titel Datumsformat show_number_completed: "Zeige Zahl der abgeschlossenen Ma\xC3\x9Fnahmen" + title_date_format: Titel Datumsformat refresh: Aktualisierungsintverall (in Minuten) week_starts: Woche startet am last_name: Nachname due_style: "F\xC3\xA4llig stijl" locale: Zahle time_zone: Zeit Zone - show_project_on_todo_done: Zur Projektseite wechseln, wenn To-Do abgeschlossen sms_email: Per E-Mail - first_name: Name + show_project_on_todo_done: Zur Projektseite wechseln, wenn To-Do abgeschlossen show_completed_projects_in_sidebar: Zeige abgeschlossene Projekte in der Sidebar + first_name: Name review_period: Projekt-Review-Intervall + user: + last_name: Nachname + first_name: Vorname errors: models: project: @@ -221,13 +232,13 @@ de: taken: ist bereits vergeben inclusion: "ist kein g\xC3\xBCltiger Wert" not_a_number: ist keine Zahl - full_messages: - format: "%{attribute} %{message}" template: body: "Bitte \xC3\xBCberpr\xC3\xBCfen Sie die folgenden Felder:" header: one: "Konnte dieses %{model} Objekt nicht speichern: 1 Fehler." other: "Konnte dieses %{model} Objekt nicht speichern: %{count} Fehler." + full_messages: + format: "%{attribute} %{message}" data: import_successful: Import war erfolgreich. import_errors: Beim Import sind Fehler aufgetreten. @@ -237,21 +248,21 @@ de: feed_description: "Listet alle Projekte f\xC3\xBCr %{username} auf" todo: error_date_must_be_future: muss ein Datum in der Zukunft sein - user: - error_context_not_associated: "Kontext-ID %{context} nicht mit Benutzer-ID %{user} verkn\xC3\xBCpft." - error_project_not_associated: "Projekt-ID %{project} nicht mit User-ID %{user} verkn\xC3\xBCpft." preference: due_on: "F\xC3\xA4llig auf %{date}" due_in: "F\xC3\xA4llig in %{days} Tagen" due_styles: - "F\xC3\xA4llig in ___ Tagen" - "F\xC3\xA4llig am _______" + user: + error_context_not_associated: "Kontext-ID %{context} nicht mit Benutzer-ID %{user} verkn\xC3\xBCpft." + error_project_not_associated: "Projekt-ID %{project} nicht mit User-ID %{user} verkn\xC3\xBCpft." stats: - tag_cloud_title: Tag-Cloud aller Aktionen totals_hidden_context_count: und %{count} sind versteckte Kontexte. actions_avg_created: In den letzten 12 Monaten hast du im Durchschnitt %{count} Aktionen erstellt actions_min_max_completion_days: "Das Minimum/Maximum an Tagen einer Vervollst\xC3\xA4ndigung ist %{min}/%{max}." totals_actions_completed: "%{count} davon sind abgeschlossen." + tag_cloud_title: Tag-Cloud aller Aktionen actions_actions_avg_created_30days: In den letzten 30 Tagen hast du im Durchschnitt %{count} Aktionen erstellt actions_avg_completed: und %{count} durchschnittlich davon monatlich erledigt top5_visible_contexts_with_incomplete_actions: "Top 5 der sichtbaren Kontexte mit unvollst\xC3\xA4ndigen Aktionen" @@ -267,11 +278,11 @@ de: weeks: "Vergangene Zeit einer Aktion (Wochen). Klick auf eine Leiste f\xC3\xBCr mehr Informationen." totals_action_count: hattest du insgesamt %{count} Aktionen tag_cloud_90days_title: Tag-Cloud-Aktionen in den letzten 90 Tagen + actions_avg_completion_time: Durchschnittlich hast du %{count} Tage gebraucht, um eine Aktion abzuschliessen. tod30: Tageszeit (letzte 30 Tage) tags: Tags projects: Projekte - actions_avg_completion_time: Durchschnittlich hast du %{count} Tage gebraucht, um eine Aktion abzuschliessen. - actions_lastyear_title: Aktionen der letzten 12 Monate + totals_completed_project_count: und %{count} sind abgeschlossene Projekte. labels: month_avg_completed: "%{months} Monat durchschnittlich fertig gestellt" completed: Erledigt @@ -280,8 +291,8 @@ de: avg_completed: Durchschnittlich fertiggestellt created: Erstellt actions_selected_from_week: "Aktionen ausgew\xC3\xA4hlt ab Woche" - totals_completed_project_count: und %{count} sind abgeschlossene Projekte. actions_day_of_week_title: Wochentag (alle Aktionen) + actions_lastyear_title: Aktionen der letzten 12 Monate open_per_week: "Aktiv (sichtbar und unsichtbar) n\xC3\xA4chsten Aktionen pro Woche" action_selection_title: TRACKS::Aktionsauswahl totals_project_count: Du hast %{count} Projekte. @@ -304,16 +315,16 @@ de: actions_last_year_legend: number_of_actions: Anzahl Aktionen months_ago: Monate zuvor - top10_projects: Top 10 aller Projekte top5_contexts: Top 5 aller Kontexte - click_to_return: "Klick auf %{link} um zur Statistikseite zur\xC3\xBCckzukehren." - totals: Ingesamt + top10_projects: Top 10 aller Projekte contexts: Kontexte + totals: Ingesamt + click_to_return: "Klick auf %{link} um zur Statistikseite zur\xC3\xBCckzukehren." tag_cloud_90days_description: Diese Tag-Cloud beinhaltet Tags der Aktionen, die in den letzten 90 Tagen erstellt oder abgeschlossen wurden. totals_visible_context_count: Von diesen sind %{count} sichtbare Kontexte - actions_min_completion_time: "Die minimale Zeit betr\xC3\xA4gt %{time}." top10_projects_30days: Top-10-Projekt der letzten 30 Tage running_time_all: "Aktuelle Laufzeit aller unvollst\xC3\xA4ndigen Aktionen." + actions_min_completion_time: "Die minimale Zeit betr\xC3\xA4gt %{time}." action_completion_time_title: Fertigstellungszeit (alle abgeschlossenen Aktionen) click_to_show_actions_from_week: Klick auf %{link} um die Aktionen von Woche %{week} und danach anzuzeigen. top10_longrunning: "Top 10 der am l\xC3\xA4ngsten laufenden Projekte" @@ -325,14 +336,14 @@ de: day_of_week: Tag der Woche totals_first_action: Seit deiner ersten Aktion am %{date} tag_cloud_description: Diese Tag-Cloud beinhaltet Tags aller Aktionen (abgeschlossen, nicht abgeschlossen, sichtbar und/oder unsichtbar) + spread_of_actions_for_all_context: Aufgabenverteilung aller Kontexte click_to_update_actions: Klicke auf eine Leiste in der Grafik um die Aktionen unten zu aktualisieren. click_to_return_link: hier - spread_of_actions_for_all_context: Aufgabenverteilung aller Kontexte more_stats_will_appear: "Weitere Statistiken werden verf\xC3\xBCgbar, wenn einige Aufgaben hinzugef\xC3\xBCgt wurden." actions_avg_completed_30days: und %{count} durchschnittlich davon erledigt. + index_title: TRACKS::Statistik actions_30days_title: _Aktionen der letzten 30 Tage no_tags_available: "keine Tags verf\xC3\xBCgbar" - index_title: TRACKS::Statistik actions_dow_30days_title: Wochentag (letzte 30 Tage) actions_day_of_week_legend: number_of_actions: Anzahl der Aktionen @@ -348,19 +359,19 @@ de: running_time: "Laufzeit einer Aktion (Wochen). Klick auf eine Leiste f\xC3\xBCr mehr Informationen." percentage: Prozentsatz other_actions_label: (andere) - time_of_day: Tageszeit (alle Aktionen) totals_hidden_project_count: "%{count} sind versteckt" + time_of_day: Tageszeit (alle Aktionen) todos: - completed_actions: Erledigte Aufgaben + recurring_action_deleted: Die Aktion wurde gelöscht. Da dies eine wiederkehrende Aktion ist, wurde eine neue erstellt. show_from: Anzeigen ab dem error_starring_recurring: Konnte die Hervorhebung der wiederkehrenden Aufgabe \'%{description}\' nicht durchführen - recurring_action_deleted: Die Aktion wurde gelöscht. Da dies eine wiederkehrende Aktion ist, wurde eine neue erstellt. - completed_rest_of_previous_month: Fertiggestellt den Rest des Vormonats - completed_recurring: Abgeschlossene wiederkehrende To-Dos + completed_actions: Erledigte Aufgaben added_new_next_action: Neue Aktion angelegt + completed_recurring: Abgeschlossene wiederkehrende To-Dos + completed_rest_of_previous_month: Fertiggestellt den Rest des Vormonats blocked_by: Blockiert durch %{predecessors} - completed_recurrence_completed: Es gibt keine weitere Aktion nach der soeben gelöschten. Die Wiederholung ist abgeschlossen. star_action: Aktion markieren + completed_recurrence_completed: Es gibt keine weitere Aktion nach der soeben gelöschten. Die Wiederholung ist abgeschlossen. defer_date_after_due_date: "Zur\xC3\xBCckstellungsdatum nach Ablaufdatum. Bitte passe das Ablaufdatum an, dass es vor dem Zur\xC3\xBCckstellungsdatum liegt." unable_to_add_dependency: Abhängigkeit nicht hinzufügbar done: Erledigt? @@ -371,16 +382,16 @@ de: no_hidden_actions: Momentan sind keine versteckten Aufgaben vorhanden edit_action_with_description: Aktion '%{description}' bearbeiten action_due_on: "(Aktion f\xC3\xA4llig am %{date})" + list_incomplete_next_actions: Unerledigte Folge-Aufgaben anzeigen archived_tasks_title: TRACKS::Archivierte erledigte Aufgaben remove_dependency: Abhängigkeit löschen (löscht nicht die Aufgabe) - list_incomplete_next_actions: Unerledigte Folge-Aufgaben anzeigen - tags: Tags (Komma-separiert) action_deleted_success: Die nächste Aktion erfolgreich gelöscht - mobile_todos_page_title: Alle Aufgaben - new_related_todo_created: "Eine neue To-Do wurde hinzugef\xC3\xBCgt, die zu dieser wiederkehrenden To-Do geh\xC3\xB6rt" - context_changed: Kontext zu %{name} gewechselt - add_another_dependency: "F\xC3\xBCgen Sie eine andere Abh\xC3\xA4ngigkeit" + tags: Tags (Komma-separiert) delete_recurring_action_title: "Wiederkehrende Aktion '%{description}' l\xC3\xB6schen" + context_changed: Kontext zu %{name} gewechselt + new_related_todo_created: "Eine neue To-Do wurde hinzugef\xC3\xBCgt, die zu dieser wiederkehrenden To-Do geh\xC3\xB6rt" + mobile_todos_page_title: Alle Aufgaben + add_another_dependency: "F\xC3\xBCgen Sie eine andere Abh\xC3\xA4ngigkeit" removed_predecessor: "%{successor} entfernt als Abh\xC3\xA4ngigkeit von %{predecessor}." recurring_actions_title: TRACKS::Wiederkehrende Aktionen next_action_needed: Es muss mindestens eine folgende Aktion angelegt werden @@ -390,40 +401,41 @@ de: edit_action: Aktion bearbeiten added_new_context: "Neuer Kontext hinzugef\xC3\xBCgt" next_actions_description: "Filter:" + list_incomplete_next_actions_with_limit: Zeige die letzten %{count} unerledigten Folge-Aufgaben + set_to_pending: "%{task} als ausstehend markiert" + added_new_project: "Neues Projekt hinzugef\xC3\xBCgt" next_actions_title_additions: completed: Aufgaben erledigt due_today: heute fällig due_within_a_week: diese Woche fällig - list_incomplete_next_actions_with_limit: Zeige die letzten %{count} unerledigten Folge-Aufgaben - set_to_pending: "%{task} als ausstehend markiert" - added_new_project: "Neues Projekt hinzugef\xC3\xBCgt" older_completed_items: "Ältere erledigte Aufgaben" - error_deleting_item: Beim Löschen von %{description} trat ein Fehler auf - edit_recurring_todo: Bearbeiten Repetieren aktion - append_in_this_project: in diesem Projekt - task_list_title: TRACKS::Aufgaben anzeigen no_actions_due_this_week: Keine zu erledigenden Aufgaben für den Rest der Woche + all_completed_here: hier + append_in_this_project: in diesem Projekt + edit_recurring_todo: Bearbeiten Repetieren aktion + error_deleting_item: Beim Löschen von %{description} trat ein Fehler auf + task_list_title: TRACKS::Aufgaben anzeigen no_recurring_todos: Im Augenblick gibt es keine wiederkehrenden To-Dos error_completing_todo: Beim Abschliessen/Aktivieren der wiederkehrenden To-Do %{description} ist ein Fehler aufgetreten recurring_pattern_removed: Das Wiederauftreten Muster ist aus entfernt %{count} convert_to_project: In Projekt umwandeln no_deferred_pending_actions: Momentan sind keine aufgeschobenen oder ausstehenden Aufgaben vorhanden. - completed_last_day: In den letzten 24 Stunden erledigt delete_recurring_action_confirm: Soll die wiederkehrende Aktion '%{description}' wirklich gelöscht werden? - show_in_days: Anzeigen in %{days} Tagen + completed_last_day: In den letzten 24 Stunden erledigt + feed_title_in_context: im Kontext '%{context}' no_project: --Kein Projekt-- + show_in_days: Anzeigen in %{days} Tagen error_saving_recurring: Es gab einen Fehler beim Speichern der wiederkehrenden todo '%{description}' completed_more_than_x_days_ago: Vor mehr als %{count} Tagen erledigt - all_completed: Alle abgeschlossenen Aktionen - feed_title_in_context: im Kontext '%{context}' new_related_todo_created_short: hat einen neuen todo + all_completed: Alle abgeschlossenen Aktionen edit: Bearbeiten + completed_actions_with: Abgeschlossene Aktionen mit dem Tag %{tag_name} older_than_days: "Älter als %{count} Tage" completed_tagged_page_title: "TRACKS:: Erledigte Aufgaben mit Tag %{tag_name}" pending: Ausstehend - completed_actions_with: Abgeschlossene Aktionen mit dem Tag %{tag_name} - deleted_success: "Die Aktion wurde erfolgreich gel\xC3\xB6scht." completed_tasks_title: TRACKS::Erledigte Aufgaben + deleted_success: "Die Aktion wurde erfolgreich gel\xC3\xB6scht." feed_title_in_project: im Projekt '%{project}' clear_due_date: Fälligkeitsdatum leeren error_removing_dependency: "Beim Entfernen der Abh\xC3\xA4ngigkeit ist ein Fehler aufgetreten" @@ -434,20 +446,21 @@ de: deferred_actions_with: "Zur\xC3\xBCckgestellte Aktionen mit dem Tag '%{tag_name}'" confirm_delete: "Bist du sicher, dass du die Aktion '%{description}' l\xC3\xB6schen m\xC3\xB6chtest?" recurring_deleted_success: "Die wiederkehrende Aktion wurde erfolgreich gel\xC3\xB6scht." - clear_show_from_date: Datum leeren + no_completed_actions_with: Keine abgeschlossenen Aktionen mit dem Tag '%{tag_name}' next_actions_title: TRACKS::Weitere Aufgaben next_action_description: "Beschreibung der n\xC3\xA4chsten Aktion" deferred_tasks_title: TRACKS::Notizbuch - no_completed_actions_with: Keine abgeschlossenen Aktionen mit dem Tag '%{tag_name}' - unresolved_dependency: "Der Wert, den Sie in die Abh\xC3\xA4ngigkeit Feld eingegeben nicht zu einer bestehenden Aktion zu l\xC3\xB6sen. Dieser Wert wird nicht mit dem Rest der Aktion gerettet werden. Weiter gehen?" - calendar_page_title: TRACKS::Kalender + clear_show_from_date: Datum leeren in_hidden_state: als versteckt markiert - show_today: Heute anzeigen + see_all_completed: "Sie k\xC3\xB6nnen alle Aktionen abgeschlossen siehe %{link}" + calendar_page_title: TRACKS::Kalender + unresolved_dependency: "Der Wert, den Sie in die Abh\xC3\xA4ngigkeit Feld eingegeben nicht zu einer bestehenden Aktion zu l\xC3\xB6sen. Dieser Wert wird nicht mit dem Rest der Aktion gerettet werden. Weiter gehen?" no_actions_found_title: Keine Aktionen gefunden + show_today: Heute anzeigen next_actions_due_date: overdue_by: "\xC3\x9Cberf\xC3\xA4llig mit %{days} Tag" - due_today: "Heute f\xC3\xA4llig" due_in_x_days: "F\xC3\xA4llig in %{days} Tagen" + due_today: "Heute f\xC3\xA4llig" overdue_by_plural: "\xC3\x9Cberf\xC3\xA4llig mit %{days} Tagen" due_tomorrow: "F\xC3\xA4llig morgen" completed_last_x_days: In den letzten %{count} Tagen erledigt @@ -464,13 +477,13 @@ de: feeds: completed: "Erledigt: %{date}" due: "F&auuml;llig: %{date}" - delete_action: "Aktion l\xC3\xB6schen" - error_deleting_recurring: "Beim L\xC3\xB6schen der wiederkehrenden To-Do %{description} ist ein Fehler aufgetreten" recurring_todos: Wiederkehrende To-Dos + error_deleting_recurring: "Beim L\xC3\xB6schen der wiederkehrenden To-Do %{description} ist ein Fehler aufgetreten" + delete_action: "Aktion l\xC3\xB6schen" delete: "L\xC3\xB6schen" + no_last_completed_actions: Keine abgeschlossene Aktionen gefunden drag_action_title: "Auf andere Aktion ziehen, um sie als Abh\xC3\xA4ngigkeit zu definieren" cannot_add_dependency_to_completed_todo: "Kann nicht hinzugef\xC3\xBCgt werden diese Aktion als eine Abh\xC3\xA4ngigkeit zu einer abgeschlossenen Aktion!" - no_last_completed_actions: Keine abgeschlossene Aktionen gefunden depends_on: "H\xC3\xA4ngt ab von" tickler_items_due: one: Ein Notizbuch-Eintrag ist nun fällig - lade die Seite neu, um sie zu sehen. @@ -480,6 +493,7 @@ de: added_new_next_action_plural: Neue weiterführende Aufgaben angelegt new_related_todo_not_created_short: nicht schaffen todo completed_rest_of_week: Fertiggestellt den Rest dieser Woche + show_tomorrow: Morgen anzeigen error_starring: Konnte die Hervorhebung von \'%{description}\' nicht durchführen calendar: get_in_ical_format: Diesen Kalender im iCal Format herunterladen @@ -492,9 +506,7 @@ de: no_actions_due_after_this_month: Nach diesem Monat sind keine Aufgaben fällig no_actions_due_this_month: Keine Aktionen für den Rest des Monats due_this_month: Im %{month} fällig - show_tomorrow: Morgen anzeigen - tagged_page_title: TRACKS::Als '%{tag_name}' markiert - action_deferred: Die Aktion \'% {description}\' wurde vertagt + no_completed_recurring: Im Augenblick gibt es keine abgeschlossenen wiederkehrenden To-Dos recurrence: ends_on_date: Endet am %{date} every_work_day: Jeden Arbeitstag @@ -503,11 +515,13 @@ de: weekly_options: "Einstellungen f\xC3\xBCr sich w\xC3\xB6chentlich wiederholende Aktionen" weekly: "W\xC3\xB6chentlich" monthly_options: "Einstellungen f\xC3\xBCr sich monatlich wiederholende Aktionen" + daily_options: "Einstellungen f\xC3\xBCr sich t\xC3\xA4glich wiederholenden Aktionen" monthly: Monatlich starts_on: Beginnt am - daily_options: "Einstellungen f\xC3\xBCr sich t\xC3\xA4glich wiederholenden Aktionen" daily: "T\xC3\xA4glich" + show_option_always: immer pattern: + third: Drittel month_names: - - Januar @@ -524,17 +538,20 @@ de: - Oktober - November - Dezember - third: Drittel every_n: jeden %{n} - every_xth_day_of_every_n_months: "jedes %{x} %{day} jedes %{n_months} \xE2\x80\x8B" second: zweite + every_xth_day_of_every_n_months: "jedes %{x} %{day} jedes %{n_months} \xE2\x80\x8B" on_day_n: am Tag %{n} weekly: "w\xC3\xB6chentlich" from: von - every_day: jeden Tag last: zuletzt - times: "f\xC3\xBCr %{number} Zeiten" + every_day: jeden Tag the_xth_day_of_month: der %{x} %{day} von %{month} + times: "f\xC3\xBCr %{number} Zeiten" + first: erste + show: Show + every_year_on: jedes Jahr in %{date} + on_work_days: an Wochentagen day_names: - Sonntag - Montag @@ -543,43 +560,40 @@ de: - Donnerstag - Freitag - Samstag - show: Show - first: erste - every_year_on: jedes Jahr in %{date} - on_work_days: an Wochentagen fourth: vierte due: "F\xC3\xA4llig" every_month: jeden Monat until: bis - show_option_always: immer yearly_every_x_day: "Jeden %{day}. %{month} " recurrence_on_options: Setze Wiederholung auf daily_every_number_day: Alle %{number} Tage - ends_on: Endet am show_options: To-Do anzeigen weekly_every_number_week: Kehrt jede %{number}. Woche wieder am + ends_on: Endet am show_days_before: "%{days} Tage bevor die To-Do f\xC3\xA4llig ist" - yearly_every_xth_day: Den %{day} %{day_of_week} des %{month} from_tickler: the date todo comes from tickler (no due date set) no_end_date: Kein Enddatum day_x_on_every_x_month: Tag %{day} in jedem %{month}. Monat + yearly_every_xth_day: Den %{day} %{day_of_week} des %{month} yearly_options: "Einstellungen f\xC3\xBCr sich j\xC3\xA4hrlich wiederholende Aktionen" yearly: "J\xC3\xA4hrlich" monthly_every_xth_day: Der %{day} %{day_of_week} eines jeden %{month}. Monats - no_completed_recurring: Im Augenblick gibt es keine abgeschlossenen wiederkehrenden To-Dos + action_deferred: Die Aktion \'% {description}\' wurde vertagt + tagged_page_title: TRACKS::Als '%{tag_name}' markiert added_dependency: "%{dependency} als Abhängigkeit hinzugefügt." - no_deferred_actions: Zur Zeit sind keine zurückgestellten Aktionen vorhanden. - all_completed_tagged_page_title: "TRACKS:: Alle erledigten Aufgaben mit Tag %{tag_name}" completed_rest_of_month: Fertiggestellt den Rest des Monats + all_completed_tagged_page_title: "TRACKS:: Alle erledigten Aufgaben mit Tag %{tag_name}" + no_deferred_actions: Zur Zeit sind keine zurückgestellten Aktionen vorhanden. recurrence_completed: Nach dieser wiederkehrenden Aktion, die du gerade abgeschlossen hast, folgt keine mehr. Die Wiederholung endet hiermit - error_toggle_complete: "K\xC3\xB6nnte nicht diese Marke todo komplett" - due: Fällig + action_marked_complete_error: Die Aktion '%{description}' wurde aufgrund eines Fehlers NICHT als %{completed} markiert. no_actions_found: "Momentan gibt es keine unvollst\xC3\xA4ndigen Aktionen." in_pending_state: und als ausstehend markiert - action_marked_complete_error: Die Aktion '%{description}' wurde aufgrund eines Fehlers NICHT als %{completed} markiert. - depends_on_separate_with_commas: Hängt ab von (Komma-separiert) + error_toggle_complete: "K\xC3\xB6nnte nicht diese Marke todo komplett" + due: Fällig + no_incomplete_actions: Es gibt keine unerledigten Aufgaben action_saved_to_tickler: Aktion im Notizbuch gespeichert recurring_action_saved: Wiederkehrende Aktion gespeichert + depends_on_separate_with_commas: Hängt ab von (Komma-separiert) completed_in_archive: one: Es befindet sich eine erledigte Aufgabe im Archiv. other: Es befinden sich %{count} erledigte Aufgaben im Archiv. @@ -589,94 +603,120 @@ de: due_date: mit einem Datum %{due_date} oder früher overdue: "Überfällig" add_new_recurring: "F\xC3\xBCge eine neue wiederkehrende Aktion hinzu" - no_incomplete_actions: Es gibt keine unerledigten Aufgaben notes: delete_note_title: Notiz '%{id}' löschen delete_confirmation: "Bist du sicher, dass du die Notiz '%{id}' l\xC3\xB6schen m\xC3\xB6chtest?" in_project: "In:" delete_item_title: Eintrag löschen + deleted_note: "Notiz '%{id}' l\xC3\xB6schen" note_link_title: Notiz %{id} anzeigen show_note_title: Notiz anzeigen - deleted_note: "Notiz '%{id}' l\xC3\xB6schen" edit_item_title: Eintrag bearbeiten note_location_link: "In:" no_notes_available: "Derzeit gibt es keine Notizen: f\xC3\xBCge Notizen von der jeweiligen Projektseite hinzu." note_header: Notiz %{id} delete_note_confirm: Soll die Notiz '%{id}' wirklich gelöscht werden? + projects: + default_context_set: Standard-Kontext des Projekts auf %{default_context} gesetzt + no_actions_in_project: "Momentan gibt es keine unvollst\xC3\xA4ndigen Aktionen in diesem Projekt" + deferred_actions: "Aufgeschobene Aufgaben f\xC3\xBCr dieses Projekt" + was_marked_hidden: wurde als verborgen markiert + edit_project_title: Projekt bearbeiten + default_tags_removed_notice: Standard-Tags entfernt + page_title: "TRACKS::Projekt: %{project}" + all_completed_tasks_title: "TRACKS:: Alle auflisten Abgeschlossene Aktionen in Project '%{project_name}'" + hide_form: Fomular verstecken + list_completed_projects: "TRACKS:: Liste Abgeschlossene Projekte" + no_notes_attached: "Im Augenblick sind keine Notizen mit diesem Projekt verkn\xC3\xBCpft." + to_new_project_page: Zu neuem Projekt weiterleiten + show_form_title: Neues Projekt anlegen + deferred_actions_empty: "Es gibt keine aufgeschobenen Aufgaben f\xC3\xBCr dieses Projekt" + project_state: Projekt ist %{state} + this_project: Dieses Projekt + no_last_completed_projects: Keine abgeschlossene Projekte gefunden + no_last_completed_recurring_todos: Keine abgeschlossene sich wiederholende To-Dos gefunden + notes: Notizen + todos_append: an dieses Projekt + list_reviews: "TRACKS::R\xC3\xBCckblick" + notes_empty: "Es gibt keine Notizen f\xC3\xBCr dieses Projekt" + no_projects: Keine Projekte vorhanden + hide_form_title: Formular verstecken + delete_project: Projekt löschen + completed_actions_empty: "Es gibt keine erledigten Aufgaben f\xC3\xBCr dieses Projekt" + with_no_default_context: hat keinen Standardwert Kontext + delete_project_confirmation: Soll das Projekt '%{name}' wirklich gelöscht werden? + with_default_context: mit einem Standard-Rahmen von '%{context_name}' + show_form: Projekt erstellen + actions_in_project_title: Die Aktionen in diesem Projekt + completed_projects: Abgeschlossene Projekte + is_active: ist aktiv + add_note: "Notiz hinzuf\xC3\xBCgen" + set_default_tags_notice: Standard-Tags des Projekts auf %{default_tags} setzen + add_project: Projekt hinzufügen + settings: Einstellungen + project_saved_status: Projekt gespeichert + list_projects: TRACKS::Projektliste + with_default_tags: und mit '%{tags}' als Standard-Tags + completed_tasks_title: "TRACKS:: Liste Abgeschlossene Aktionen in Project '%{project_name}'" + hidden_projects: Versteckte Projekte + delete_project_title: Projekt löschen + default_context_removed: Standard-Kontext entfernt + add_note_submit: "Notiz hinzuf\xC3\xBCgen" + completed_actions: "Erledigte Aufgaben f\xC3\xBCr dieses Projekt" + was_marked_complete: wurde als erledigt markiert + no_default_context: Dieses Projekt hat keinen Standard-Kontext + with_no_default_tags: und hat keinen Standardwert Tags + edit_project_settings: Edit Project Settings + default_context: Der Standard-Kontext dieses Projektes ist %{context} + status_project_name_changed: "Projektname ge\xC3\xA4ndert" + state: Dieses Projekt ist %{state} + active_projects: Aktive Projekte states: hidden_plural: Versteckte - review_plural: Datiert stalled: Stalled + review_plural: Datiert completed: Erledigt current: Auf dem neusten Stand - completed_plural: Erledigte review: Datiert + completed_plural: Erledigte blocked: Verstopft blocked_plural: Verstopft stalled_plural: Stalled visible_plural: Sichtbare active_plural: Aktive visible: Sichtbar - current_plural: Auf dem neusten Stand hidden: Versteckt active: Aktiv - projects: - was_marked_hidden: wurde als verborgen markiert - edit_project_title: Projekt bearbeiten - default_tags_removed_notice: Standard-Tags entfernt - default_context_set: Standard-Kontext des Projekts auf %{default_context} gesetzt - no_actions_in_project: "Momentan gibt es keine unvollst\xC3\xA4ndigen Aktionen in diesem Projekt" - deferred_actions: "Aufgeschobene Aufgaben f\xC3\xBCr dieses Projekt" - all_completed_tasks_title: "TRACKS:: Alle auflisten Abgeschlossene Aktionen in Project '%{project_name}'" - page_title: "TRACKS::Projekt: %{project}" - hide_form: Fomular verstecken - no_notes_attached: "Im Augenblick sind keine Notizen mit diesem Projekt verkn\xC3\xBCpft." - show_form_title: Neues Projekt anlegen - deferred_actions_empty: "Es gibt keine aufgeschobenen Aufgaben f\xC3\xBCr dieses Projekt" - this_project: Dieses Projekt - project_state: Projekt ist %{state} - list_completed_projects: "TRACKS:: Liste Abgeschlossene Projekte" - to_new_project_page: Zu neuem Projekt weiterleiten - no_last_completed_recurring_todos: Keine abgeschlossene sich wiederholende To-Dos gefunden - todos_append: an dieses Projekt - no_last_completed_projects: Keine abgeschlossene Projekte gefunden - notes: Notizen - notes_empty: "Es gibt keine Notizen f\xC3\xBCr dieses Projekt" - no_projects: Keine Projekte vorhanden - hide_form_title: Formular verstecken - list_reviews: "TRACKS::R\xC3\xBCckblick" - delete_project: Projekt löschen - completed_actions_empty: "Es gibt keine erledigten Aufgaben f\xC3\xBCr dieses Projekt" - with_no_default_context: hat keinen Standardwert Kontext - show_form: Projekt erstellen - actions_in_project_title: Die Aktionen in diesem Projekt - delete_project_confirmation: Soll das Projekt '%{name}' wirklich gelöscht werden? - with_default_context: mit einem Standard-Rahmen von '%{context_name}' - add_note: "Notiz hinzuf\xC3\xBCgen" - add_project: Projekt hinzufügen - with_default_tags: und mit '%{tags}' als Standard-Tags - is_active: ist aktiv - list_projects: TRACKS::Projektliste - settings: Einstellungen - completed_projects: Abgeschlossene Projekte - set_default_tags_notice: Standard-Tags des Projekts auf %{default_tags} setzen - project_saved_status: Projekt gespeichert - delete_project_title: Projekt löschen - hidden_projects: Versteckte Projekte - completed_tasks_title: "TRACKS:: Liste Abgeschlossene Aktionen in Project '%{project_name}'" - was_marked_complete: wurde als erledigt markiert - completed_actions: "Erledigte Aufgaben f\xC3\xBCr dieses Projekt" - default_context_removed: Standard-Kontext entfernt - add_note_submit: "Notiz hinzuf\xC3\xBCgen" - edit_project_settings: Edit Project Settings - status_project_name_changed: "Projektname ge\xC3\xA4ndert" - active_projects: Aktive Projekte - default_context: Der Standard-Kontext dieses Projektes ist %{context} - state: Dieses Projekt ist %{state} - no_default_context: Dieses Projekt hat keinen Standard-Kontext - with_no_default_tags: und hat keinen Standardwert Tags + current_plural: Auf dem neusten Stand errors: user_unauthorized: "401 Unauthorized: Nur administrative Benutzer d\xC3\xBCrfen auf diese Funktion zugreifen." + preferences: + open_id_url: "Deine OpenID-URL lautet:" + change_identity_url: "\xC3\x84ndere deine Identit\xC3\xA4ts-URL" + staleness_starts_after: Abgestandenheit startet nach %{days} Tagen + page_title: TRACKS::Einstellungen + change_password: "Passwort \xC3\xA4ndern" + token_description: "Token (f\xC3\xBCr die Verwendung in Feeds und der API)" + title: Deine Einstellungen + is_false: Nein + show_number_completed: "Zeige %{number} erledigte Eintr\xC3\xA4ge" + password_changed: "Ihr Passwort ge\xC3\xA4ndert wurde, melden Sie sich bitte wieder an." + edit_preferences: Einstellungen bearbeiten + page_title_edit: "TRACKS::Einstellungen \xC3\xA4ndern" + is_true: Ja + sms_context_none: Keine + generate_new_token: Neues Token generieren + token_header: Dein Token + authentication_header: Deine Authentifizierung + updated: Einstellungen aktualisiert + current_authentication_type: Dein Authentifizierungsart ist %{auth_type} + change_authentication_type: "Authentifzierungsart \xC3\xA4ndern" + generate_new_token_confirm: "Bist du sicher? Wenn du ein neues Token generierst, wird dies das alte Token ersetzen und jegliche externe Nutzung st\xC3\xB6ren, die das alte Token verwendet." + tabs: + authentication: Authentication + tracks_behavior: Tracks Verhalten + profile: Profil + date_and_time: Datum und Uhrzeit time: am: vormittags formats: @@ -687,33 +727,6 @@ de: month_day: "%d. %B" long: "%A, %d. %B %Y, %H:%M Uhr" pm: nachmittags - preferences: - change_identity_url: "\xC3\x84ndere deine Identit\xC3\xA4ts-URL" - open_id_url: "Deine OpenID-URL lautet:" - staleness_starts_after: Abgestandenheit startet nach %{days} Tagen - page_title: TRACKS::Einstellungen - change_password: "Passwort \xC3\xA4ndern" - token_description: "Token (f\xC3\xBCr die Verwendung in Feeds und der API)" - title: Deine Einstellungen - is_false: Nein - show_number_completed: "Zeige %{number} erledigte Eintr\xC3\xA4ge" - edit_preferences: Einstellungen bearbeiten - page_title_edit: "TRACKS::Einstellungen \xC3\xA4ndern" - is_true: Ja - password_changed: "Ihr Passwort ge\xC3\xA4ndert wurde, melden Sie sich bitte wieder an." - sms_context_none: Keine - generate_new_token: Neues Token generieren - token_header: Dein Token - authentication_header: Deine Authentifizierung - updated: Einstellungen aktualisiert - current_authentication_type: Dein Authentifizierungsart ist %{auth_type} - change_authentication_type: "Authentifzierungsart \xC3\xA4ndern" - generate_new_token_confirm: "Bist du sicher? Wenn du ein neues Token generierst, wird dies das alte Token ersetzen und jegliche externe Nutzung st\xC3\xB6ren, die das alte Token verwendet." - tabs: - tracks_behavior: Tracks Verhalten - authentication: Authentication - profile: Profil - date_and_time: Datum und Uhrzeit date: month_names: - @@ -804,8 +817,8 @@ de: send_feedback: Senden Sie Feedback zu %{version} shared: multiple_next_actions: Mehrere neue Aufgaben (eine pro Zeile) - toggle_single: Weitere Aktion erstellen make_actions_dependent: "Machen Sie Aktionen voneinander abh\xC3\xA4ngig" + toggle_single: Weitere Aktion erstellen hide_form: Formular verstecken add_actions: "Aufgaben hinzuf\xC3\xBCgen" add_action: "Aufgabe hinzuf\xC3\xBCgen" @@ -818,6 +831,30 @@ de: add_context: "F\xC3\xBCgen Kontext" toggle_multi_title: "Zwischen Einzel- und Mehrfachformular f\xC3\xBCr neue Aufgaben umschalten" hide_action_form_title: "Formular f\xC3\xBCr neue Aufgaben verstecken" + feedlist: + choose_context: "Kontext f\xC3\xBCr den Feed w\xC3\xA4hlen" + actions_due_today: "Heute oder fr\xC3\xBCher f\xC3\xA4llig" + ical_feed: iCal-Feed + legend: "Legende:" + all_contexts: Alle Kontexte + rss_feed: RSS-Feed + choose_project: "Projekt f\xC3\xBCr den Feed w\xC3\xA4hlen" + all_projects: Alle Projekte + project_needed: Es muss mindestens ein Projekt existieren, bevor ein Feed abonniert werden kann. + select_feed_for_project: "Feed f\xC3\xBCr dieses Projekt ausw\xC3\xA4hlen" + active_projects_wo_next: Aktive Projekte ohne ausstehende Aufgaben + active_starred_actions: Alle markierten, aktiven Aufgaben + context_needed: Es muss mindestens ein Kontext existieren, bevor ein Feed abonniert werden kann. + select_feed_for_context: "Feed f\xC3\xBCr diesen Kontext ausw\xC3\xA4hlen" + projects_and_actions: Aktive Projekte und deren Aufgaben + notice_incomplete_only: "Hinweis: Alle Feeds zeigen nur Aufgaben, die noch nicht als erledigt markiert wurden." + actions_due_next_week: "In den n\xC3\xA4chsten 7 Tagen oder fr\xC3\xBCher f\xC3\xA4llige Aufgaben" + actions_completed_last_week: In den letzten 7 Tagen abgeschlossene Aufgaben + context_centric_actions: "Feeds f\xC3\xBCr unvollst\xC3\xA4ndige Aufgaben in einem bestimmten Kontext" + plain_text_feed: Plain-Text-Feed + last_fixed_number: Die letzten %{number} Aufgaben + all_actions: Alle Aufgaben + project_centric: "Feeds f\xC3\xBCr unvollst\xC3\xA4ndige Aufgaben in einem bestimmten Kontext" sidebar: list_name_active_contexts: Aktive Kontexte list_name_active_projects: Aktive Projekte @@ -825,30 +862,50 @@ de: list_name_completed_projects: Abgeschlossene Projekte list_name_hidden_projects: Versteckte Projekte list_name_hidden_contexts: Versteckte Kontexte - feedlist: - actions_due_today: "Heute oder fr\xC3\xBCher f\xC3\xA4llig" - choose_context: "Kontext f\xC3\xBCr den Feed w\xC3\xA4hlen" - rss_feed: RSS-Feed - legend: "Legende:" - ical_feed: iCal-Feed - all_contexts: Alle Kontexte - all_projects: Alle Projekte - choose_project: "Projekt f\xC3\xBCr den Feed w\xC3\xA4hlen" - project_needed: Es muss mindestens ein Projekt existieren, bevor ein Feed abonniert werden kann. - select_feed_for_project: "Feed f\xC3\xBCr dieses Projekt ausw\xC3\xA4hlen" - active_projects_wo_next: Aktive Projekte ohne ausstehende Aufgaben - active_starred_actions: Alle markierten, aktiven Aufgaben - select_feed_for_context: "Feed f\xC3\xBCr diesen Kontext ausw\xC3\xA4hlen" - projects_and_actions: Aktive Projekte und deren Aufgaben - context_needed: Es muss mindestens ein Kontext existieren, bevor ein Feed abonniert werden kann. - actions_due_next_week: "In den n\xC3\xA4chsten 7 Tagen oder fr\xC3\xBCher f\xC3\xA4llige Aufgaben" - notice_incomplete_only: "Hinweis: Alle Feeds zeigen nur Aufgaben, die noch nicht als erledigt markiert wurden." - context_centric_actions: "Feeds f\xC3\xBCr unvollst\xC3\xA4ndige Aufgaben in einem bestimmten Kontext" - plain_text_feed: Plain-Text-Feed - last_fixed_number: Die letzten %{number} Aufgaben - all_actions: Alle Aufgaben - actions_completed_last_week: In den letzten 7 Tagen abgeschlossene Aufgaben - project_centric: "Feeds f\xC3\xBCr unvollst\xC3\xA4ndige Aufgaben in einem bestimmten Kontext" + users: + openid_url_verified: Die URL %{url} wurde erfolgreich als Identität verifiziert und Deine Authentifizierung auf OpenID umgestellt. + auth_type_update_error: "Beim Ändern der Authentifizierung trat ein Fehler auf: %{error_messages}" + failed_to_delete_user: Löschen des Benutzers %{username} fehlgeschlagen + destroy_successful: "Benutzer %{login} wurde erfolgreich gel\xC3\xB6scht" + first_user_heading: "Willkommen bei TRACKS. Als erstes legen Sie bitte einen Administrator-Zugang an:" + total_contexts: Alle Kontexte + successfully_deleted_user: Benutzer %{username} erfolgreich gelöscht. + signup_successful: Benutzer %{username} erfolgreich angelegt. + new_token_generated: Neuer Token erfolgreich generiert + total_projects: Alle Projekte + change_password_submit: "Passwort \xC3\xA4ndern" + no_signups_title: TRACKS::Anmeldung nicht erlaubt + user_created: Benutzer angelegt. + account_signup: Accounteinrichtung + manage_users: Benutzer verwalten + password_updated: Passwort aktualisiert. + auth_type_updated: Authentifizierungs-Art erfolgreich geändert. + total_actions: Alle Aufgaben + desired_login: "Gew\xC3\xBCnschter Benutzername" + signup: Registrieren + confirm_password: "Passwort best\xC3\xA4tigen" + new_user_heading: "Einen neuen Benutzer anlegen:" + password_confirmation_label: "Passwort best\xC3\xA4tigen" + destroy_error: "Beim L\xC3\xB6schen des Benutzers %{login} ist ein Fehler aufgetreten." + choose_password: "Passwort w\xC3\xA4hlen" + change_password_title: TRACKS::Passwort ändern + change_auth_type_title: TRACKS::Authentifizierungstyp ändern + change_password_prompt: "Gib dein neues Passwort in die unten stehenden Felder ein und klicke auf 'Passwort \xC3\xA4ndern' um dein altes Passwort durch das neue zu ersetzen." + new_password_label: Neues Passwort + register_with_cas: Mit deinem CAS-Benutzernamen + label_auth_type: Authentifizierungsart + total_users_count: Derzeit existieren %{count} Benutzer + new_user_title: TRACKS::Als Administrator anmelden + destroy_user: "Benutzer l\xC3\xB6schen" + destroy_confirmation: "Achtung: der Benutzer '%{login}' wird mit all seinen Aufgaben, Kontexten, Projekten und Notizen gel\xC3\xB6scht. Bist du sicher, dass du fortfahren m\xC3\xB6chtest?" + you_have_to_reset_your_password: "Sie haben Ihr Passwort zur\xC3\xBCcksetzen" + signup_new_user: Neuen Benutzer anlegen + identity_url: Identity-URL + openid_ok_pref_failed: Die URL %{url} wurde erfolgreich als Identität verifiziert, beim Speichern der Einstellungen trat jedoch ein Fehler auf. + auth_change_submit: "Authentifizierungsart \xC3\xA4ndern" + change_authentication_type: "Authentifizierungsart \xC3\xA4ndern" + total_notes: Alle Notizen + select_authentication_type: "W\xC3\xA4hle deine neue Authentifizierungsart und klicke 'Authentifizierungsart \xC3\xA4ndern' an, um deine aktuellen Einstellungen zu \xC3\xBCberschreiben." contexts: delete_context_title: Kontext löschen all_completed_tasks_title: "TRACKS:: Alle Abgeschlossene Ma\xC3\x9Fnahmen im context '%{context_name}'" @@ -862,75 +919,31 @@ de: hidden_contexts: Versteckte Kontexte no_contexts_active: Derzeit gibt es keine aktiven Kontexte context_hide: Auf Startseite ausblenden? - show_form: Neuen Kontext erstellen - visible_contexts: Sichtbare Kontexte - save_status_message: Kontext gespeichert add_context: "Kontext hinzuf\xC3\xBCgen" + show_form: Neuen Kontext erstellen + save_status_message: Kontext gespeichert + visible_contexts: Sichtbare Kontexte update_status_message: "Kontextname wurde ge\xC3\xA4ndert" context_name: Kontextname status_active: Kontext ist aktiv completed_tasks_title: "TRACKS:: Abgeschlossene Ma\xC3\x9Fnahmen im context '%{context_name}'" new_context_post: "' wird ebenfalls angelegt. Fortfahren?" + new_context_pre: Der neue Kontext ' no_actions: "Momentan gibt es keine unvollst\xC3\xA4ndigen Aufgaben in diesem Kontext" last_completed_in_context: in diesem Kontext (letzte %{number}) context_deleted: "Gel\xC3\xB6schter Kontext '%{name}'" no_contexts_hidden: Derzeit gibt es keine versteckten Kontexte - new_context_pre: Der neue Kontext ' status_hidden: Kontext ist versteckt - users: - successfully_deleted_user: Benutzer %{username} erfolgreich gelöscht. - auth_type_update_error: "Beim Ändern der Authentifizierung trat ein Fehler auf: %{error_messages}" - failed_to_delete_user: Löschen des Benutzers %{username} fehlgeschlagen - destroy_successful: "Benutzer %{login} wurde erfolgreich gel\xC3\xB6scht" - total_contexts: Alle Kontexte - first_user_heading: "Willkommen bei TRACKS. Als erstes legen Sie bitte einen Administrator-Zugang an:" - openid_url_verified: Die URL %{url} wurde erfolgreich als Identität verifiziert und Deine Authentifizierung auf OpenID umgestellt. - signup_successful: Benutzer %{username} erfolgreich angelegt. - new_token_generated: Neuer Token erfolgreich generiert - total_projects: Alle Projekte - change_password_submit: "Passwort \xC3\xA4ndern" - no_signups_title: TRACKS::Anmeldung nicht erlaubt - user_created: Benutzer angelegt. - account_signup: Accounteinrichtung - password_updated: Passwort aktualisiert. - manage_users: Benutzer verwalten - new_user_heading: "Einen neuen Benutzer anlegen:" - auth_type_updated: Authentifizierungs-Art erfolgreich geändert. - total_actions: Alle Aufgaben - desired_login: "Gew\xC3\xBCnschter Benutzername" - signup: Registrieren - confirm_password: "Passwort best\xC3\xA4tigen" - change_password_prompt: "Gib dein neues Passwort in die unten stehenden Felder ein und klicke auf 'Passwort \xC3\xA4ndern' um dein altes Passwort durch das neue zu ersetzen." - password_confirmation_label: "Passwort best\xC3\xA4tigen" - destroy_error: "Beim L\xC3\xB6schen des Benutzers %{login} ist ein Fehler aufgetreten." - choose_password: "Passwort w\xC3\xA4hlen" - change_password_title: TRACKS::Passwort ändern - change_auth_type_title: TRACKS::Authentifizierungstyp ändern - register_with_cas: Mit deinem CAS-Benutzernamen - label_auth_type: Authentifizierungsart - new_password_label: Neues Passwort - total_users_count: Derzeit existieren %{count} Benutzer - new_user_title: TRACKS::Als Administrator anmelden - destroy_user: "Benutzer l\xC3\xB6schen" - destroy_confirmation: "Achtung: der Benutzer '%{login}' wird mit all seinen Aufgaben, Kontexten, Projekten und Notizen gel\xC3\xB6scht. Bist du sicher, dass du fortfahren m\xC3\xB6chtest?" - you_have_to_reset_your_password: "Sie haben Ihr Passwort zur\xC3\xBCcksetzen" - signup_new_user: Neuen Benutzer anlegen - identity_url: Identity-URL - openid_ok_pref_failed: Die URL %{url} wurde erfolgreich als Identität verifiziert, beim Speichern der Einstellungen trat jedoch ein Fehler auf. - auth_change_submit: "Authentifizierungsart \xC3\xA4ndern" - change_authentication_type: "Authentifizierungsart \xC3\xA4ndern" - select_authentication_type: "W\xC3\xA4hle deine neue Authentifizierungsart und klicke 'Authentifizierungsart \xC3\xA4ndern' an, um deine aktuellen Einstellungen zu \xC3\xBCberschreiben." - total_notes: Alle Notizen login: - login_cas: zum CAS gehen openid_identity_url_not_found: "Sorry, aber es existiert kein Benutzer mit der Identit\xC3\xA4ts-URL (%{identity_url})" user_no_expiry: Angemeldet bleiben sign_in: Anmeldung - please_login: Bitte melde dich an, um Tracks zu nutzen - cas_logged_in_greeting: Hallo, %{username}! Du bist authentifiziert. + login_cas: zum CAS gehen cas_no_user_found: Hallo, %{username}! Du hast leider keinen Tracks-Account. cas_login: CAS-Anmeldung successful_with_session_info: "Anmeldung erfolgreich:" + please_login: Bitte melde dich an, um Tracks zu nutzen + cas_logged_in_greeting: Hallo, %{username}! Du bist authentifiziert. cas_username_not_found: Sorry, aber es existiert kein Benutzer mit dem CAS-Benutzernamen (%{username}) cas_create_account: "Wenn du die Anfrage fortsetzen m\xC3\xB6chtest, klicke bitte hier: %{signup_link}" mobile_use_openid: "\xE2\x80\xA6oder mit einer OpenID anmelden" @@ -942,10 +955,10 @@ de: session_time_out: Sitzung abgelaufen. Bitte %{link} session_will_expire: "Sitzung wird nach %{hours} Stunde(n) der Inaktivit\xC3\xA4t ablaufen." login_standard: "zur\xC3\xBCck zum Standard-Login" - log_in_again: Erneut anmelden. - logged_out: Sie wurden von Tracks abgemeldet. login_with_openid: Mit einer OpenID anmelden unsuccessful: Anmeldung war nicht erfolgreich. + log_in_again: Erneut anmelden. + logged_out: Sie wurden von Tracks abgemeldet. datetime: prompts: minute: Minuten @@ -994,7 +1007,7 @@ de: search: contexts_matching_query: Kontexte entsprechen der Suche tags_matching_query: Tags entsprechen der Suche + no_results: Die Suche ergab kein Ergebnis. todos_matching_query: Todos entsprechen der Suche projects_matching_query: Projekte entsprechen der Suche notes_matching_query: Notizen entsprechen der Suche - no_results: Die Suche ergab kein Ergebnis. diff --git a/config/locales/en.yml b/config/locales/en.yml index af97c69e..429368a5 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -92,7 +92,10 @@ en: third: Third recurring_todos: Repeating Actions actions: Actions - actions_midsentence: actions + actions_midsentence: + zero: actions + one: action + other: actions add: Add previous: Previous show_all: Show all @@ -132,6 +135,10 @@ en: errors_with_fields: "There were problems with the following fields:" next: Next todo: todo + note: + zero: no notes + one: 1 note + other: %{count} notes context: Context drag_handle: DRAG description: Description @@ -143,7 +150,11 @@ en: email: Email search: Search ajaxError: There was an error retrieving from server - days_midsentence: days + days_midsentence: + zero: days + one: day + other: days + deferred: deferred not_available_abbr: "n/a" data: import_successful: Import was successful. @@ -584,6 +595,8 @@ en: add_new_recurring: Add a new recurring action edit_recurring_todo: Edit repeating action no_incomplete_actions: There are no incomplete actions + see_all_completed: You can see all completed actions %{link} + all_completed_here: here notes: delete_confirmation: Are you sure that you want to delete the note '%{id}'? delete_item_title: Delete item diff --git a/config/locales/es.yml b/config/locales/es.yml index c3baef2c..bf1ea096 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -1,5 +1,54 @@ --- es: + layouts: + toggle_contexts_title: "Haga contextos se derrumb\xC3\xB3 (in)visible" + toggle_contexts: "Cambiar los contextos se derrumb\xC3\xB3" + toggle_notes: Activar/Desactivar notas + next_actions_rss_feed: RSS feed of next actions + toggle_notes_title: Activar/Desactivar todas las notas + mobile_navigation: + new_action: Nueva tarea + logout: "Cerrar sesi\xC3\xB3n" + feeds: Feeds + starred: avoritos + projects: Proyectos + tickler: Tickler + contexts: Contextos + home: Inicio + navigation: + manage_users_title: "A\xC3\xB1adir o eliminar usuarios" + recurring_todos: Tareas repetitivas + api_docs: REST API Docs + help: "?" + feeds: Feeds + starred: Estrellas + stats: "Estad\xC3\xADsticas" + notes_title: Mostrar todas las notas + manage_users: Administrar usuarios + tickler_title: Tickler + admin: Admin + preferences: Preferencias + integrations_: Integrar Tracks + export_title: Import and export data + calendar_title: Calendario de las acciones por + feeds_title: See a list of available feeds + stats_title: See your statistics + tickler: Tickler + home_title: Inicio + starred_title: See your starred actions + recurring_todos_title: Manage recurring actions + completed_tasks: Hecho + view: Ver + organize: Organizar + completed_tasks_title: Completed + home: Inicio + export: Export + contexts_title: Contexts + preferences_title: Mostrar mis preferencias + search: Search All Items + review_title: "Posibilidad de una revisi\xC3\xB3n" + projects_title: Proyectos + calendar: Calendario number: format: separator: . @@ -23,66 +72,11 @@ es: separator: . delimiter: "," - layouts: - toggle_contexts_title: "Haga contextos se derrumb\xC3\xB3 (in)visible" - toggle_notes: Activar/Desactivar notas - toggle_contexts: "Cambiar los contextos se derrumb\xC3\xB3" - next_actions_rss_feed: RSS feed of next actions - toggle_notes_title: Activar/Desactivar todas las notas - mobile_navigation: - feeds: Feeds - new_action: Nueva tarea - logout: "Cerrar sesi\xC3\xB3n" - starred: avoritos - projects: Proyectos - tickler: Tickler - contexts: Contextos - home: Inicio - navigation: - manage_users_title: "A\xC3\xB1adir o eliminar usuarios" - api_docs: REST API Docs - recurring_todos: Tareas repetitivas - feeds: Feeds - help: "?" - stats: "Estad\xC3\xADsticas" - starred: Estrellas - notes_title: Mostrar todas las notas - manage_users: Administrar usuarios - tickler_title: Tickler - admin: Admin - integrations_: Integrar Tracks - export_title: Import and export data - preferences: Preferencias - calendar_title: Calendario de las acciones por - feeds_title: See a list of available feeds - completed_tasks: Hecho - stats_title: See your statistics - tickler: Tickler - home_title: Inicio - starred_title: See your starred actions - recurring_todos_title: Manage recurring actions - view: Ver - organize: Organizar - completed_tasks_title: Completed - home: Inicio - contexts_title: Contexts - export: Export - preferences_title: Mostrar mis preferencias - review_title: "Posibilidad de una revisi\xC3\xB3n" - calendar: Calendario - search: Search All Items - projects_title: Proyectos - integrations: - opensearch_description: Buscar en las Tracks - applescript_next_action_prompt: "Descripci\xC3\xB3n de la pr\xC3\xB3xima tarea:" - gmail_description: "Gadget para a\xC3\xB1adir pistas a Gmail como un gadget" - applescript_success_after_id: creado - applescript_success_before_id: "Nueva acci\xC3\xB3n junto con la identificaci\xC3\xB3n" common: + recurring_todos: "Repetici\xC3\xB3n de acciones" back: !binary | QXRyw6Fz - recurring_todos: "Repetici\xC3\xB3n de acciones" actions: Tareas third: Tercero add: "A\xC3\xB1adir" @@ -90,56 +84,77 @@ es: go_back: "Volver atr\xC3\xA1s" logout: Salir second: Segundo - show_all: Mostrar todo optional: opcional week: semana none: Ninguno + deferred: pospuestas + show_all: Mostrar todo cancel: Cancelar month: mes - actions_midsentence: acciones + actions_midsentence: + one: tarea + other: tareas + zero: tareas + notes: Notas server_error: Ha ocurrido un error en el servidor. forum: Foro - notes: Notas - last: "\xC3\x9Altimo" projects: Proyectos - action: Tarea + last: "\xC3\x9Altimo" review: "Revisi\xC3\xB3n" - project: Proyecto - days_midsentence: !binary | - ZMOtYQ== + action: Tarea + days_midsentence: + one: !binary | + ZMOtYQ== + other: !binary | + ZMOtYXM= + + zero: !binary | + ZMOtYXM= + + project: Proyecto contribute: Contribuir ok: Ok website: Website first: Primero + note: + one: 1 nota + other: "%{count} notas" + zero: 0 notas numbered_step: Paso %{number} - errors_with_fields: "Ha habido problemas con los siguientes campos:" sort: by_task_count_title: "Ordenar por n\xC3\xBAmero de tareas" by_task_count_title_confirm: "\xC2\xBFEst\xC3\xA1 seguro que desea ordenar los proyectos por el n\xC3\xBAmero de tareas? Esto reemplazar\xC3\xA1 el orden existente." alphabetically: "Alfab\xC3\xA9ticamente" - alphabetically_title: "Proyectos de ordenar alfab\xC3\xA9ticamente" sort: Ordenar + alphabetically_title: "Proyectos de ordenar alfab\xC3\xA9ticamente" alphabetically_confirm: "\xC2\xBFEst\xC3\xA1 seguro que desea ordenar los proyectos por orden alfab\xC3\xA9tico? Esto reemplazar\xC3\xA1 el orden existente." by_task_count: "Por n\xC3\xBAmero de tareas" create: Crear - months: meses - description: "Descripci\xC3\xB3n" todo: Todo + months: meses + errors_with_fields: "Ha habido problemas con los siguientes campos:" + description: "Descripci\xC3\xB3n" fourth: Cuarto next: "Pr\xC3\xB3ximo" + drag_handle: ARRASTRAR contexts: Contextos context: Contexto - drag_handle: ARRASTRAR + bugs: Errores update: Actualizar weeks: semanas forth: Siguiente wiki: Wiki - bugs: Errores - ajaxError: Hubo un error al recuperar desde el servidor - not_available_abbr: n/e email: Email + ajaxError: Hubo un error al recuperar desde el servidor search: Buscar + not_available_abbr: n/e + integrations: + opensearch_description: Buscar en las Tracks + applescript_next_action_prompt: "Descripci\xC3\xB3n de la pr\xC3\xB3xima tarea:" + gmail_description: "Gadget para a\xC3\xB1adir pistas a Gmail como un gadget" + applescript_success_after_id: creado + applescript_success_before_id: "Nueva acci\xC3\xB3n junto con la identificaci\xC3\xB3n" activerecord: attributes: project: @@ -151,17 +166,14 @@ es: created_at: Creado el updated_at: actualizado a las todo: - predecessors: Depende de la show_from: Mostrar + predecessors: Depende de la notes: Notas - project: Proyecto tags: Etiquetas + project: Proyecto description: "Descripci\xC3\xB3n" context: Contexto due: "Fecha l\xC3\xADmite" - user: - last_name: Apellido - first_name: Primer nombre preference: show_hidden_projects_in_sidebar: Mostrar proyectos ocultos en el lateral show_hidden_contexts_in_sidebar: Mostrar los contextos ocultos en el lateral @@ -170,19 +182,22 @@ es: verbose_action_descriptors: "Descriptores detallado de acci\xC3\xB3n" staleness_starts: Comienzo de estancamiento mobile_todos_per_page: "Tareas por p\xC3\xA1gina (Vista M\xC3\xB3vil)" - title_date_format: "T\xC3\xADtulo del formato de fecha" show_number_completed: "Mostrar n\xC3\xBAmero de tareas completadas" + title_date_format: "T\xC3\xADtulo del formato de fecha" refresh: "Intervalo de actualizaci\xC3\xB3n (en minutos)" week_starts: La semana comienza last_name: Apellido due_style: Debido al estilo locale: Lugar time_zone: Zona horaria - show_project_on_todo_done: "Ir a la p\xC3\xA1gina del proyecto al completar la tarea" sms_email: Email origen - first_name: Nombre + show_project_on_todo_done: "Ir a la p\xC3\xA1gina del proyecto al completar la tarea" show_completed_projects_in_sidebar: Show completed projects in sidebar + first_name: Nombre review_period: "Intervalo de revisi\xC3\xB3n del proyecto" + user: + last_name: Apellido + first_name: Primer nombre errors: models: project: @@ -228,21 +243,21 @@ es: feed_description: Lists all the projects for %{username} todo: error_date_must_be_future: must be a date in the future - user: - error_context_not_associated: Context id %{context} not associated with user id %{user}. - error_project_not_associated: Project id %{project} not associated with user id %{user}. preference: due_on: Due on %{date} due_in: Due in %{days} days due_styles: - Due in ___ days - Due on _______ + user: + error_context_not_associated: Context id %{context} not associated with user id %{user}. + error_project_not_associated: Project id %{project} not associated with user id %{user}. stats: - tag_cloud_title: Tag cloud for all actions + actions_min_max_completion_days: The Max-/minimum days to complete is %{min}/%{max}. totals_hidden_context_count: and %{count} are hidden contexts. actions_avg_created: In the last 12 months you created on average %{count} actions - actions_min_max_completion_days: The Max-/minimum days to complete is %{min}/%{max}. totals_actions_completed: "%{count} of these are completed." + tag_cloud_title: Tag cloud for all actions actions_actions_avg_created_30days: In the last 30 days you created on average %{count} actions actions_avg_completed: and completed an average of %{count} actions per month. top5_visible_contexts_with_incomplete_actions: Top 5 visible contexts with incomplete actions @@ -258,11 +273,11 @@ es: weeks: Running time of an action (weeks). Click on a bar for more info totals_action_count: you have a total of %{count} actions tag_cloud_90days_title: Tag cloud actions in past 90 days + actions_avg_completion_time: Of all your completed actions, the average time to complete is %{count} days. tod30: Time of day (last 30 days) tags: Tags projects: Projects - actions_avg_completion_time: Of all your completed actions, the average time to complete is %{count} days. - actions_lastyear_title: Actions in the last 12 months + totals_completed_project_count: and %{count} are completed projects. labels: month_avg_completed: "%{months} Month avg completed" completed: Completed @@ -271,8 +286,8 @@ es: avg_completed: Avg completed created: Created actions_selected_from_week: "Actions selected from week " - totals_completed_project_count: and %{count} are completed projects. actions_day_of_week_title: Day of week (all actions) + actions_lastyear_title: Actions in the last 12 months open_per_week: "Pr\xC3\xB3ximas acciones activas (visibles y ocultas) a la semana" action_selection_title: TRACKS::Action selection totals_project_count: You have %{count} projects. @@ -295,16 +310,16 @@ es: actions_last_year_legend: number_of_actions: Number of actions months_ago: Months ago - top10_projects: Top 10 projects top5_contexts: Top 5 contexts - click_to_return: Click %{link} to return to the statistics page. - totals: Totals + top10_projects: Top 10 projects contexts: Contexts + totals: Totals + click_to_return: Click %{link} to return to the statistics page. tag_cloud_90days_description: This tag cloud includes tags of actions that were created or completed in the past 90 days. totals_visible_context_count: Of those %{count} are visible contexts - actions_min_completion_time: The minimum time to complete is %{time}. top10_projects_30days: Top 10 project in past 30 days running_time_all: Current running time of all incomplete actions + actions_min_completion_time: The minimum time to complete is %{time}. action_completion_time_title: Completion time (all completed actions) click_to_show_actions_from_week: Click %{link} to show the actions from week %{week} and further. top10_longrunning: Top 10 longest running projects @@ -316,9 +331,9 @@ es: day_of_week: "D\xC3\xADa de la semana" totals_first_action: Since your first action on %{date} tag_cloud_description: This tag cloud includes tags of all actions (completed, not completed, visible and/or hidden) + spread_of_actions_for_all_context: Spread of actions for all context click_to_update_actions: Click on a bar in the chart to update the actions below. click_to_return_link: here - spread_of_actions_for_all_context: Spread of actions for all context more_stats_will_appear: More statistics will appear here once you have added some actions. actions_avg_completed_30days: and completed an average of %{count} actions per day. actions_30days_title: Actions in the last 30 days @@ -339,19 +354,19 @@ es: running_time: Running time of an action (weeks). Click on a bar for more info percentage: Percentage other_actions_label: (otros) - time_of_day: Time of day (all actions) totals_hidden_project_count: "%{count} are hidden" + time_of_day: Time of day (all actions) todos: - completed_actions: Completed actions + recurring_action_deleted: Action was deleted. Because this action is recurring, a new action was added show_from: Show from error_starring_recurring: Could not toggle the star of recurring todo \'%{description}\' - recurring_action_deleted: Action was deleted. Because this action is recurring, a new action was added - completed_rest_of_previous_month: Completado en el resto del mes anterior - completed_recurring: Completed recurring todos + completed_actions: Completed actions added_new_next_action: Added new next action + completed_recurring: Completed recurring todos + completed_rest_of_previous_month: Completado en el resto del mes anterior blocked_by: Blocked by %{predecessors} - completed_recurrence_completed: There is no next action after the recurring action you just deleted. The recurrence is completed star_action: Star this action + completed_recurrence_completed: There is no next action after the recurring action you just deleted. The recurrence is completed defer_date_after_due_date: Defer date is after due date. Please edit and adjust due date before deferring. unable_to_add_dependency: Unable to add dependency done: Done? @@ -362,16 +377,16 @@ es: no_hidden_actions: Currently there are no hidden actions found edit_action_with_description: Edit the action '%{description}' action_due_on: (action due on %{date}) + list_incomplete_next_actions: Lista las siguientes tareas incompletas archived_tasks_title: TRACKS::Archived completed tasks remove_dependency: Remove dependency (does not delete the action) - list_incomplete_next_actions: Lista las siguientes tareas incompletas - tags: Tags (separate with commas) action_deleted_success: Successfully deleted next action - mobile_todos_page_title: Todas las tareas - new_related_todo_created: "Una nueva tarea fue a\xC3\xB1adida y que pertenece a esta tarea recurrente" - context_changed: Context changed to %{name} - add_another_dependency: Add another dependency + tags: Tags (separate with commas) delete_recurring_action_title: Delete the recurring action + context_changed: Context changed to %{name} + new_related_todo_created: "Una nueva tarea fue a\xC3\xB1adida y que pertenece a esta tarea recurrente" + mobile_todos_page_title: Todas las tareas + add_another_dependency: Add another dependency removed_predecessor: Removed %{successor} as dependency from %{predecessor}. recurring_actions_title: TRACKS::Recurring Actions next_action_needed: You need to submit at least one next action @@ -381,40 +396,43 @@ es: edit_action: Edit action added_new_context: Added new context next_actions_description: "Filter:" + list_incomplete_next_actions_with_limit: Lists the last %{count} incomplete next actions + set_to_pending: "%{task} set to pending" + added_new_project: Added new project next_actions_title_additions: completed: actions completed due_today: due today due_within_a_week: due within a week - list_incomplete_next_actions_with_limit: Lists the last %{count} incomplete next actions - set_to_pending: "%{task} set to pending" - added_new_project: Added new project older_completed_items: Older completed items - error_deleting_item: There was an error deleting the item %{description} - edit_recurring_todo: "Editar la acci\xC3\xB3n de repetici\xC3\xB3n" - append_in_this_project: in this project - task_list_title: TRACKS::List tasks no_actions_due_this_week: No actions due in rest of this week + all_completed_here: !binary | + YXF1w60= + + append_in_this_project: in this project + edit_recurring_todo: "Editar la acci\xC3\xB3n de repetici\xC3\xB3n" + error_deleting_item: There was an error deleting the item %{description} + task_list_title: TRACKS::List tasks no_recurring_todos: Currently there are no recurring todos error_completing_todo: There was an error completing / activating the recurring todo %{description} recurring_pattern_removed: "El patr\xC3\xB3n de repetici\xC3\xB3n se retira de %{count}" convert_to_project: Make project no_deferred_pending_actions: Currently there are no deferred or pending actions - completed_last_day: Completed in the last 24 hours delete_recurring_action_confirm: Are you sure that you want to delete the recurring action '%{description}'? - show_in_days: Show in %{days} days + completed_last_day: Completed in the last 24 hours + feed_title_in_context: in context '%{context}' no_project: --No project-- + show_in_days: Show in %{days} days error_saving_recurring: There was an error saving the recurring todo \'%{description}\' completed_more_than_x_days_ago: Completed more than %{count} days ago - all_completed: Todas las acciones realizadas - feed_title_in_context: in context '%{context}' new_related_todo_created_short: creada una nueva tarea + all_completed: Todas las acciones realizadas edit: Edit + completed_actions_with: Completed actions with the tag %{tag_name} older_than_days: Older than %{count} days completed_tagged_page_title: "TRACKS:: Las tareas completadas con etiqueta %{tag_name}" pending: Pending - completed_actions_with: Completed actions with the tag %{tag_name} - deleted_success: The action was deleted succesfully. completed_tasks_title: TRACKS::Completed tasks + deleted_success: The action was deleted succesfully. feed_title_in_project: in project '%{project}' clear_due_date: Clear due date error_removing_dependency: There was an error removing the dependency @@ -425,20 +443,21 @@ es: deferred_actions_with: Deferred actions with the tag '%{tag_name}' confirm_delete: Are you sure that you want to delete the action '%{description}'? recurring_deleted_success: The recurring action was deleted succesfully. - clear_show_from_date: Clear show from date + no_completed_actions_with: No completed actions with the tag '%{tag_name}' next_actions_title: Tracks - Next Actions next_action_description: "Descripci\xC3\xB3n de la nueva tarea" deferred_tasks_title: TRACKS::Tickler - no_completed_actions_with: No completed actions with the tag '%{tag_name}' - unresolved_dependency: The value you entered in the dependency field did not resolve to an existing action. This value will not be saved with the rest of the action. Continue? - calendar_page_title: TRACKS::Calendar + clear_show_from_date: Clear show from date in_hidden_state: en estado oculto - show_today: Show Today + see_all_completed: Usted puede ver todas las acciones realizadas %{link} + calendar_page_title: TRACKS::Calendar + unresolved_dependency: The value you entered in the dependency field did not resolve to an existing action. This value will not be saved with the rest of the action. Continue? no_actions_found_title: No actions found + show_today: Show Today next_actions_due_date: overdue_by: Overdue by %{days} day - due_today: Vence hoy due_in_x_days: "Vence en %{days} d\xC3\xADas" + due_today: Vence hoy overdue_by_plural: Overdue by %{days} days due_tomorrow: "Vence ma\xC3\xB1ana" completed_last_x_days: Completed in last %{count} days @@ -455,13 +474,13 @@ es: feeds: completed: "Completed: %{date}" due: "Due: %{date}" - delete_action: Delete action - error_deleting_recurring: There was an error deleting the recurring todo \'%{description}\' recurring_todos: Recurring todos + error_deleting_recurring: There was an error deleting the recurring todo \'%{description}\' + delete_action: Delete action delete: Delete + no_last_completed_actions: "No encontr\xC3\xB3 las acciones realizadas" drag_action_title: Drag onto another action to make it depend on that action cannot_add_dependency_to_completed_todo: Cannot add this action as a dependency to a completed action! - no_last_completed_actions: "No encontr\xC3\xB3 las acciones realizadas" depends_on: Depends on tickler_items_due: one: One tickler item is now due - refresh the page to see it. @@ -471,6 +490,7 @@ es: added_new_next_action_plural: Added new next actions new_related_todo_not_created_short: "no se cre\xC3\xB3 la tarea" completed_rest_of_week: Completado en el resto de esta semana + show_tomorrow: Show Tomorrow error_starring: Could not toggle the star of this todo \'%{description}\' calendar: get_in_ical_format: Get this calendar in iCal format @@ -483,9 +503,7 @@ es: no_actions_due_after_this_month: No actions due after this month no_actions_due_this_month: No actions due in rest of this month due_this_month: Due in rest of %{month} - show_tomorrow: Show Tomorrow - tagged_page_title: TRACKS::Tagged with '%{tag_name}' - action_deferred: "La acci\xC3\xB3n \\'%{description}\\' se aplaz\xC3\xB3" + no_completed_recurring: Currently there are no completed recurring todos recurrence: ends_on_date: Ends on %{date} every_work_day: Every work day @@ -494,11 +512,13 @@ es: weekly_options: Settings for weekly recurring actions weekly: Weekly monthly_options: Settings for monthly recurring actions + daily_options: Settings for daily recurring actions monthly: Monthly starts_on: Starts on - daily_options: Settings for daily recurring actions daily: Daily + show_option_always: always pattern: + third: third month_names: - - January @@ -513,17 +533,20 @@ es: - October - November - December - third: third every_n: every %{n} - every_xth_day_of_every_n_months: every %{x} %{day} of every %{n_months} second: second + every_xth_day_of_every_n_months: every %{x} %{day} of every %{n_months} on_day_n: on day %{n} weekly: weekly from: from - every_day: every day last: last - times: for %{number} times + every_day: every day the_xth_day_of_month: the %{x} %{day} of %{month} + times: for %{number} times + first: first + show: show + every_year_on: every year on %{date} + on_work_days: on work days day_names: - sunday - monday @@ -532,43 +555,40 @@ es: - thursday - friday - saturday - show: show - first: first - every_year_on: every year on %{date} - on_work_days: on work days fourth: fourth due: due every_month: every month until: until - show_option_always: always yearly_every_x_day: Every %{month} %{day} recurrence_on_options: Set recurrence on daily_every_number_day: Every %{number} day(s) - ends_on: Ends on show_options: Show the todo weekly_every_number_week: Returns every %{number} week on + ends_on: Ends on show_days_before: "%{days} days before the todo is due" - yearly_every_xth_day: The %{day} %{day_of_week} of %{month} from_tickler: the date todo comes from tickler (no due date set) no_end_date: No end date day_x_on_every_x_month: Day %{day} on every %{month} month + yearly_every_xth_day: The %{day} %{day_of_week} of %{month} yearly_options: Settings for yearly recurring actions yearly: Yearly monthly_every_xth_day: The %{day} %{day_of_week} of every %{month} month - no_completed_recurring: Currently there are no completed recurring todos + action_deferred: "La acci\xC3\xB3n \\'%{description}\\' se aplaz\xC3\xB3" + tagged_page_title: TRACKS::Tagged with '%{tag_name}' added_dependency: Added %{dependency} as dependency. - no_deferred_actions: Currently there are no deferred actions. - all_completed_tagged_page_title: "TRACKS:: Todas las tareas realizadas con etiqueta %{tag_name}" completed_rest_of_month: Completado en el resto de este mes + all_completed_tagged_page_title: "TRACKS:: Todas las tareas realizadas con etiqueta %{tag_name}" + no_deferred_actions: Currently there are no deferred actions. recurrence_completed: There is no next action after the recurring action you just finished. The recurrence is completed - error_toggle_complete: Could not mark this todo complete - due: "Fecha l\xC3\xADmite" + action_marked_complete_error: The action '%{description}' was NOT marked as %{completed} due to an error on the server. no_actions_found: Currently there are no incomplete actions. in_pending_state: en estado pendiente - action_marked_complete_error: The action '%{description}' was NOT marked as %{completed} due to an error on the server. - depends_on_separate_with_commas: Depende de (separar con comas) + error_toggle_complete: Could not mark this todo complete + due: "Fecha l\xC3\xADmite" + no_incomplete_actions: There are no incomplete actions action_saved_to_tickler: Action saved to tickler recurring_action_saved: Recurring action saved + depends_on_separate_with_commas: Depende de (separar con comas) completed_in_archive: one: There is one completed action in the archive. other: There are %{count} completed actions in the archive. @@ -578,94 +598,120 @@ es: due_date: with a due date %{due_date} or earlier overdue: Overdue add_new_recurring: Add a new recurring action - no_incomplete_actions: There are no incomplete actions notes: delete_note_title: Delete the note '%{id}' delete_confirmation: Are you sure that you want to delete the note '%{id}'? in_project: "En:" delete_item_title: Delete item + deleted_note: Deleted note '%{id}' note_link_title: Show note %{id} show_note_title: Show note - deleted_note: Deleted note '%{id}' edit_item_title: Edit item note_location_link: "In:" no_notes_available: "Currently there are no notes: add notes to projects from individual project pages." note_header: Note %{id} delete_note_confirm: Are you sure that you want to delete the note '%{id}'? + projects: + default_context_set: Set project's default context to %{default_context} + no_actions_in_project: Currently there are no incomplete actions in this project + deferred_actions: Tareas pospuestas para este proyecto + was_marked_hidden: has been marked as hidden + edit_project_title: Editar proyecto + default_tags_removed_notice: Removed the default tags + page_title: "TRACKS::Project: %{project}" + all_completed_tasks_title: "TRACKS:: Lista de todas las acciones terminado en '%{project_name}' Proyecto" + hide_form: Esconder formulario + list_completed_projects: "TRACKS:: Lista de Proyectos Realizados" + no_notes_attached: Currently there are no notes attached to this project + to_new_project_page: Take me to the new project page + show_form_title: Create a new project + deferred_actions_empty: There are no deferred actions for this project + project_state: Project is %{state}. + this_project: This project + no_last_completed_projects: No hay proyectos terminados encontrado + no_last_completed_recurring_todos: No se ha completado las acciones repetitivas que se encuentran + notes: Notes + todos_append: in this project + list_reviews: "TRACKS::Revisi\xC3\xB3n" + notes_empty: There are no notes for this project + no_projects: Currently there are no projects + hide_form_title: Hide new project form + delete_project: Delete project + completed_actions_empty: No hay tareas completadas para este proyecto + with_no_default_context: with no default context + delete_project_confirmation: Are you sure that you want to delete the project '%{name}'? + with_default_context: with a default context of '%{context_name}' + show_form: Add a project + actions_in_project_title: Actions in this project + completed_projects: Proyectos completados + is_active: "est\xC3\xA1 activo" + add_note: "A\xC3\xB1adir una nota" + set_default_tags_notice: Set project's default tags to %{default_tags} + add_project: "A\xC3\xB1adir Proyecto" + settings: Settings + project_saved_status: Project saved + list_projects: TRACKS::Lista de Proyectos + with_default_tags: and with '%{tags}' as the default tags + completed_tasks_title: "TRACKS:: Lista de Acciones completadas en '%{project_name}' Proyecto" + hidden_projects: Proyectos ocultos + delete_project_title: Delete the project + default_context_removed: Eliminado el contexto por defecto + add_note_submit: "A\xC3\xB1adir nota" + completed_actions: Tareas completadas para este proyecto + was_marked_complete: has been marked as completed + no_default_context: Este proyecto no tiene un contexto por defecto + with_no_default_tags: and with no default tags + default_context: The default context for this project is %{context} + edit_project_settings: Edit Project Settings + status_project_name_changed: Name of project was changed + state: This project is %{state} + active_projects: Active projects states: hidden_plural: Hidden - review_plural: Fechado stalled: Estancado + review_plural: Fechado completed: Completed current: "Hasta al d\xC3\xADa" - completed_plural: Completed review: Fechado + completed_plural: Completed blocked: Bloqueado blocked_plural: Bloqueado stalled_plural: Estancado visible_plural: Visible active_plural: Active visible: Visible - current_plural: "Hasta al d\xC3\xADa" hidden: Hidden active: Active - projects: - was_marked_hidden: has been marked as hidden - edit_project_title: Editar proyecto - default_tags_removed_notice: Removed the default tags - default_context_set: Set project's default context to %{default_context} - no_actions_in_project: Currently there are no incomplete actions in this project - deferred_actions: Tareas pospuestas para este proyecto - all_completed_tasks_title: "TRACKS:: Lista de todas las acciones terminado en '%{project_name}' Proyecto" - page_title: "TRACKS::Project: %{project}" - hide_form: Esconder formulario - no_notes_attached: Currently there are no notes attached to this project - show_form_title: Create a new project - deferred_actions_empty: There are no deferred actions for this project - this_project: This project - project_state: Project is %{state}. - list_completed_projects: "TRACKS:: Lista de Proyectos Realizados" - to_new_project_page: Take me to the new project page - no_last_completed_recurring_todos: No se ha completado las acciones repetitivas que se encuentran - todos_append: in this project - no_last_completed_projects: No hay proyectos terminados encontrado - notes: Notes - notes_empty: There are no notes for this project - no_projects: Currently there are no projects - hide_form_title: Hide new project form - list_reviews: "TRACKS::Revisi\xC3\xB3n" - delete_project: Delete project - completed_actions_empty: No hay tareas completadas para este proyecto - with_no_default_context: with no default context - show_form: Add a project - actions_in_project_title: Actions in this project - delete_project_confirmation: Are you sure that you want to delete the project '%{name}'? - with_default_context: with a default context of '%{context_name}' - add_note: "A\xC3\xB1adir una nota" - add_project: "A\xC3\xB1adir Proyecto" - with_default_tags: and with '%{tags}' as the default tags - is_active: "est\xC3\xA1 activo" - list_projects: TRACKS::Lista de Proyectos - settings: Settings - completed_projects: Proyectos completados - set_default_tags_notice: Set project's default tags to %{default_tags} - project_saved_status: Project saved - delete_project_title: Delete the project - hidden_projects: Proyectos ocultos - completed_tasks_title: "TRACKS:: Lista de Acciones completadas en '%{project_name}' Proyecto" - was_marked_complete: has been marked as completed - completed_actions: Tareas completadas para este proyecto - default_context_removed: Eliminado el contexto por defecto - add_note_submit: "A\xC3\xB1adir nota" - edit_project_settings: Edit Project Settings - status_project_name_changed: Name of project was changed - active_projects: Active projects - default_context: The default context for this project is %{context} - state: This project is %{state} - no_default_context: Este proyecto no tiene un contexto por defecto - with_no_default_tags: and with no default tags + current_plural: "Hasta al d\xC3\xADa" errors: user_unauthorized: "401 No autorizado: Solo los usuarios administrativos pueden acceder a esta funci\xC3\xB3n." + preferences: + open_id_url: Your OpenID URL is + change_identity_url: Change Your Identity URL + staleness_starts_after: Staleness starts after %{days} days + page_title: TRACKS::Preferences + change_password: Change your password + token_description: Token (for feeds and API use) + title: Your preferences + is_false: "false" + show_number_completed: Show %{number} completed items + password_changed: "Que ha cambiado la contrase\xC3\xB1a, por favor vuelve a iniciar sesi\xC3\xB3n." + edit_preferences: Edit preferences + page_title_edit: TRACKS::Edit Preferences + is_true: "true" + sms_context_none: None + generate_new_token: Generate a new token + token_header: Your token + authentication_header: Your authentication + updated: "Las preferencias de actualizaci\xC3\xB3n" + current_authentication_type: Your authentication type is %{auth_type} + change_authentication_type: Change your authentication type + generate_new_token_confirm: Are you sure? Generating a new token will replace the existing one and break any external usages of this token. + tabs: + authentication: "Autenticaci\xC3\xB3n" + tracks_behavior: Rastrea el comportamiento de + profile: Perfil + date_and_time: Fecha y hora time: am: soy formats: @@ -676,33 +722,6 @@ es: month_day: "%B %d" long: "%B %d, %Y %H:%M" pm: pm - preferences: - change_identity_url: Change Your Identity URL - open_id_url: Your OpenID URL is - staleness_starts_after: Staleness starts after %{days} days - page_title: TRACKS::Preferences - change_password: Change your password - token_description: Token (for feeds and API use) - title: Your preferences - is_false: "false" - show_number_completed: Show %{number} completed items - edit_preferences: Edit preferences - page_title_edit: TRACKS::Edit Preferences - is_true: "true" - password_changed: "Que ha cambiado la contrase\xC3\xB1a, por favor vuelve a iniciar sesi\xC3\xB3n." - sms_context_none: None - generate_new_token: Generate a new token - token_header: Your token - authentication_header: Your authentication - updated: "Las preferencias de actualizaci\xC3\xB3n" - current_authentication_type: Your authentication type is %{auth_type} - change_authentication_type: Change your authentication type - generate_new_token_confirm: Are you sure? Generating a new token will replace the existing one and break any external usages of this token. - tabs: - tracks_behavior: Rastrea el comportamiento de - authentication: "Autenticaci\xC3\xB3n" - profile: Perfil - date_and_time: Fecha y hora date: month_names: - @@ -781,8 +800,8 @@ es: send_feedback: "Env\xC3\xADa comentarios sobre el %{version}" shared: multiple_next_actions: Multiple next actions (one on each line) - toggle_single: Add a next action make_actions_dependent: "Aseg\xC3\xBArese que las acciones dependen unos de otros" + toggle_single: Add a next action hide_form: Esconder formulario add_actions: "A\xC3\xB1adir tareas" add_action: "A\xC3\xB1adir tarea" @@ -795,6 +814,30 @@ es: add_context: Agregue contexto toggle_multi_title: Toggle single/multi new action form hide_action_form_title: Hide new action form + feedlist: + choose_context: Elija el contexto en el que desea un canal de + actions_due_today: Acciones pendientes hoy o antes + ical_feed: "iCal alimentaci\xC3\xB3n" + legend: "Leyenda:" + all_contexts: Todos los contextos + rss_feed: RSS Feed + choose_project: Elegir el proyecto que quiere un canal de + all_projects: Todos los proyectos + project_needed: Es necesario que haya al menos un proyecto antes de poder solicitar un feed + select_feed_for_project: Seleccione la fuente para este proyecto + active_projects_wo_next: "Proyectos activos, sin las pr\xC3\xB3ximas acciones" + active_starred_actions: "Todas las acciones que protagoniz\xC3\xB3, activa" + context_needed: Es necesario que haya al menos un contexto antes de poder solicitar un feed + select_feed_for_context: "Seleccione la alimentaci\xC3\xB3n de este contexto" + projects_and_actions: Proyectos activos con sus acciones + notice_incomplete_only: "Nota: Todos los alimentos muestran s\xC3\xB3lo las acciones que no han sido marcadas como realizadas, a menos que se indique lo contrario." + actions_due_next_week: "Tareas pendientes en 7 d\xC3\xADas o menos" + actions_completed_last_week: "Tareas completadas en los \xC3\xBAltimos 7 d\xC3\xADas" + context_centric_actions: "Feeds de acciones incompletas en un contexto espec\xC3\xADfico" + plain_text_feed: Canal Texto sin formato + last_fixed_number: "\xC3\x9Altima %{number} acciones" + all_actions: Todas las tareas + project_centric: "Feeds de acciones incompletas en un proyecto espec\xC3\xADfico" sidebar: list_name_active_contexts: Active contexts list_name_active_projects: Active projects @@ -802,66 +845,14 @@ es: list_name_completed_projects: Completed projects list_name_hidden_projects: Hidden projects list_name_hidden_contexts: Hidden contexts - feedlist: - actions_due_today: Acciones pendientes hoy o antes - choose_context: Elija el contexto en el que desea un canal de - rss_feed: RSS Feed - legend: "Leyenda:" - ical_feed: "iCal alimentaci\xC3\xB3n" - all_contexts: Todos los contextos - all_projects: Todos los proyectos - choose_project: Elegir el proyecto que quiere un canal de - project_needed: Es necesario que haya al menos un proyecto antes de poder solicitar un feed - select_feed_for_project: Seleccione la fuente para este proyecto - active_projects_wo_next: "Proyectos activos, sin las pr\xC3\xB3ximas acciones" - active_starred_actions: "Todas las acciones que protagoniz\xC3\xB3, activa" - select_feed_for_context: "Seleccione la alimentaci\xC3\xB3n de este contexto" - projects_and_actions: Proyectos activos con sus acciones - context_needed: Es necesario que haya al menos un contexto antes de poder solicitar un feed - actions_due_next_week: "Tareas pendientes en 7 d\xC3\xADas o menos" - notice_incomplete_only: "Nota: Todos los alimentos muestran s\xC3\xB3lo las acciones que no han sido marcadas como realizadas, a menos que se indique lo contrario." - context_centric_actions: "Feeds de acciones incompletas en un contexto espec\xC3\xADfico" - plain_text_feed: Canal Texto sin formato - last_fixed_number: "\xC3\x9Altima %{number} acciones" - all_actions: Todas las tareas - actions_completed_last_week: "Tareas completadas en los \xC3\xBAltimos 7 d\xC3\xADas" - project_centric: "Feeds de acciones incompletas en un proyecto espec\xC3\xADfico" - contexts: - delete_context_title: Eliminar contexto - all_completed_tasks_title: "TRACKS:: Todas las acciones completadas en '%{context_name}' contexto" - hide_form: Esconder formulario - show_form_title: "A\xC3\xB1adir un contexto" - todos_append: en este contexto - delete_context_confirmation: "\xC2\xBFEst\xC3\xA1 seguro que desea eliminar '%{name}' el contexto? Tenga en cuenta que esto tambi\xC3\xA9n se eliminar\xC3\xA1n todas las acciones (la repetici\xC3\xB3n) en este contexto!" - delete_context: Eliminar contexto - edit_context: Editar contexto - hide_form_title: Ocultar el formulario nuevo contexto - hidden_contexts: Contextos ocultos - no_contexts_active: Actualmente no hay contextos activos - context_hide: "\xC2\xBFEsconder de la p\xC3\xA1gina principal?" - show_form: Crear un nuevo contexto - visible_contexts: Contextos visible - save_status_message: Contexto guardado - add_context: "A\xC3\xB1adir contexto" - update_status_message: Nombre de contexto ha cambiado - context_name: Nombre del contexto - status_active: "El contexto est\xC3\xA1 activo" - completed_tasks_title: "TRACKS:: Las acciones completadas en '%{context_name}' el contexto" - new_context_post: "' Tambi\xC3\xA9n se ha creado. \xC2\xBFEst\xC3\xA1 seguro?" - no_actions: Actualmente no hay acciones incompletas en este contexto - last_completed_in_context: "en este contexto (\xC3\xBAltimos %{number})" - context_deleted: Contexto eliminado '%{name}' - no_contexts_hidden: Actualmente no hay contextos ocultos - new_context_pre: Nuevo contexto ' - status_hidden: Contexto se oculta users: - successfully_deleted_user: Successfully deleted user %{username} + openid_url_verified: You have successfully verified %{url} as your identity and set your authentication type to OpenID. auth_type_update_error: "There was a problem updating your authentication type: %{error_messages}" failed_to_delete_user: Failed to delete user %{username} destroy_successful: User %{login} was successfully destroyed - total_contexts: Total contexts first_user_heading: "Welcome to TRACKS. To get started, please create an admin account:" - openid_url_verified: You have successfully verified %{url} as your identity and set your authentication type to OpenID. + total_contexts: Total contexts + successfully_deleted_user: Successfully deleted user %{username} signup_successful: Signup successful for user %{username}. new_token_generated: New token successfully generated total_projects: Total projects @@ -869,23 +860,23 @@ es: no_signups_title: TRACKS::No signups user_created: User created. account_signup: Account signup - password_updated: Password updated. manage_users: Manage users - new_user_heading: "Sign up a new user:" + password_updated: Password updated. auth_type_updated: Authentication type updated. total_actions: Total actions desired_login: Desired login signup: Signup confirm_password: Confirm password - change_password_prompt: Enter your new password in the fields below and click 'Change password' to replace your current password with your new one. + new_user_heading: "Sign up a new user:" password_confirmation_label: Confirm password destroy_error: There was an error deleting the user %{login} choose_password: Choose password change_password_title: TRACKS::Change password change_auth_type_title: TRACKS::Change authentication type + change_password_prompt: Enter your new password in the fields below and click 'Change password' to replace your current password with your new one. + new_password_label: New password register_with_cas: With your CAS username label_auth_type: Authentication type - new_password_label: New password total_users_count: You have a total of %{count} users new_user_title: TRACKS::Sign up as the admin user destroy_user: Destroy user @@ -896,18 +887,46 @@ es: openid_ok_pref_failed: You have successfully verified %{url} as your identity but there was a problem saving your authentication preferences. auth_change_submit: Change authentication type change_authentication_type: Change authentication type - select_authentication_type: Select your new authentication type and click 'Change authentication type' to replace your current settings. total_notes: Total notes + select_authentication_type: Select your new authentication type and click 'Change authentication type' to replace your current settings. + contexts: + delete_context_title: Eliminar contexto + all_completed_tasks_title: "TRACKS:: Todas las acciones completadas en '%{context_name}' contexto" + hide_form: Esconder formulario + show_form_title: "A\xC3\xB1adir un contexto" + delete_context_confirmation: "\xC2\xBFEst\xC3\xA1 seguro que desea eliminar '%{name}' el contexto? Tenga en cuenta que esto tambi\xC3\xA9n se eliminar\xC3\xA1n todas las acciones (la repetici\xC3\xB3n) en este contexto!" + todos_append: en este contexto + delete_context: Eliminar contexto + edit_context: Editar contexto + hide_form_title: Ocultar el formulario nuevo contexto + hidden_contexts: Contextos ocultos + no_contexts_active: Actualmente no hay contextos activos + context_hide: "\xC2\xBFEsconder de la p\xC3\xA1gina principal?" + add_context: "A\xC3\xB1adir contexto" + show_form: Crear un nuevo contexto + save_status_message: Contexto guardado + visible_contexts: Contextos visible + update_status_message: Nombre de contexto ha cambiado + context_name: Nombre del contexto + status_active: "El contexto est\xC3\xA1 activo" + completed_tasks_title: "TRACKS:: Las acciones completadas en '%{context_name}' el contexto" + new_context_post: "' Tambi\xC3\xA9n se ha creado. \xC2\xBFEst\xC3\xA1 seguro?" + new_context_pre: Nuevo contexto ' + no_actions: Actualmente no hay acciones incompletas en este contexto + last_completed_in_context: "en este contexto (\xC3\xBAltimos %{number})" + context_deleted: Contexto eliminado '%{name}' + no_contexts_hidden: Actualmente no hay contextos ocultos + status_hidden: Contexto se oculta login: - login_cas: go to the CAS openid_identity_url_not_found: Sorry, no user by that identity URL exists (%{identity_url}) user_no_expiry: Stay logged in sign_in: Entrar - please_login: Please log in to use Tracks - cas_logged_in_greeting: Hello, %{username}! You are authenticated. + login_cas: go to the CAS cas_no_user_found: Hello, %{username}! You do not have an account on Tracks. cas_login: CAS Login successful_with_session_info: "Login successful:" + please_login: Please log in to use Tracks + cas_logged_in_greeting: Hello, %{username}! You are authenticated. cas_username_not_found: Sorry, no user by that CAS username exists (%{username}) cas_create_account: If you like to request on please go here to %{signup_link} mobile_use_openid: "\xE2\x80\xA6or login with an OpenID" @@ -919,10 +938,10 @@ es: session_time_out: Session has timed out. Please %{link} session_will_expire: session will expire after %{hours} hour(s) of inactivity. login_standard: go back to the standard login - log_in_again: log in again. - logged_out: You have been logged out of Tracks. login_with_openid: login with an OpenID unsuccessful: Login unsuccessful. + log_in_again: log in again. + logged_out: You have been logged out of Tracks. datetime: prompts: minute: Minuto @@ -977,7 +996,7 @@ es: search: contexts_matching_query: Contexts matching query tags_matching_query: Tags matching query + no_results: Your search yielded no results. todos_matching_query: Todos matching query projects_matching_query: Projects matching query notes_matching_query: Notes matching query - no_results: Your search yielded no results. diff --git a/config/locales/fr.yml b/config/locales/fr.yml index 3df8b481..f83d7cca 100644 --- a/config/locales/fr.yml +++ b/config/locales/fr.yml @@ -1,5 +1,56 @@ --- fr: + layouts: + toggle_contexts_title: "Faire des contextes effondr\xC3\xA9 (in)visibles" + toggle_contexts: "Basculer contextes effondr\xC3\xA9" + toggle_notes: Afficher/Cacher notes + next_actions_rss_feed: Flux RSS des prochaines actions + toggle_notes_title: Afficher/Cacher toutes les notes + mobile_navigation: + new_action: 0-Nouvelle action + logout: "D\xC3\xA9connexion" + feeds: Flux + starred: "Marqu\xC3\xA9" + projects: Projets + tickler: Reporteur + contexts: Contextes + home: Accueil + navigation: + manage_users_title: Ajouter ou supprimer des utilisateurs + recurring_todos: "T\xC3\xA2ches (todos) r\xC3\xA9p\xC3\xA9titives" + api_docs: Doc REST API + help: "?" + feeds: Flux + starred: "Marqu\xC3\xA9" + stats: Statistiques + notes_title: Voir toutes les notes + manage_users: Gestion des utilisateurs + tickler_title: Reporteur + admin: Admin + preferences: !binary | + UHLDqWbDqXJlbmNlcw== + + integrations_: "Int\xC3\xA9grer Tracks" + export_title: "Importer et exporter des donn\xC3\xA9es" + calendar_title: "Calendrier des actions \xC3\xA0 \xC3\xA9ch\xC3\xA9ance" + feeds_title: Voir une liste des flux disponibles + stats_title: Voir vos statistiques + tickler: Reporteur + home_title: Accueil + starred_title: "Voir vos actions pr\xC3\xA9f\xC3\xA9r\xC3\xA9es" + recurring_todos_title: "Gerer les actions r\xC3\xA9currentes" + completed_tasks: "Termin\xC3\xA9" + view: Vue + organize: Organiser + completed_tasks_title: "Termin\xC3\xA9" + home: Accueil + export: Exporter + contexts_title: Contextes + preferences_title: "Voir mes pr\xC3\xA9f\xC3\xA9rences" + search: Recherches tous les items + review_title: Faire examiner + projects_title: Projets + calendar: Calendrier number: format: separator: . @@ -31,57 +82,79 @@ fr: unit: $ separator: . delimiter: "," - layouts: - toggle_contexts_title: "Faire des contextes effondr\xC3\xA9 (in)visibles" - toggle_notes: Afficher/Cacher notes - toggle_contexts: "Basculer contextes effondr\xC3\xA9" - next_actions_rss_feed: Flux RSS des prochaines actions - toggle_notes_title: Afficher/Cacher toutes les notes - mobile_navigation: - feeds: Flux - new_action: 0-Nouvelle action - logout: "D\xC3\xA9connexion" - starred: "Marqu\xC3\xA9" - projects: Projets - tickler: Reporteur - contexts: Contextes - home: Accueil - navigation: - manage_users_title: Ajouter ou supprimer des utilisateurs - api_docs: Doc REST API - recurring_todos: "T\xC3\xA2ches (todos) r\xC3\xA9p\xC3\xA9titives" - feeds: Flux - help: "?" - stats: Statistiques - starred: "Marqu\xC3\xA9" - notes_title: Voir toutes les notes - manage_users: Gestion des utilisateurs - tickler_title: Reporteur - admin: Admin - integrations_: "Int\xC3\xA9grer Tracks" - export_title: "Importer et exporter des donn\xC3\xA9es" - preferences: !binary | - UHLDqWbDqXJlbmNlcw== + common: + recurring_todos: "R\xC3\xA9p\xC3\xA9tition d'actions" + back: Retour + actions: Actions + third: "Troisi\xC3\xA8me" + add: Ajouter + go_back: Retour + previous: !binary | + UHLDqWPDqWRlbnRl - calendar_title: "Calendrier des actions \xC3\xA0 \xC3\xA9ch\xC3\xA9ance" - feeds_title: Voir une liste des flux disponibles - completed_tasks: "Termin\xC3\xA9" - stats_title: Voir vos statistiques - tickler: Reporteur - home_title: Accueil - starred_title: "Voir vos actions pr\xC3\xA9f\xC3\xA9r\xC3\xA9es" - recurring_todos_title: "Gerer les actions r\xC3\xA9currentes" - view: Vue - organize: Organiser - completed_tasks_title: "Termin\xC3\xA9" - home: Accueil - contexts_title: Contextes - export: Exporter - preferences_title: "Voir mes pr\xC3\xA9f\xC3\xA9rences" - review_title: Faire examiner - calendar: Calendrier - search: Recherches tous les items - projects_title: Projets + logout: "D\xC3\xA9connexion" + second: Seconde + none: Aucun + week: semaine + optional: optionnel + deferred: "report\xC3\xA9es" + cancel: Annuler + show_all: Voir tous + month: mois + actions_midsentence: + one: action + other: actions + zero: actions + forum: Forum + server_error: Une erreur s\'est produite sur le serveur + notes: Notes + projects: Projets + last: Dernier + review: Revue + action: Action + days_midsentence: + one: jour + other: jours + zero: jours + project: Projet + contribute: Contribuer + ok: Ok + website: Site Web + first: Premier + note: + one: 1 noter + other: "%{count} notes" + zero: non notes + numbered_step: Etape %{number} + sort: + by_task_count_title: "Trier par nombre de t\xC3\xA2ches" + by_task_count_title_confirm: "Etes vous s\xC3\xBBr de vouloir trier ces projets par nombre de t\xC3\xA2ches ? L\\'ordre actuel sera remplac\xC3\xA9." + alphabetically: "Par ordre alphab\xC3\xA9tique" + sort: Trier + alphabetically_title: "Trier les projets par ordre alphab\xC3\xA9tique" + alphabetically_confirm: "Etes vous s\xC3\xBBr de vouloir trier ces projets par ordre alphab\xC3\xA9tique ? L\\'ordre actuel sera remplac\xC3\xA9." + by_task_count: "Par nombre de t\xC3\xA2ches" + create: !binary | + Q3LDqWVy + + todo: Action + months: Mois + description: Description + errors_with_fields: "Il y a des probl\xC3\xA8me avec les champs suivants :" + drag_handle: DRAG + next: Suivant + fourth: "Quatri\xC3\xA8me" + context: Contexte + contexts: Contextes + bugs: Bugs + update: "Mettre \xC3\xA0 jour" + forth: FORTH + weeks: semaines + wiki: Wiki + email: Email + search: Rechercher + ajaxError: "Une erreur s'est produite en acc\xC3\xA9dant un serveur" + not_available_abbr: n/a integrations: opensearch_description: Rechercher dans Tracks applescript_next_action_prompt: "Description de l'action suivante:" @@ -90,68 +163,6 @@ fr: Q3LDqcOp applescript_success_before_id: Nouvelle action suivante avec ID - common: - back: Retour - recurring_todos: "R\xC3\xA9p\xC3\xA9tition d'actions" - actions: Actions - third: "Troisi\xC3\xA8me" - add: Ajouter - previous: !binary | - UHLDqWPDqWRlbnRl - - go_back: Retour - logout: "D\xC3\xA9connexion" - second: Seconde - show_all: Voir tous - optional: optionnel - week: semaine - none: Aucun - cancel: Annuler - month: mois - actions_midsentence: actes - server_error: Une erreur s\'est produite sur le serveur - forum: Forum - notes: Notes - last: Dernier - projects: Projets - action: Action - review: Revue - project: Projet - days_midsentence: "journ\xC3\xA9es" - contribute: Contribuer - ok: Ok - website: Site Web - first: Premier - numbered_step: Etape %{number} - errors_with_fields: "Il y a des probl\xC3\xA8me avec les champs suivants :" - create: !binary | - Q3LDqWVy - - sort: - by_task_count_title: "Trier par nombre de t\xC3\xA2ches" - by_task_count_title_confirm: "Etes vous s\xC3\xBBr de vouloir trier ces projets par nombre de t\xC3\xA2ches ? L\\'ordre actuel sera remplac\xC3\xA9." - alphabetically: "Par ordre alphab\xC3\xA9tique" - alphabetically_title: "Trier les projets par ordre alphab\xC3\xA9tique" - sort: Trier - alphabetically_confirm: "Etes vous s\xC3\xBBr de vouloir trier ces projets par ordre alphab\xC3\xA9tique ? L\\'ordre actuel sera remplac\xC3\xA9." - by_task_count: "Par nombre de t\xC3\xA2ches" - months: Mois - description: Description - todo: Action - fourth: "Quatri\xC3\xA8me" - next: Suivant - contexts: Contextes - context: Contexte - drag_handle: DRAG - update: "Mettre \xC3\xA0 jour" - weeks: semaines - forth: FORTH - wiki: Wiki - bugs: Bugs - ajaxError: "Une erreur s'est produite en acc\xC3\xA9dant un serveur" - not_available_abbr: n/a - email: Email - search: Rechercher activerecord: attributes: project: @@ -165,17 +176,14 @@ fr: updated_at: "Mise \xC3\xA0 jour \xC3\xA0" todo: - predecessors: "D\xC3\xA9pend de" show_from: Afficher depuis + predecessors: "D\xC3\xA9pend de" notes: Note - project: Projet tags: "Mots-cl\xC3\xA9s" + project: Projet description: Description context: Contexte due: "Ech\xC3\xA9ance" - user: - last_name: Nom - first_name: "Pr\xC3\xA9nom" preference: show_hidden_projects_in_sidebar: "Montrer les projets cach\xC3\xA9s dans le panneau lat\xC3\xA9ral" show_hidden_contexts_in_sidebar: "Montrer les contextes cach\xC3\xA9s dans le panneau lat\xC3\xA9ral" @@ -184,19 +192,22 @@ fr: verbose_action_descriptors: "Descripteurs d\\'action d\xC3\xA9taill\xC3\xA9s" staleness_starts: "D\xC3\xA9but de d\xC3\xA9passement" mobile_todos_per_page: Actions par page (Vue Mobile) - title_date_format: Format de la date en titre show_number_completed: "Montrer le nombre d\\'action compl\xC3\xA9t\xC3\xA9es" + title_date_format: Format de la date en titre refresh: Intervalle de rafraichissement (en minutes) week_starts: Les semaines commencent un last_name: Nom due_style: "Style Ech\xC3\xA9ance" locale: Langue time_zone: Fuseau horaire - show_project_on_todo_done: "Aller au projet quand la t\xC3\xA2che est termin\xC3\xA9e" sms_email: De l\'Email - first_name: Nom + show_project_on_todo_done: "Aller au projet quand la t\xC3\xA2che est termin\xC3\xA9e" show_completed_projects_in_sidebar: "Montrer les projets compl\xC3\xA9t\xC3\xA9s dans le panneau lat\xC3\xA9ral" + first_name: Nom review_period: Intervalle de revue de projet + user: + last_name: Nom + first_name: "Pr\xC3\xA9nom" errors: models: project: @@ -244,21 +255,21 @@ fr: feed_description: Liste de tous les projets de %{username} todo: error_date_must_be_future: "doit \xC3\xAAtre une date dans le futur" - user: - error_context_not_associated: "L'identifiant contexte %{context} n'est pas associ\xC3\xA9 \xC3\xA0 l'identifiant utilisateur %{user}." - error_project_not_associated: "L'identifiant projet %{context} n'est pas associ\xC3\xA9 \xC3\xA0 l'identifiant utilisateur %{user}." preference: due_on: "Ech\xC3\xA9ance le %{date}" due_in: "Ech\xC3\xA9ance dans %{days} jours" due_styles: - "Ech\xC3\xA9ance dans ____ jours" - "Ech\xC3\xA9ance le ____" + user: + error_context_not_associated: "L'identifiant contexte %{context} n'est pas associ\xC3\xA9 \xC3\xA0 l'identifiant utilisateur %{user}." + error_project_not_associated: "L'identifiant projet %{context} n'est pas associ\xC3\xA9 \xC3\xA0 l'identifiant utilisateur %{user}." stats: - tag_cloud_title: Nuage de tag pour toutes les actions totals_hidden_context_count: "et %{count} sont des contextes cach\xC3\xA9s." actions_avg_created: "Dans les 12 derniers mois vous avez cr\xC3\xA9\xC3\xA9 une moyenne de %{count} actions" actions_min_max_completion_days: "Le nombre max/min de jours pour r\xC3\xA9aliser est %{min}/%{max}." totals_actions_completed: "dont %{count} sont r\xC3\xA9alis\xC3\xA9es." + tag_cloud_title: Nuage de tag pour toutes les actions actions_actions_avg_created_30days: "Dans les 30 jours vous avez cr\xC3\xA9er en moyenne %{count} actions" actions_avg_completed: "et r\xC3\xA9alis\xC3\xA9 une moyenne de %{count} actions par mois." top5_visible_contexts_with_incomplete_actions: Top 5 des contextes visible avec des actions en cours @@ -274,11 +285,11 @@ fr: weeks: Temps en cours d'une action (en semaines). Cliquer sur une barre pour plus d'info totals_action_count: vous avez un total de %{count} actions tag_cloud_90days_title: Nuage de tag des actions des 90 derniers jours + actions_avg_completion_time: "Pour toutes vos actions r\xC3\xA9alis\xC3\xA9s, le temps moyen de r\xC3\xA9alisation est %{count} jours." tod30: Heure (30 derniers jours) tags: Tags projects: Projets - actions_avg_completion_time: "Pour toutes vos actions r\xC3\xA9alis\xC3\xA9s, le temps moyen de r\xC3\xA9alisation est %{count} jours." - actions_lastyear_title: Actions des 12 derniers mois + totals_completed_project_count: "et %{count} sont des projets r\xC3\xA9alis\xC3\xA9s." labels: month_avg_completed: "%{month} mois moy. r\xC3\xA9alis\xC3\xA9" completed: !binary | @@ -293,8 +304,8 @@ fr: Q3LDqcOp actions_selected_from_week: "Actions selectionn\xC3\xA9es depuis la semaine" - totals_completed_project_count: "et %{count} sont des projets r\xC3\xA9alis\xC3\xA9s." actions_day_of_week_title: Jour de la semaine (toutes les actions) + actions_lastyear_title: Actions des 12 derniers mois open_per_week: "Actifs (visibles et cach\xC3\xA9s) prochaines actions par semaine" action_selection_title: TRACKS::Selection action totals_project_count: Vous avez %{count} projets @@ -317,16 +328,16 @@ fr: actions_last_year_legend: number_of_actions: Nombre d'actions months_ago: "Mois pr\xC3\xA9c\xC3\xA9dents" - top10_projects: Top 10 des projets top5_contexts: Top 5 des contextes - click_to_return: "Cliquer %{link} pour revenir \xC3\xA0 la page des statistiques" - totals: Totaux + top10_projects: Top 10 des projets contexts: Contextes + totals: Totaux + click_to_return: "Cliquer %{link} pour revenir \xC3\xA0 la page des statistiques" tag_cloud_90days_description: "Ce nuage de tag contient les tags des actions cr\xC3\xA9\xC3\xA9es ou r\xC3\xA9alis\xC3\xA9es dans les 90 derniers jours." totals_visible_context_count: De ceux-ci %{count} sont des contextes visibles - actions_min_completion_time: "Le temps minimum de r\xC3\xA9alisation est %{time}." top10_projects_30days: Top 10 des projets des 30 derniers jours running_time_all: "Temps en cours de toutes les actions incompl\xC3\xA8tes" + actions_min_completion_time: "Le temps minimum de r\xC3\xA9alisation est %{time}." action_completion_time_title: "Temps de r\xC3\xA9alisation (toutes les actions r\xC3\xA9alis\xC3\xA9es)" click_to_show_actions_from_week: Cliquer %{link} pour voir les actions depuis la semaine %{week}. top10_longrunning: Top 10 des plus long projets en cours @@ -338,14 +349,14 @@ fr: day_of_week: Jour de la semaine totals_first_action: "Depuis votre premi\xC3\xA8re action du %{date}" tag_cloud_description: "Ce nuage de tags contient les tags de toutes les actions (r\xC3\xA9alis\xC3\xA9es, en cours, visibles ou cach\xC3\xA9es)" + spread_of_actions_for_all_context: Vue des actions pour tous les contextes click_to_update_actions: Cliquer sur une barre du graphique pour mettre a jour les actions ci-dessous. click_to_return_link: ici - spread_of_actions_for_all_context: Vue des actions pour tous les contextes more_stats_will_appear: Plus de statistiques apparaitront quand vous aurez ajouter quelques actions. actions_avg_completed_30days: "et r\xC3\xA9alis\xC3\xA9 une moyenne de %{count} actions par jour." + index_title: TRACKS::Statistiques actions_30days_title: Actions des 30 derniers jours no_tags_available: pas de tags disponibles - index_title: TRACKS::Statistiques actions_dow_30days_title: Jour de la semaine (les 30 derniers jours) actions_day_of_week_legend: number_of_actions: Certain nombre d'actions @@ -361,19 +372,19 @@ fr: running_time: Temps en cours d'une action (en semaines). Cliquer sur une barre pour plus d'info percentage: Pourcentage other_actions_label: (autres) - time_of_day: Heure (toutes les actions) totals_hidden_project_count: "%{count} sont cach\xC3\xA9s" + time_of_day: Heure (toutes les actions) todos: - completed_actions: "Action compl\xC3\xA9t\xC3\xA9es" + recurring_action_deleted: "L'action a \xC3\xA9t\xC3\xA9 supprim\xC3\xA9e. Parce que cette action est r\xC3\xA9currente, une nouvelle action \xC3\xA0 \xC3\xA9t\xC3\xA9 ajout\xC3\xA9e" show_from: Afficher depuis error_starring_recurring: "Impossible d'actionner l'\xC3\xA9toile de la tache r\xC3\xA9currente \\'%{description}\\'" - recurring_action_deleted: "L'action a \xC3\xA9t\xC3\xA9 supprim\xC3\xA9e. Parce que cette action est r\xC3\xA9currente, une nouvelle action \xC3\xA0 \xC3\xA9t\xC3\xA9 ajout\xC3\xA9e" - completed_rest_of_previous_month: "Compl\xC3\xA9t\xC3\xA9 dans le reste du mois pr\xC3\xA9c\xC3\xA9dent" - completed_recurring: "T\xC3\xA2ches reccurents compl\xC3\xA9t\xC3\xA9s" + completed_actions: "Action compl\xC3\xA9t\xC3\xA9es" added_new_next_action: "Nouvelle action suivante ajout\xC3\xA9e" + completed_recurring: "T\xC3\xA2ches reccurents compl\xC3\xA9t\xC3\xA9s" + completed_rest_of_previous_month: "Compl\xC3\xA9t\xC3\xA9 dans le reste du mois pr\xC3\xA9c\xC3\xA9dent" blocked_by: "Bloqu\xC3\xA9 par %{predecessors}" - completed_recurrence_completed: "Il n'y pas d'action suivante apr\xC3\xA8s l'action r\xC3\xA9currente que vous avez supprim\xC3\xA9e. La r\xC3\xA9currence est termin\xC3\xA9e" star_action: Elire cette action + completed_recurrence_completed: "Il n'y pas d'action suivante apr\xC3\xA8s l'action r\xC3\xA9currente que vous avez supprim\xC3\xA9e. La r\xC3\xA9currence est termin\xC3\xA9e" defer_date_after_due_date: "La date de report est apr\xC3\xA8s la date d'\xC3\xA9ch\xC3\xA9ance. Veuillez ajuster la date d'\xC3\xA9cheance avant de reporter." unable_to_add_dependency: "Impossible d'ajouter la d\xC3\xA9pendance" done: "Termin\xC3\xA9 ?" @@ -386,16 +397,16 @@ fr: no_hidden_actions: "Il n'y a pas d'actions cach\xC3\xA9es actuellement" edit_action_with_description: Modifier l'action '%{description}' action_due_on: "(action \xC3\xA0 terminer avant le %{date})" + list_incomplete_next_actions: "Liste les prochaines actions incompl\xC3\xA8tes" archived_tasks_title: "TRACKS::T\xC3\xA2ches r\xC3\xA9alis\xC3\xA9es archiv\xC3\xA9es" remove_dependency: "Enlever les d\xC3\xA9pendances (l'action n'est pas supprim\xC3\xA9e)" - list_incomplete_next_actions: "Liste les prochaines actions incompl\xC3\xA8tes" - tags: "Tags (s\xC3\xA9par\xC3\xA9s par des virgules)" action_deleted_success: "L'action suivante \xC3\xA0 \xC3\xA9t\xC3\xA9 supprim\xC3\xA9e avec succ\xC3\xA8s" - mobile_todos_page_title: Toutes les actions - new_related_todo_created: "Une nouvelle t\xC3\xA2che a \xC3\xA9t\xC3\xA9 ajout\xC3\xA9e qui appartient \xC3\xA0 cette t\xC3\xA2che r\xC3\xA9currente" - context_changed: "Contexte chang\xC3\xA9 en %{name}" - add_another_dependency: "Ajouter une autre d\xC3\xA9pendance" + tags: "Tags (s\xC3\xA9par\xC3\xA9s par des virgules)" delete_recurring_action_title: "Supprimer l'action r\xC3\xA9currente" + context_changed: "Contexte chang\xC3\xA9 en %{name}" + new_related_todo_created: "Une nouvelle t\xC3\xA2che a \xC3\xA9t\xC3\xA9 ajout\xC3\xA9e qui appartient \xC3\xA0 cette t\xC3\xA2che r\xC3\xA9currente" + mobile_todos_page_title: Toutes les actions + add_another_dependency: "Ajouter une autre d\xC3\xA9pendance" removed_predecessor: "Suppression de %{successor} comme d\xC3\xA9pendance de %{predecessor}" recurring_actions_title: "TRACKS::Actions r\xC3\xA9currentes" next_action_needed: Vous devez soumettre au moins une prochaine action @@ -405,40 +416,41 @@ fr: edit_action: Modifier action added_new_context: "Nouveau context ajout\xC3\xA9" next_actions_description: "Filtre:" + list_incomplete_next_actions_with_limit: "Liste les %{count} derni\xC3\xA8res actions suivantes incompl\xC3\xA8tes" + set_to_pending: "%{task} mise en attente" + added_new_project: "Nouveau projet ajout\xC3\xA9" next_actions_title_additions: completed: "Actions compl\xC3\xA9t\xC3\xA9es" due_today: "\xC3\xA9ch\xC3\xA9ance aujourd'hui" due_within_a_week: "\xC3\xA9ch\xC3\xA9ance dans la semaine" - list_incomplete_next_actions_with_limit: "Liste les %{count} derni\xC3\xA8res actions suivantes incompl\xC3\xA8tes" - set_to_pending: "%{task} mise en attente" - added_new_project: "Nouveau projet ajout\xC3\xA9" older_completed_items: "Anciens \xC3\xA9l\xC3\xA9ments compl\xC3\xA9t\xC3\xA9s" - error_deleting_item: "Il s'est produit une erreur lors de la suppression de l'\xC3\xA9l\xC3\xA9ment %{description}" - edit_recurring_todo: "Modifier l'action r\xC3\xA9p\xC3\xA9tant" - append_in_this_project: dans ce projet - task_list_title: "TRACKS::Lister les t\xC3\xA2ches" no_actions_due_this_week: "Pas actions \xC3\xA0 faire cette semaine" + all_completed_here: ici + append_in_this_project: dans ce projet + edit_recurring_todo: "Modifier l'action r\xC3\xA9p\xC3\xA9tant" + error_deleting_item: "Il s'est produit une erreur lors de la suppression de l'\xC3\xA9l\xC3\xA9ment %{description}" + task_list_title: "TRACKS::Lister les t\xC3\xA2ches" no_recurring_todos: "Il n'y a pas de t\xC3\xA2ches r\xC3\xA9currentes actuellement" error_completing_todo: "Il s'est produit une erreur lors de l'execution de l'action r\xC3\xA9currente %{description}" recurring_pattern_removed: "La p\xC3\xA9riodicit\xC3\xA9 est retir\xC3\xA9 de %{count}" convert_to_project: Faire projet no_deferred_pending_actions: "Il n'y pas d'actions report\xC3\xA9es ou en attente actuellement" - completed_last_day: "Compl\xC3\xA9t\xC3\xA9 ces derni\xC3\xA8res 24 heures" delete_recurring_action_confirm: "Etes-vous s\xC3\xBBr de vouloir supprimer l'action r\xC3\xA9currente '%{description'}?" - show_in_days: Afficher dans %{days} jours + completed_last_day: "Compl\xC3\xA9t\xC3\xA9 ces derni\xC3\xA8res 24 heures" + feed_title_in_context: dans le contexte '%{context}' no_project: --Pas de projet-- + show_in_days: Afficher dans %{days} jours error_saving_recurring: "Il s'est produit une erreur lors de la sauvegarde de la t\xC3\xA2che r\xC3\xA9currente \\'%{description}\\'" completed_more_than_x_days_ago: "Compl\xC3\xA9t\xC3\xA9 il y a plus de %{count} jours" - all_completed: "Toutes les actions r\xC3\xA9alis\xC3\xA9es" - feed_title_in_context: dans le contexte '%{context}' new_related_todo_created_short: "\xC3\xA0 cr\xC3\xA9\xC3\xA9 une nouvelle t\xC3\xA2che" + all_completed: "Toutes les actions r\xC3\xA9alis\xC3\xA9es" edit: Modifier + completed_actions_with: "Action compl\xC3\xA9t\xC3\xA9es avec le tag %{tag_name}" older_than_days: Plus ancien que %{count} jours completed_tagged_page_title: "TRACKS::Les t\xC3\xA2ches termin\xC3\xA9es avec marquer %{tag_name}" pending: En attente - completed_actions_with: "Action compl\xC3\xA9t\xC3\xA9es avec le tag %{tag_name}" - deleted_success: "Action supprim\xC3\xA9e avec succ\xC3\xA8s." completed_tasks_title: "TRACKS::T\xC3\xA2ches compl\xC3\xA9t\xC3\xA9es" + deleted_success: "Action supprim\xC3\xA9e avec succ\xC3\xA8s." feed_title_in_project: dans le projet '%{project}' clear_due_date: "Effacer la date d'\xC3\xA9ch\xC3\xA9ance" error_removing_dependency: "Il s'est produit une erreur lors de la suppression de la d\xC3\xA9pendance" @@ -449,20 +461,21 @@ fr: deferred_actions_with: "Action report\xC3\xA9es avec le tag '%{tag_name}'" confirm_delete: "Etes-vous s\xC3\xBBr de vouloir supprimer l'action '%{description}' ?" recurring_deleted_success: "L'action r\xC3\xA9currente a \xC3\xA9t\xC3\xA9 supprim\xC3\xA9e avec succ\xC3\xA8s." - clear_show_from_date: Effacer show from date + no_completed_actions_with: "Pas d'actions compl\xC3\xA9t\xC3\xA9es avec le tag '%{tag_name}'" next_actions_title: Tracks - Prochaines Actions next_action_description: Description de la prochaine action deferred_tasks_title: TRACKS::Reporteur - no_completed_actions_with: "Pas d'actions compl\xC3\xA9t\xC3\xA9es avec le tag '%{tag_name}'" - unresolved_dependency: "La valeur saisie dans le champ d\xC3\xA9pendance ne correspond pas \xC3\xA0 une action existante. Cette valeur ne sera pas sauvegard\xC3\xA9e avec le reste de l'action. Continuer ?" - calendar_page_title: TRACKS::Calendrier + clear_show_from_date: Effacer show from date in_hidden_state: "a l\\'\xC3\xA9tat cach\xC3\xA9" - show_today: Afficher aujourd'hui + see_all_completed: Vous pouvez voir toutes les actions accomplies %{link} + calendar_page_title: TRACKS::Calendrier + unresolved_dependency: "La valeur saisie dans le champ d\xC3\xA9pendance ne correspond pas \xC3\xA0 une action existante. Cette valeur ne sera pas sauvegard\xC3\xA9e avec le reste de l'action. Continuer ?" no_actions_found_title: "Aucune action trouv\xC3\xA9e" + show_today: Afficher aujourd'hui next_actions_due_date: overdue_by: "D\xC3\xA9pass\xC3\xA9e de %{days} jour" - due_today: "Ech\xC3\xA9ance aujourd'hui" due_in_x_days: "Ech\xC3\xA9ance dans %{days} days" + due_today: "Ech\xC3\xA9ance aujourd'hui" overdue_by_plural: "D\xC3\xA9pass\xC3\xA9e de %{days} jours" due_tomorrow: "Ech\xC3\xA9ance demain" completed_last_x_days: "Compl\xC3\xA9t\xC3\xA9 ces %{count} jours" @@ -479,24 +492,23 @@ fr: feeds: completed: "Compl\xC3\xA9t\xC3\xA9 : %{date}" due: "Ech\xC3\xA9ance : %{date}" - delete_action: Supprimer action - error_deleting_recurring: "Il s'est produit une erreur lors de la suppression de la t\xC3\xA2che r\xC3\xA9currente \\'%{description}\\'" recurring_todos: "T\xC3\xA2ches r\xC3\xA9currentes" + error_deleting_recurring: "Il s'est produit une erreur lors de la suppression de la t\xC3\xA2che r\xC3\xA9currente \\'%{description}\\'" + delete_action: Supprimer action delete: Supprimer + no_last_completed_actions: "Aucune action achev\xC3\xA9e trouve" drag_action_title: "D\xC3\xA9placer sur une autre action pour la rendre d\xC3\xA9pendante de cette action" cannot_add_dependency_to_completed_todo: "Impossible d'ajouter cette action comme d\xC3\xA9pendance d'une action compl\xC3\xA9t\xC3\xA9e !" - no_last_completed_actions: "Aucune action achev\xC3\xA9e trouve" depends_on: "D\xC3\xA9pend de" tickler_items_due: one: "Un \xC3\xA9l\xC3\xA9ment du reporteur est arriv\xC3\xA9 \xC3\xA0 \xC3\xA9ch\xC3\xA9ance - rafraichir la page pour le voir." other: "%{count} \xC3\xA9l\xC3\xA9ments du reporteur sont arriv\xC3\xA9s \xC3\xA0 \xC3\xA9ch\xC3\xA9ance - rafraichir la page pour les voir." action_marked_complete: "L'action '%{description}' a \xC3\xA9t\xC3\xA9 marqu\xC3\xA9e comme %{completed}" - completed_today: - one: "Vous avez compl\xC3\xA9t\xC3\xA9 une action aujourd'hui" - other: "Vous avez compl\xC3\xA9t\xC3\xA9 %{count} action aujourd'hui" + completed_today: "otherVous avez compl\xC3\xA9t\xC3\xA9 %{count} action aujourd'huioneVous avez compl\xC3\xA9t\xC3\xA9 une action aujourd'hui" added_new_next_action_plural: "Nouvelles actions suivantes ajout\xC3\xA9es" new_related_todo_not_created_short: "n'a pas cr\xC3\xA9\xC3\xA9 la t\xC3\xA2che" completed_rest_of_week: "Compl\xC3\xA9t\xC3\xA9 dans le reste de cette semaine" + show_tomorrow: Afficher demain error_starring: "Impossible d'actionner l'\xC3\xA9toile de cette tache \\'%{description}\\'" calendar: get_in_ical_format: Obtenir ce calendrier au format iCal @@ -509,9 +521,7 @@ fr: no_actions_due_after_this_month: "Pas d'actions \xC3\xA0 r\xC3\xA9aliser apr\xC3\xA8s ce mois" no_actions_due_this_month: "Pas d'actions \xC3\xA0 terminer pour ce mois" due_this_month: "A r\xC3\xA9aliser avant la fin de %{month}" - show_tomorrow: Afficher demain - tagged_page_title: "TRACKS::Tagg\xC3\xA9 avec %{tag_name}'" - action_deferred: "L'action '%{description}' a \xC3\xA9t\xC3\xA9 report\xC3\xA9" + no_completed_recurring: "Il n'y a pas d'actions r\xC3\xA9currentes compl\xC3\xA9t\xC3\xA9es actuellement" recurrence: ends_on_date: Fini le %{date} every_work_day: "Chaque jour ouvr\xC3\xA9" @@ -520,11 +530,13 @@ fr: weekly_options: "Param\xC3\xA8tres pour les actions r\xC3\xA9currentes hebdomadaires" weekly: Toutes les semaines monthly_options: "Param\xC3\xA8tres pour les actions r\xC3\xA9currentes mensuelles" + daily_options: "Param\xC3\xA8tres des actions r\xC3\xA9currentes quotidiennes" monthly: Mensuellement starts_on: "D\xC3\xA9marre le" - daily_options: "Param\xC3\xA8tres des actions r\xC3\xA9currentes quotidiennes" daily: Quotidiennement + show_option_always: toujours pattern: + third: "troisi\xC3\xA8me" month_names: - - Janvier @@ -539,17 +551,20 @@ fr: - Octobre - Novembre - "D\xC3\xA9cembre" - third: "troisi\xC3\xA8me" every_n: tous les %{n} - every_xth_day_of_every_n_months: tous les %{x} %{day} tous les %{n_months} second: seconde + every_xth_day_of_every_n_months: tous les %{x} %{day} tous les %{n_months} on_day_n: le %{n}e jour weekly: Toutes les semaines from: de - every_day: chaque jour last: dernier - times: pour %{number} fois + every_day: chaque jour the_xth_day_of_month: le %{x} %{day} de %{month} + times: pour %{number} fois + first: premier + show: montrer + every_year_on: "chaque ann\xC3\xA9e le %{date}" + on_work_days: "les jours ouvr\xC3\xA9s" day_names: - Dimanche - Lundi @@ -558,43 +573,40 @@ fr: - Jeudi - Vendredi - Samedi - show: montrer - first: premier - every_year_on: "chaque ann\xC3\xA9e le %{date}" - on_work_days: "les jours ouvr\xC3\xA9s" fourth: "quatri\xC3\xA8me" due: "Ech\xC3\xA9ance" every_month: chaque mois until: jusqu'a - show_option_always: toujours yearly_every_x_day: Chaque %{month} %{day} recurrence_on_options: "Activer la r\xC3\xA9currence" daily_every_number_day: Tous les %{number} jour(s) - ends_on: Fini le show_options: "Montrer la t\xC3\xA2che" weekly_every_number_week: Returns every %{number} week on + ends_on: Fini le show_days_before: "%{days} jours avant la date d'\xC3\xA9ch\xC3\xA9ance de la t\xC3\xA2che" - yearly_every_xth_day: Chaque %{day} %{day_of_week} de %{month} from_tickler: "la date de la t\xC3\xA2che provient du reporteur (pas de date d\\'\xC3\xA9ch\xC3\xA9ance d\xC3\xA9finie)" no_end_date: Pas de date de fin day_x_on_every_x_month: Le %{day} tous les %{month} mois + yearly_every_xth_day: Chaque %{day} %{day_of_week} de %{month} yearly_options: "Param\xC3\xA8tres pour les actions r\xC3\xA9currentes annuelles" yearly: Tous les ans monthly_every_xth_day: Le %{day} %{day_of_week} tous les %{month} mois - no_completed_recurring: "Il n'y a pas d'actions r\xC3\xA9currentes compl\xC3\xA9t\xC3\xA9es actuellement" + action_deferred: "L'action '%{description}' a \xC3\xA9t\xC3\xA9 report\xC3\xA9" + tagged_page_title: "TRACKS::Tagg\xC3\xA9 avec %{tag_name}'" added_dependency: "%{dependency} ajout\xC3\xA9e comme d\xC3\xA9pendance" - no_deferred_actions: "Il n'y a pas d'actions report\xC3\xA9es actuellement" - all_completed_tagged_page_title: "TRACKS::Toutes les t\xC3\xA2ches accomplies par marquer %{tag_name}" completed_rest_of_month: "Compl\xC3\xA9t\xC3\xA9 dans le reste de ce mois-ci" + all_completed_tagged_page_title: "TRACKS::Toutes les t\xC3\xA2ches accomplies par marquer %{tag_name}" + no_deferred_actions: "Il n'y a pas d'actions report\xC3\xA9es actuellement" recurrence_completed: "Il n'y a pas d'action suivante apr\xC3\xA8s l'action r\xC3\xA9currente que vous venez de terminer. Fin de la r\xC3\xA9currence" - error_toggle_complete: "Impossible de marquer cette tache comme compl\xC3\xA9t\xC3\xA9e" - due: "Ech\xC3\xA9ance" + action_marked_complete_error: "L'action '%{description}' n'a PAS \xC3\xA9t\xC3\xA9 marqu\xC3\xA9e comme %{completed} a cause d'une erreur sur le serveur " no_actions_found: "Il n'y pas d'actions incompl\xC3\xA8tes actuellement." in_pending_state: en attente - action_marked_complete_error: "L'action '%{description}' n'a PAS \xC3\xA9t\xC3\xA9 marqu\xC3\xA9e comme %{completed} a cause d'une erreur sur le serveur " - depends_on_separate_with_commas: "D\xC3\xA9pend de (s\xC3\xA9parer avec des virgules)" + error_toggle_complete: "Impossible de marquer cette tache comme compl\xC3\xA9t\xC3\xA9e" + due: "Ech\xC3\xA9ance" + no_incomplete_actions: "Il n'y a pas d'actions incompl\xC3\xA8tes" action_saved_to_tickler: "Action sauvegard\xC3\xA9e dans le Reporteur" recurring_action_saved: "Action r\xC3\xA9currente sauv\xC3\xA9e" + depends_on_separate_with_commas: "D\xC3\xA9pend de (s\xC3\xA9parer avec des virgules)" completed_in_archive: one: "Il n'y a pas d'action compl\xC3\xA9t\xC3\xA9e dans l'archive" other: "Il y a %{count} actions compl\xC3\xA9t\xC3\xA9es dans l'archive" @@ -604,100 +616,126 @@ fr: due_date: "avec au plus la date d'\xC3\xA9ch\xC3\xA9ance %{due_date}" overdue: En retard add_new_recurring: "Ajouter une nouvelle action r\xC3\xA9currente" - no_incomplete_actions: "Il n'y a pas d'actions incompl\xC3\xA8tes" notes: delete_note_title: Supprimer la note '%{id}' delete_confirmation: Etes-vous sur de vouloir supprimer la note '%{id}' ? in_project: "Dans:" delete_item_title: "Supprimer l'\xC3\xA9l\xC3\xA9ment" + deleted_note: Supprimer la note '%{id}' note_link_title: Voir note %{id} show_note_title: Voir note - deleted_note: Supprimer la note '%{id}' edit_item_title: "Modifier l'\xC3\xA9l\xC3\xA9ment" note_location_link: "ln:" no_notes_available: "Il n'y a actuellement aucune note: ajouter des notes aux projets sur les pages individuelles des projets." note_header: Note %{id} delete_note_confirm: Etes-vous sur de vouloir supprimer la note '%{id}' ? + projects: + default_context_set: "D\xC3\xA9finir le contexte par d\xC3\xA9faut du projet \xC3\xA0 %{default_context}" + no_actions_in_project: "Il n'y pas d'action incompl\xC3\xA8tes pour ce projet" + deferred_actions: "Actions report\xC3\xA9es pour ce projet" + was_marked_hidden: "est cach\xC3\xA9" + edit_project_title: Editer le projet + default_tags_removed_notice: Supprimer les tags par defaut + page_title: "TRACKS::Projet: %{project}" + all_completed_tasks_title: "TRACKS::Tous les Actions Achev\xC3\xA9 en Projet '%{project_name}'" + hide_form: Cacher le formulaire + list_completed_projects: "TRACKS::Liste des projets achev\xC3\xA9s" + no_notes_attached: "Il n'y a actuellement aucune note attach\xC3\xA9e \xC3\xA0 ce projet" + to_new_project_page: "Aller \xC3\xA0 la page du nouveau projet" + show_form_title: "Cr\xC3\xA9er un nouveau projet" + deferred_actions_empty: "Il n'y a pas d'actions report\xC3\xA9es pour ce projet" + project_state: Le projet est %{state} + this_project: Ce projet + no_last_completed_projects: "Pas de projets termin\xC3\xA9s trouv\xC3\xA9s" + no_last_completed_recurring_todos: "Non termin\xC3\xA9 actions r\xC3\xA9p\xC3\xA9titives trouv\xC3\xA9es" + notes: Notes + todos_append: dans ce projet + list_reviews: TRACKS::Revue + notes_empty: Il n'y a pas de notes pour ce projet + no_projects: Il n'y a actuellement aucun projet + hide_form_title: Cacher le formulaire nouveau projet + delete_project: Supprimer projet + completed_actions_empty: "Il n'y a pas d'actions r\xC3\xA9alis\xC3\xA9es pour ce projet" + with_no_default_context: "sans contexte par d\xC3\xA9faut" + delete_project_confirmation: "Etes vous s\xC3\xBBr de vouloir supprimer le projet '%{name}' ?" + with_default_context: "avec '%{context_name}' comme contexte par d\xC3\xA9faut" + show_form: Ajouter un projet + actions_in_project_title: Actions pour ce projet + completed_projects: "Projets r\xC3\xA9alis\xC3\xA9s" + is_active: est actif + add_note: Ajouter une note + set_default_tags_notice: "D\xC3\xA9finir les tags par d\xC3\xA9faut du projet \xC3\xA0 %{default_tags}" + add_project: Ajouter projet + settings: "Param\xC3\xA8tres" + project_saved_status: "Projet sauvegard\xC3\xA9" + list_projects: TRACKS::Liste des Projets + with_default_tags: et avec '%{tags'} comme tags par defaut + completed_tasks_title: "TRACKS::Liste des actions men\xC3\xA9es \xC3\xA0 terme dans Projet '%{project_name}'" + hidden_projects: "Projets cach\xC3\xA9s" + delete_project_title: Supprimer le projet + default_context_removed: "Contexte par d\xC3\xA9faut supprim\xC3\xA9" + add_note_submit: Ajouter note + completed_actions: "Actions r\xC3\xA9alis\xC3\xA9es pour ce projet" + was_marked_complete: "est compl\xC3\xA9t\xC3\xA9" + no_default_context: Ce projet n'a pas de contexte par defaut + with_no_default_tags: "et sans tags par d\xC3\xA9faut" + default_context: "Le contexte par d\xC3\xA9faut pour ce projet est %{context}" + edit_project_settings: "Modifier les param\xC3\xA8tres du projet" + status_project_name_changed: "Le nom du projet a \xC3\xA9t\xC3\xA9 modifi\xC3\xA9" + state: Le projet est %{state} + active_projects: Projets actifs states: hidden_plural: "Cach\xC3\xA9s" + stalled: "Bloqu\xC3\xA9s" review_plural: !binary | RGF0w6ll - stalled: "Bloqu\xC3\xA9s" completed: "Complet\xC3\xA9" current: Up-to-date - completed_plural: "Complet\xC3\xA9s" review: !binary | RGF0w6ll + completed_plural: "Complet\xC3\xA9s" blocked: "Bloqu\xC3\xA9e" blocked_plural: "Bloqu\xC3\xA9e" stalled_plural: "Bloqu\xC3\xA9s" visible_plural: Visibles active_plural: Actifs visible: Visible - current_plural: Up-to-date hidden: !binary | Q2FjaMOp active: Actif - projects: - was_marked_hidden: "est cach\xC3\xA9" - edit_project_title: Editer le projet - default_tags_removed_notice: Supprimer les tags par defaut - default_context_set: "D\xC3\xA9finir le contexte par d\xC3\xA9faut du projet \xC3\xA0 %{default_context}" - no_actions_in_project: "Il n'y pas d'action incompl\xC3\xA8tes pour ce projet" - deferred_actions: "Actions report\xC3\xA9es pour ce projet" - all_completed_tasks_title: "TRACKS::Tous les Actions Achev\xC3\xA9 en Projet '%{project_name}'" - page_title: "TRACKS::Projet: %{project}" - hide_form: Cacher le formulaire - no_notes_attached: "Il n'y a actuellement aucune note attach\xC3\xA9e \xC3\xA0 ce projet" - show_form_title: "Cr\xC3\xA9er un nouveau projet" - deferred_actions_empty: "Il n'y a pas d'actions report\xC3\xA9es pour ce projet" - this_project: Ce projet - project_state: Le projet est %{state} - list_completed_projects: "TRACKS::Liste des projets achev\xC3\xA9s" - to_new_project_page: "Aller \xC3\xA0 la page du nouveau projet" - no_last_completed_recurring_todos: "Non termin\xC3\xA9 actions r\xC3\xA9p\xC3\xA9titives trouv\xC3\xA9es" - todos_append: dans ce projet - no_last_completed_projects: "Pas de projets termin\xC3\xA9s trouv\xC3\xA9s" - notes: Notes - notes_empty: Il n'y a pas de notes pour ce projet - no_projects: Il n'y a actuellement aucun projet - hide_form_title: Cacher le formulaire nouveau projet - list_reviews: TRACKS::Revue - delete_project: Supprimer projet - completed_actions_empty: "Il n'y a pas d'actions r\xC3\xA9alis\xC3\xA9es pour ce projet" - with_no_default_context: "sans contexte par d\xC3\xA9faut" - show_form: Ajouter un projet - actions_in_project_title: Actions pour ce projet - delete_project_confirmation: "Etes vous s\xC3\xBBr de vouloir supprimer le projet '%{name}' ?" - with_default_context: "avec '%{context_name}' comme contexte par d\xC3\xA9faut" - add_note: Ajouter une note - add_project: Ajouter projet - with_default_tags: et avec '%{tags'} comme tags par defaut - is_active: est actif - list_projects: TRACKS::Liste des Projets - settings: "Param\xC3\xA8tres" - completed_projects: "Projets r\xC3\xA9alis\xC3\xA9s" - set_default_tags_notice: "D\xC3\xA9finir les tags par d\xC3\xA9faut du projet \xC3\xA0 %{default_tags}" - project_saved_status: "Projet sauvegard\xC3\xA9" - delete_project_title: Supprimer le projet - hidden_projects: "Projets cach\xC3\xA9s" - completed_tasks_title: "TRACKS::Liste des actions men\xC3\xA9es \xC3\xA0 terme dans Projet '%{project_name}'" - was_marked_complete: "est compl\xC3\xA9t\xC3\xA9" - completed_actions: "Actions r\xC3\xA9alis\xC3\xA9es pour ce projet" - default_context_removed: "Contexte par d\xC3\xA9faut supprim\xC3\xA9" - add_note_submit: Ajouter note - edit_project_settings: "Modifier les param\xC3\xA8tres du projet" - status_project_name_changed: "Le nom du projet a \xC3\xA9t\xC3\xA9 modifi\xC3\xA9" - active_projects: Projets actifs - default_context: "Le contexte par d\xC3\xA9faut pour ce projet est %{context}" - state: Le projet est %{state} - no_default_context: Ce projet n'a pas de contexte par defaut - with_no_default_tags: "et sans tags par d\xC3\xA9faut" + current_plural: Up-to-date errors: user_unauthorized: "401 Non autoris\xC3\xA9: Administrateur seulement." + preferences: + open_id_url: Votre URL OpenID est + change_identity_url: "Modifier votre URL d'identit\xC3\xA9" + staleness_starts_after: "\"date de fraicher\" d\xC3\xA9pass\xC3\xA9e \xC3\xA0 pr\xC3\xA8s %{days} days" + page_title: "TRACKS::Pr\xC3\xA9f\xC3\xA9rences" + change_password: Modifier votre mot de passe + token_description: Jeton (pour flux et utilisation API) + title: "Vos pr\xC3\xA9f\xC3\xA9rences" + is_false: faux + show_number_completed: "Montrer %{number} items r\xC3\xA9alis\xC3\xA9s" + password_changed: "Votre mot de passe a \xC3\xA9t\xC3\xA9 chang\xC3\xA9, s'il vous pla\xC3\xAEt vous connecter \xC3\xA0 nouveau." + edit_preferences: "Editer les pr\xC3\xA9f\xC3\xA9rences" + page_title_edit: "TRACKS::Editer les pr\xC3\xA9f\xC3\xA9rences" + is_true: vrai + sms_context_none: Aucun + generate_new_token: "G\xC3\xA9n\xC3\xA9rer un nouveau jeton" + token_header: Votre jeton + authentication_header: Votre authentification + updated: "Pr\xC3\xA9f\xC3\xA9rences jour" + current_authentication_type: Votre type d'authentification est %{auth_type} + change_authentication_type: Modifier votre type d'authentification + generate_new_token_confirm: "Etes vous s\xC3\xBBr ? G\xC3\xA9n\xC3\xA9rer un nouveau jeton va remplacer le jeton existant et en interdire les utilisations externes." + tabs: + authentication: Authentification + tracks_behavior: Comportements Tracks + profile: Profil + date_and_time: Date et heure time: am: am formats: @@ -708,33 +746,6 @@ fr: month_day: "%B %d" long: "%B %d, %Y %H:%M" pm: pm - preferences: - change_identity_url: "Modifier votre URL d'identit\xC3\xA9" - open_id_url: Votre URL OpenID est - staleness_starts_after: "\"date de fraicher\" d\xC3\xA9pass\xC3\xA9e \xC3\xA0 pr\xC3\xA8s %{days} days" - page_title: "TRACKS::Pr\xC3\xA9f\xC3\xA9rences" - change_password: Modifier votre mot de passe - token_description: Jeton (pour flux et utilisation API) - title: "Vos pr\xC3\xA9f\xC3\xA9rences" - is_false: faux - show_number_completed: "Montrer %{number} items r\xC3\xA9alis\xC3\xA9s" - edit_preferences: "Editer les pr\xC3\xA9f\xC3\xA9rences" - page_title_edit: "TRACKS::Editer les pr\xC3\xA9f\xC3\xA9rences" - is_true: vrai - password_changed: "Votre mot de passe a \xC3\xA9t\xC3\xA9 chang\xC3\xA9, s'il vous pla\xC3\xAEt vous connecter \xC3\xA0 nouveau." - sms_context_none: Aucun - generate_new_token: "G\xC3\xA9n\xC3\xA9rer un nouveau jeton" - token_header: Votre jeton - authentication_header: Votre authentification - updated: "Pr\xC3\xA9f\xC3\xA9rences jour" - current_authentication_type: Votre type d'authentification est %{auth_type} - change_authentication_type: Modifier votre type d'authentification - generate_new_token_confirm: "Etes vous s\xC3\xBBr ? G\xC3\xA9n\xC3\xA9rer un nouveau jeton va remplacer le jeton existant et en interdire les utilisations externes." - tabs: - tracks_behavior: Comportements Tracks - authentication: Authentification - profile: Profil - date_and_time: Date et heure date: month_names: - @@ -821,8 +832,8 @@ fr: send_feedback: Envoyer un feedback sur %{version} shared: multiple_next_actions: Actions suivante multiples (une sur chaque ligne) - toggle_single: Ajouter action suivante make_actions_dependent: "Faire actions d\xC3\xA9pendantes les unes des autres" + toggle_single: Ajouter action suivante hide_form: Cacher le formulaire add_actions: Ajouter actions add_action: Ajouter action @@ -835,6 +846,30 @@ fr: add_context: Ajouter Contexte toggle_multi_title: Basculer formulaire action simple/multiple hide_action_form_title: Cacher le formulaire nouvelle action + feedlist: + choose_context: Choisir le contexte dont vous voulez un flux + actions_due_today: Actions devant se terminer aujourd'hui ou avant + ical_feed: Flux iCal + legend: "L\xC3\xA9gende" + all_contexts: Tous les contextes + rss_feed: Flux RSS + choose_project: Choisir le projet dont vous voulez un flux + all_projects: Tous les projets + project_needed: Il faut au moins un projet pour le flux + select_feed_for_project: Selectionner le flux pour ce projet + active_projects_wo_next: Projets actifs avec aucune action suivante + active_starred_actions: "Toutes les actions pr\xC3\xA9ferr\xC3\xA9es actives" + context_needed: Il faut au moins un contexte pour le flux + select_feed_for_context: Selectionner un flux pour ce contexte + projects_and_actions: Projets actifs et leurs actions + notice_incomplete_only: "NB: Les flux ne montrent que les actions incompl\xC3\xA8tes, sauf indication contraire" + actions_due_next_week: Actions devant se terminer dans les 7 prochains jours ou moins + actions_completed_last_week: "Actions r\xC3\xA9alis\xC3\xA9es dans les 7 derniers jours" + context_centric_actions: "Flux des actions dans un contexte sp\xC3\xA9cifique" + plain_text_feed: Flux texte + last_fixed_number: "Derni\xC3\xA8res %{number} actions" + all_actions: Toutes les actions + project_centric: "Flux des actions incompl\xC3\xA8tes d'un projet sp\xC3\xA9cifique" sidebar: list_name_active_contexts: Contextes actifs list_name_active_projects: Projets actifs @@ -842,66 +877,14 @@ fr: list_name_completed_projects: "Projets r\xC3\xA9alis\xC3\xA9s" list_name_hidden_projects: "Projets cach\xC3\xA9s" list_name_hidden_contexts: "Contextes cach\xC3\xA9s" - feedlist: - actions_due_today: Actions devant se terminer aujourd'hui ou avant - choose_context: Choisir le contexte dont vous voulez un flux - rss_feed: Flux RSS - legend: "L\xC3\xA9gende" - ical_feed: Flux iCal - all_contexts: Tous les contextes - all_projects: Tous les projets - choose_project: Choisir le projet dont vous voulez un flux - project_needed: Il faut au moins un projet pour le flux - select_feed_for_project: Selectionner le flux pour ce projet - active_projects_wo_next: Projets actifs avec aucune action suivante - active_starred_actions: "Toutes les actions pr\xC3\xA9ferr\xC3\xA9es actives" - select_feed_for_context: Selectionner un flux pour ce contexte - projects_and_actions: Projets actifs et leurs actions - context_needed: Il faut au moins un contexte pour le flux - actions_due_next_week: Actions devant se terminer dans les 7 prochains jours ou moins - notice_incomplete_only: "NB: Les flux ne montrent que les actions incompl\xC3\xA8tes, sauf indication contraire" - context_centric_actions: "Flux des actions dans un contexte sp\xC3\xA9cifique" - plain_text_feed: Flux texte - last_fixed_number: "Derni\xC3\xA8res %{number} actions" - all_actions: Toutes les actions - actions_completed_last_week: "Actions r\xC3\xA9alis\xC3\xA9es dans les 7 derniers jours" - project_centric: "Flux des actions incompl\xC3\xA8tes d'un projet sp\xC3\xA9cifique" - contexts: - delete_context_title: Supprimer contexte - all_completed_tasks_title: "TRACKS::Toutes les actions Achev\xC3\xA9 en le contexte '%{context_name}'" - hide_form: Cacher le formulaire - show_form_title: Ajouter un contexte - todos_append: dans ce contexte - delete_context_confirmation: "Etes vous s\xC3\xBBr de vouloir supprimer le contexte %{name}? Toutes les actions (r\xC3\xA9p\xC3\xA9titives) de ce contexte seront \xC3\xA9galement supprim\xC3\xA9es !" - delete_context: Supprimer contexte - edit_context: Modifier contexte - hide_form_title: Cacher le formulaire nouveau contexte - hidden_contexts: "Contextes cach\xC3\xA9s" - no_contexts_active: Actuellement, il n'y a pas de contextes actifs - context_hide: "Cach\xC3\xA9 de la premi\xC3\xA8re page ?" - show_form: "Cr\xC3\xA9er un nouveau contexte" - visible_contexts: Contextes visibles - save_status_message: "Contexte sauvegard\xC3\xA9" - add_context: Ajouter un contexte - update_status_message: "Le nom du contexte \xC3\xA0 \xC3\xA9t\xC3\xA9 modifi\xC3\xA9" - context_name: Nom du Contexte - status_active: Le Contexte est actif - completed_tasks_title: "TRACKS::actions Achev\xC3\xA9 en le contexte '%{context_name}'" - new_context_post: "'sera aussi cr\xC3\xA9\xC3\xA9. Etes-vous s\xC3\xBBr ?" - no_actions: "Actuellement, il n'y pas d'actions incompl\xC3\xA8tes dans ce contexte" - last_completed_in_context: dans ce contexte (dernier %{number}) - context_deleted: "Contexte \\'%{name}\\' supprim\xC3\xA9" - no_contexts_hidden: "Actuellement, il n'y a pas de contextes cach\xC3\xA9s" - new_context_pre: Nouveau contexte ' - status_hidden: "Le Contexte est cach\xC3\xA9" users: - successfully_deleted_user: "Utilisateur %{username} supprim\xC3\xA9 avec succ\xC3\xA8s" + openid_url_verified: "Vous avez v\xC3\xA9rifi\xC3\xA9 avec succ\xC3\xA8s votre identit\xC3\xA9 comme %{url} et d\xC3\xA9fini votre type authentification comme OpenID" auth_type_update_error: "Un probl\xC3\xA8me est survenu lors de la modification du type d'authentification : %{error_messages}" failed_to_delete_user: "La suppression de l'utilisateur {username} \xC3\xA0 \xC3\xA9chou\xC3\xA9" destroy_successful: "Utilisateur %{login} supprim\xC3\xA9 avec succ\xC3\xA8s" - total_contexts: Total contextes first_user_heading: "Bienvenu \xC3\xA0 TRAKS. Pour commencer, veuillez cr\xC3\xA9er un compte administrateur" - openid_url_verified: "Vous avez v\xC3\xA9rifi\xC3\xA9 avec succ\xC3\xA8s votre identit\xC3\xA9 comme %{url} et d\xC3\xA9fini votre type authentification comme OpenID" + total_contexts: Total contextes + successfully_deleted_user: "Utilisateur %{username} supprim\xC3\xA9 avec succ\xC3\xA8s" signup_successful: "Utilisateur %{username} cr\xC3\xA9\xC3\xA9 avec succ\xC3\xA8s." new_token_generated: "Nouveau token g\xC3\xA9n\xC3\xA9r\xC3\xA9 avec succ\xC3\xA9s" total_projects: Total projets @@ -909,23 +892,23 @@ fr: no_signups_title: TRACKS::Pas de signups user_created: "Utilisateur cr\xC3\xA9\xC3\xA9." account_signup: "Cr\xC3\xA9er un compte" - password_updated: "Mot de passe modifi\xC3\xA9." manage_users: "G\xC3\xA9rer utilisateurs" - new_user_heading: "Cr\xC3\xA9er un nouvel utilisateur:" + password_updated: "Mot de passe modifi\xC3\xA9." auth_type_updated: "Type d'authentification modifi\xC3\xA9." total_actions: Total actions desired_login: "Login souhait\xC3\xA9" signup: "Cr\xC3\xA9ation" confirm_password: Confirmer le mot de passe - change_password_prompt: Entrer votre nouveau mot de passe dans les champs ci-dessous et cliquer sur 'Modifier mot de passe' pour remplacer votre mot de passe actuel par le nouveau. + new_user_heading: "Cr\xC3\xA9er un nouvel utilisateur:" password_confirmation_label: Confirmer mot de passe destroy_error: Une erreur s'est produite lors de la suppression de l'utilisateur %{login} choose_password: Choisir le mot de passe change_password_title: TRACKS::Modifier mot de passe change_auth_type_title: TRACKS::Modifier le type d'authentification + change_password_prompt: Entrer votre nouveau mot de passe dans les champs ci-dessous et cliquer sur 'Modifier mot de passe' pour remplacer votre mot de passe actuel par le nouveau. + new_password_label: Nouveau mot de passe register_with_cas: Avec votre nom d'utilisateur CAS label_auth_type: Type d'authentification - new_password_label: Nouveau mot de passe total_users_count: Vous avez %{count} utilisateurs new_user_title: "TRACKS::Cr\xC3\xA9er un administrateur" destroy_user: Supprimer utilisateur @@ -936,18 +919,46 @@ fr: openid_ok_pref_failed: "Vous avez v\xC3\xA9rifi\xC3\xA9 avec succ\xC3\xA8s votre identit\xC3\xA9 comme %{url} mais un probl\xC3\xA8me est survenu lors de la sauvegarde de vos pr\xC3\xA9f\xC3\xA9rences d'authentification." auth_change_submit: Modifier le type d'authenfication change_authentication_type: Modifier le type d'authentification - select_authentication_type: "S\xC3\xA9lectionner votre nouveau type d'authentification et cliquer sur 'Modifier type d'authenfication' pour remplacer les param\xC3\xA8tres actuels." total_notes: Total notes + select_authentication_type: "S\xC3\xA9lectionner votre nouveau type d'authentification et cliquer sur 'Modifier type d'authenfication' pour remplacer les param\xC3\xA8tres actuels." + contexts: + delete_context_title: Supprimer contexte + all_completed_tasks_title: "TRACKS::Toutes les actions Achev\xC3\xA9 en le contexte '%{context_name}'" + hide_form: Cacher le formulaire + show_form_title: Ajouter un contexte + delete_context_confirmation: "Etes vous s\xC3\xBBr de vouloir supprimer le contexte %{name}? Toutes les actions (r\xC3\xA9p\xC3\xA9titives) de ce contexte seront \xC3\xA9galement supprim\xC3\xA9es !" + todos_append: dans ce contexte + delete_context: Supprimer contexte + edit_context: Modifier contexte + hide_form_title: Cacher le formulaire nouveau contexte + hidden_contexts: "Contextes cach\xC3\xA9s" + no_contexts_active: Actuellement, il n'y a pas de contextes actifs + context_hide: "Cach\xC3\xA9 de la premi\xC3\xA8re page ?" + add_context: Ajouter un contexte + show_form: "Cr\xC3\xA9er un nouveau contexte" + save_status_message: "Contexte sauvegard\xC3\xA9" + visible_contexts: Contextes visibles + update_status_message: "Le nom du contexte \xC3\xA0 \xC3\xA9t\xC3\xA9 modifi\xC3\xA9" + context_name: Nom du Contexte + status_active: Le Contexte est actif + completed_tasks_title: "TRACKS::actions Achev\xC3\xA9 en le contexte '%{context_name}'" + new_context_post: "'sera aussi cr\xC3\xA9\xC3\xA9. Etes-vous s\xC3\xBBr ?" + new_context_pre: Nouveau contexte ' + no_actions: "Actuellement, il n'y pas d'actions incompl\xC3\xA8tes dans ce contexte" + last_completed_in_context: dans ce contexte (dernier %{number}) + context_deleted: "Contexte \\'%{name}\\' supprim\xC3\xA9" + no_contexts_hidden: "Actuellement, il n'y a pas de contextes cach\xC3\xA9s" + status_hidden: "Le Contexte est cach\xC3\xA9" login: - login_cas: Aller au CAS openid_identity_url_not_found: "D\xC3\xA9sol\xC3\xA9, aucun utilisateur avec cette identit\xC3\xA9 URL n'existe (%{identity_url})" user_no_expiry: "Rester connect\xC3\xA9" sign_in: Se connecter - please_login: Veuillez vous connecter pour utiliser Tracks - cas_logged_in_greeting: "Bonjour, %{username}! Vous \xC3\xAAtes authentifi\xC3\xA9." + login_cas: Aller au CAS cas_no_user_found: Bonjour, %{username}! Vous n'avez pas de compte sur Tracks. cas_login: Login CAS successful_with_session_info: "La connexion \xC3\xA0 r\xC3\xA9ussi:" + please_login: Veuillez vous connecter pour utiliser Tracks + cas_logged_in_greeting: "Bonjour, %{username}! Vous \xC3\xAAtes authentifi\xC3\xA9." cas_username_not_found: "D\xC3\xA9sol\xC3\xA9, aucun utilisateur avec ce nom CAS n'existe (%{username})" cas_create_account: "Si vous voulez vous inscrire aller \xC3\xA0 %{signup_link}" mobile_use_openid: ... ou ce connecter avec un OpenID @@ -959,10 +970,10 @@ fr: session_time_out: "La session \xC3\xA0 expir\xC3\xA9. Merci de %{link}" session_will_expire: "la session expire apr\xC3\xA8s %{hours} heure(s) d'inactivit\xC3\xA9." login_standard: "retourner \xC3\xA0 l'\xC3\xA9cran de connexion standard" - log_in_again: Se reconnecter - logged_out: "Vous avez \xC3\xA9t\xC3\xA9 d\xC3\xA9connect\xC3\xA9 de Tracks." login_with_openid: se connecter avec un OpenID unsuccessful: "La connexion \xC3\xA0 \xC3\xA9chou\xC3\xA9." + log_in_again: Se reconnecter + logged_out: "Vous avez \xC3\xA9t\xC3\xA9 d\xC3\xA9connect\xC3\xA9 de Tracks." datetime: prompts: minute: Minute @@ -1013,7 +1024,7 @@ fr: search: contexts_matching_query: "Contextes correspondant \xC3\xA0 la requ\xC3\xAAte" tags_matching_query: "Tags correspondant \xC3\xA0 la requ\xC3\xAAte" + no_results: "Aucun r\xC3\xA9sultat \xC3\xA0 votre recherche." todos_matching_query: "AFaire (todos) correspondant \xC3\xA0 la requ\xC3\xAAte" projects_matching_query: "Projets correspondant \xC3\xA0 la requ\xC3\xAAte" notes_matching_query: "Notes correspondant \xC3\xA0 la requ\xC3\xAAte" - no_results: "Aucun r\xC3\xA9sultat \xC3\xA0 votre recherche." diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 06c616e1..9da89e90 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -1,5 +1,54 @@ --- nl: + layouts: + toggle_contexts_title: Maak ingeklapte contexten (on)zichtbaar + toggle_contexts: Toggle ingeklapte contexten + toggle_notes: Toggle notities + next_actions_rss_feed: RSS-feed van de acties + toggle_notes_title: Toggle alle notities + mobile_navigation: + new_action: Nieuwe actie + logout: Afmelden + feeds: Feeds + starred: Ster + projects: Projecten + tickler: Tickler + contexts: Contexten + home: Start + navigation: + manage_users_title: Toevoegen of verwijderen gebruikers + recurring_todos: Terugkerende acties + api_docs: REST API Docs + help: "?" + feeds: Feeds + starred: Ster + stats: Statistieken + notes_title: Toon alle notities + manage_users: Beheren gebruikers + tickler_title: Tickler + admin: Admin + preferences: Voorkeuren + integrations_: Integreer Tracks + export_title: Import en export van gegevens + calendar_title: Kalender met acties met deadline + feeds_title: Zie een lijst met beschikbare feeds + stats_title: Zie je statistieken + tickler: Tickler + home_title: Start + starred_title: Zie je ster acties + recurring_todos_title: Beheren terugkerende acties + completed_tasks: Gereed + organize: Organiseer + view: Bekijk + completed_tasks_title: Afgerond + home: Start + export: Export + contexts_title: Contexten + preferences_title: Toon mijn voorkeuren + search: Zoeken in alle items + review_title: Evaluatie uitvoeren + projects_title: Projecten + calendar: Agenda number: format: separator: "," @@ -23,58 +72,9 @@ nl: separator: "," delimiter: . - layouts: - toggle_contexts_title: Maak ingeklapte contexten (on)zichtbaar - toggle_notes: Toggle notities - toggle_contexts: Toggle ingeklapte contexten - next_actions_rss_feed: RSS-feed van de acties - toggle_notes_title: Toggle alle notities - mobile_navigation: - feeds: Feeds - new_action: Nieuwe actie - logout: Afmelden - starred: Ster - projects: Projecten - tickler: Tickler - contexts: Contexten - home: Start - navigation: - manage_users_title: Toevoegen of verwijderen gebruikers - api_docs: REST API Docs - recurring_todos: Terugkerende acties - feeds: Feeds - help: "?" - stats: Statistieken - starred: Ster - notes_title: Toon alle notities - manage_users: Beheren gebruikers - tickler_title: Tickler - admin: Admin - integrations_: Integreer Tracks - export_title: Import en export van gegevens - preferences: Voorkeuren - calendar_title: Kalender met acties met deadline - feeds_title: Zie een lijst met beschikbare feeds - completed_tasks: Gereed - stats_title: Zie je statistieken - home_title: Start - tickler: Tickler - starred_title: Zie je ster acties - recurring_todos_title: Beheren terugkerende acties - view: Bekijk - organize: Organiseer - completed_tasks_title: Afgerond - home: Start - contexts_title: Contexten - export: Export - preferences_title: Toon mijn voorkeuren - calendar: Agenda - review_title: Evaluatie uitvoeren - search: Zoeken in alle items - projects_title: Projecten common: - back: Terug recurring_todos: Herhalende acties + back: Terug actions: Acties third: Derde add: Toevoegen @@ -82,54 +82,65 @@ nl: go_back: Ga terug logout: Log uit second: Tweede - show_all: Toon alle none: Geen week: week optional: optioneel + deferred: uitgestelde + show_all: Toon alle cancel: Annuleer month: maand - actions_midsentence: acties + actions_midsentence: + one: actie + other: acties + zero: acties server_error: Een fout heeft op de server plaatsgevonden forum: Forum notes: Notities projects: Projecten last: Laatste - action: Actie review: Evaluatie + action: Actie + days_midsentence: + one: dag + other: dagen + zero: dagen project: Project - days_midsentence: dagen contribute: Bijdragen ok: Ok website: Website first: Eerste + note: + one: 1 notitie + other: "%{count} notities" + zero: geen notities numbered_step: Stap %{number} - errors_with_fields: Er waren problemen met de volgende velden create: Maken sort: by_task_count_title: Sorteer op aantal acties by_task_count_title_confirm: Weet u zeker dat u deze op aantal acties wilt sorteren? Dat zal de huidige sorteervolgorde aanpassen. alphabetically: Alfabetisch - alphabetically_title: Sorteer projecten alfabetisch sort: Sorteer + alphabetically_title: Sorteer projecten alfabetisch alphabetically_confirm: Weet u zeker dat u deze projecten alfabetisch wilt sorteren? Dat zal de huidige sorteervolgorde aanpassen. by_task_count: Op aantal acties - months: maanden - description: Beschrijving todo: actie + months: maanden + errors_with_fields: Er waren problemen met de volgende velden + description: Beschrijving next: Volgende fourth: Vierde + drag_handle: SLEEP context: Context contexts: Contexten - drag_handle: SLEEP + bugs: Fouten update: Bijwerken forth: Vierde weeks: weken wiki: Wiki - bugs: Fouten - ajaxError: Er is een fout opgetreden bij het ophalen van gegevens van de server - not_available_abbr: n/b email: E-mail + ajaxError: Er is een fout opgetreden bij het ophalen van gegevens van de server search: Zoeken + not_available_abbr: n/b integrations: opensearch_description: Zoek in Tracks applescript_next_action_prompt: "Omschrijving van de actie:" @@ -147,38 +158,38 @@ nl: created_at: Gemaakt op updated_at: Bijgewerkt op todo: - predecessors: Afhankelijkheden show_from: Tonen vanaf + predecessors: Afhankelijkheden notes: Notities tags: Labels project: Project description: Beschrijving context: Context due: Deadline - user: - last_name: Achternaam - first_name: Voornaam preference: show_hidden_projects_in_sidebar: Toon verborgen projecten in sidebar show_hidden_contexts_in_sidebar: Toon verborgen contexten in sidebar date_format: Datum formaat - verbose_action_descriptors: Context en project uitschrijven in actielijst sms_context: Standaard context voor email - staleness_starts: Begin van markeren openstaande actie + verbose_action_descriptors: Context en project uitschrijven in actielijst mobile_todos_per_page: Acties per pagina (mobiel) - title_date_format: Datum formaat in titel + staleness_starts: Begin van markeren openstaande actie show_number_completed: Aantal te tonen afgeronde acties + title_date_format: Datum formaat in titel refresh: Ververs interval (in minuten) week_starts: Week start op last_name: Achternaam - due_style: Deadline stijl locale: Taal + due_style: Deadline stijl time_zone: Tijdzone - show_project_on_todo_done: Ga naar project pagina wanneer actie gereed is sms_email: Van email - first_name: Voornaam + show_project_on_todo_done: Ga naar project pagina wanneer actie gereed is show_completed_projects_in_sidebar: Toon afgeronde projecten in sidebar + first_name: Voornaam review_period: Project evaluatie interval + user: + last_name: Achternaam + first_name: Voornaam errors: models: project: @@ -208,13 +219,13 @@ nl: taken: is al gepakt inclusion: is niet opgenomen in de lijst not_a_number: is niet een getal + full_messages: + format: "%{attribute} %{message}" template: body: Er waren problemen met de volgende velden header: one: 1 fout voorkomt het kunnen bewaren van deze %{model} other: "%{count} fouten voorkomen dat dit %{model} bewaard kan worden" - full_messages: - format: "%{attribute} %{message}" data: import_successful: De import was succesvol import_errors: Er hebben zich fouten voorgedaan bij de import @@ -224,21 +235,21 @@ nl: feed_description: Een overzicht van alle projecten voor %{username} todo: error_date_must_be_future: moet een datum in de toekomst zijn - user: - error_context_not_associated: Context %{context} niet geassocieerd met gebruikers %{user}. - error_project_not_associated: Project %{project} niet geassocieerd met gebruikers %{user}. preference: due_on: Deadline op %{date} due_in: Deadline over %{days} dagen due_styles: - Deadline over ____ dagen - Deadline op ____ + user: + error_context_not_associated: Context %{context} niet geassocieerd met gebruikers %{user}. + error_project_not_associated: Project %{project} niet geassocieerd met gebruikers %{user}. stats: - tag_cloud_title: Tag Cloud voor alle acties totals_hidden_context_count: en %{count} zijn verborgen contexten. actions_avg_created: In de afgelopen 12 maanden heeft u gemiddeld%{count} acties aangemaakt actions_min_max_completion_days: De max-/minimum dagen tot voltooiing is %{min}/%{max}. totals_actions_completed: "%{count} van deze zijn voltooid." + tag_cloud_title: Tag Cloud voor alle acties actions_actions_avg_created_30days: In de afgelopen 30 dagen heeft u gemiddeld %{count} acties gemaakt actions_avg_completed: en voltooide een gemiddelde van %{count} acties per maand. top5_visible_contexts_with_incomplete_actions: Top 5 zichtbare contexten met onvolledige acties @@ -254,11 +265,11 @@ nl: weeks: Looptijd van een actie (weken). Klik op een balk voor meer info totals_action_count: u heeft een totaal van %{count} acties tag_cloud_90days_title: Tag cloud met acties in afgelopen 90 dagen + actions_avg_completion_time: Van al uw afgeronde acties, de gemiddelde tijd dat dit in beslag nam is %{count} dagen. tod30: Tijd van de dag (laatste 30 dagen) tags: Tags projects: Projecten - actions_avg_completion_time: Van al uw afgeronde acties, de gemiddelde tijd dat dit in beslag nam is %{count} dagen. - actions_lastyear_title: Acties in de afgelopen 12 maanden + totals_completed_project_count: en %{count} zijn afgeronde projecten. labels: month_avg_completed: "%{months} gem afgerond per maand" completed: Afgerond @@ -267,8 +278,8 @@ nl: avg_completed: Gem afgerond created: Gemaakt actions_selected_from_week: Gekozen acties van week - totals_completed_project_count: en %{count} zijn afgeronde projecten. actions_day_of_week_title: Dag van de week (alle acties) + actions_lastyear_title: Acties in de afgelopen 12 maanden open_per_week: Active (zichtbare en verborgen) volgende acties per week action_selection_title: "TRACKS:: Actie selectie" totals_project_count: U heeft %{count} projecten. @@ -291,16 +302,16 @@ nl: actions_last_year_legend: number_of_actions: Aantal acties months_ago: Maanden geleden - top10_projects: Top 10 projecten top5_contexts: Top 5 contexten - click_to_return: Klik %{link} om terug te keren naar de statistieken pagina. - totals: Totalen + top10_projects: Top 10 projecten contexts: Contexten + totals: Totalen + click_to_return: Klik %{link} om terug te keren naar de statistieken pagina. tag_cloud_90days_description: Deze tag cloud bevat tags van acties die zijn gemaakt of voltooid in de afgelopen 90 dagen. totals_visible_context_count: Van deze zijn %{count} zichtbare contexten - actions_min_completion_time: De minimale tijd tot afronding is %{time}. top10_projects_30days: Top 10 project in de laatste 30 dagen running_time_all: Huidige looptijd van alle onvolledige acties + actions_min_completion_time: De minimale tijd tot afronding is %{time}. action_completion_time_title: Doorlooptijd (alle voltooide acties) click_to_show_actions_from_week: Klik %{link} om de acties van week %{week} en verder te zien. top10_longrunning: Top 10 langstlopende projecten @@ -312,14 +323,14 @@ nl: day_of_week: Dag van de week totals_first_action: Sinds uw eerste actie op %{date} tag_cloud_description: Deze tag cloud bevat tags van alle acties (afgerond, niet voltooid, zichtbaar en / of verborgen) + spread_of_actions_for_all_context: Verdeling van acties voor alle contexten click_to_update_actions: Klik op een balk in de grafiek op de acties hieronder aan te passen. click_to_return_link: hier - spread_of_actions_for_all_context: Verdeling van acties voor alle contexten more_stats_will_appear: Meer statistieken zullen hier verschijnen zodra u acties hebt toegevoegd. actions_avg_completed_30days: en voltooide een gemiddelde van %{count} acties per dag. + index_title: TRACKS::Statistiek actions_30days_title: Acties in de afgelopen 30 dagen no_tags_available: geen tags beschikbaar - index_title: TRACKS::Statistiek actions_dow_30days_title: Dag van de week (laatste 30 dagen) actions_day_of_week_legend: number_of_actions: Aantal acties @@ -335,19 +346,19 @@ nl: running_time: Looptijd van een actie (weken). Klik op een balk voor meer info percentage: Percentage other_actions_label: (anderen) - time_of_day: Tijd van de dag (alle acties) totals_hidden_project_count: "%{count} zijn verborgen" + time_of_day: Tijd van de dag (alle acties) todos: - completed_actions: Voltooide acties + recurring_action_deleted: Actie werd verwijderd. Omdat deze actie herhalend is. werd een nieuwe actie toegevoegd show_from: Toon vanaf error_starring_recurring: Kon niet de ster van deze terugkerende actie niet omzetten \'%{description}\' - recurring_action_deleted: Actie werd verwijderd. Omdat deze actie herhalend is. werd een nieuwe actie toegevoegd - completed_rest_of_previous_month: Afgerond in de rest van de vorige maand - completed_recurring: Afgesloten terugkerende todos + completed_actions: Voltooide acties added_new_next_action: Nieuwe actie toegevoegd + completed_recurring: Afgesloten terugkerende todos + completed_rest_of_previous_month: Afgerond in de rest van de vorige maand blocked_by: Geblokkeerd door %{predecessors} - completed_recurrence_completed: Er is geen actie na de terugkerende actie die u new verwijderd heeft. De herhaling is voltooid star_action: Markeer deze actie met een ster + completed_recurrence_completed: Er is geen actie na de terugkerende actie die u new verwijderd heeft. De herhaling is voltooid defer_date_after_due_date: Uitsteldatum is na de vervaldag. Gelieve vervaldag bewerken alvorens uitsteldatum aan te passen. unable_to_add_dependency: Niet in staat om de afhankelijkheid toe te voegen done: Voltooid? @@ -358,16 +369,16 @@ nl: no_hidden_actions: Momenteel zijn er geen verborgen acties gevonden edit_action_with_description: Bewerk de actie '%{description}' action_due_on: (deadline actie op %{date}) + list_incomplete_next_actions: Toon onvoltooide acties archived_tasks_title: "TRACKS:: Gearchiveerde voltooide taken" remove_dependency: Verwijder afhankelijkheid (zal niet de actie zelf verwijderen) - list_incomplete_next_actions: Toon onvoltooide acties - tags: Tags (gescheiden door komma's) action_deleted_success: Actie succesvol verwijderd - mobile_todos_page_title: Alle acties - new_related_todo_created: Een nieuwe actie is toegevoegd, die behoort bij deze terugkerende todo - context_changed: Context veranderd in '%{name}' - add_another_dependency: Nog een afhankelijkheid toevoegen + tags: Tags (gescheiden door komma's) delete_recurring_action_title: Verwijder de terugkerende actie + context_changed: Context veranderd in '%{name}' + new_related_todo_created: Een nieuwe actie is toegevoegd, die behoort bij deze terugkerende todo + mobile_todos_page_title: Alle acties + add_another_dependency: Nog een afhankelijkheid toevoegen removed_predecessor: "'%{successor}' is verwijderd als afhankelijkheid van '%{predecessor}'." recurring_actions_title: TRACKS::Terugkerende acties next_action_needed: U dient ten minste een actie in te vullen @@ -377,40 +388,41 @@ nl: edit_action: Actie bewerken added_new_context: Nieuwe context toegevoegd next_actions_description: "Filter:" + list_incomplete_next_actions_with_limit: Toont de laatste %{count} onvoltooide acties + set_to_pending: "'%{task}' als wachtend ingesteld" + added_new_project: Nieuw project toegevoegd next_actions_title_additions: completed: acties voltooid due_today: deadline vandaag due_within_a_week: deadline binnen een week - list_incomplete_next_actions_with_limit: Toont de laatste %{count} onvoltooide acties - set_to_pending: "'%{task}' als wachtend ingesteld" - added_new_project: Nieuw project toegevoegd older_completed_items: Oudere voltooide items - error_deleting_item: Er is een fout opgetreden bij het verwijderen van het item '%{description}' - edit_recurring_todo: Bewerk herhalende actie - append_in_this_project: in dit project - task_list_title: TRACKS::Toon acties no_actions_due_this_week: Geen acties met deadline in rest van deze week + all_completed_here: hier + append_in_this_project: in dit project + edit_recurring_todo: Bewerk herhalende actie + error_deleting_item: Er is een fout opgetreden bij het verwijderen van het item '%{description}' + task_list_title: TRACKS::Toon acties no_recurring_todos: Momenteel zijn er geen terugkerende acties error_completing_todo: Er was een fout bij het voltooien / activeren van de terugkerende actie '%{description}' recurring_pattern_removed: Het herhalingspatroon is verwijderd van %{count} convert_to_project: Maak project no_deferred_pending_actions: Momenteel zijn er geen uitgestelde of wachtende acties - completed_last_day: Voltooid in de laatste 24 uur delete_recurring_action_confirm: Weet u zeker dat u wilt de terugkerende actie '%{description}' wilt verwijderen? - show_in_days: Toon over %{days} dagen + completed_last_day: Voltooid in de laatste 24 uur + feed_title_in_context: in context '%{context}' no_project: -- Geen project -- + show_in_days: Toon over %{days} dagen error_saving_recurring: Er is een fout opgetreden het opslaan van de terugkerende actie '%{description}' completed_more_than_x_days_ago: Voltooid meer dan %{count} dagen geleden - all_completed: Alle afgeronde acties - feed_title_in_context: in context '%{context}' new_related_todo_created_short: een nieuwe actie gemaakt + all_completed: Alle afgeronde acties edit: Bewerken + completed_actions_with: Afgeronde acties met de tag %{tag_name} older_than_days: Ouder dan %{count} dagen completed_tagged_page_title: "TRACKS:: Afgeronde acties met tag %{tag_name}" pending: Wachtend - completed_actions_with: Afgeronde acties met de tag %{tag_name} - deleted_success: De actie werd met succes verwijderd. completed_tasks_title: TRACKS::Voltooide taken + deleted_success: De actie werd met succes verwijderd. feed_title_in_project: In het project '%{project}' clear_due_date: Maak deadline leeg error_removing_dependency: Er is een fout opgetreden het verwijderen van de afhankelijke actie @@ -421,20 +433,21 @@ nl: deferred_actions_with: Uitgestelde acties met de tag '%{tag_name}' confirm_delete: Weet u zeker dat u de actie '%{description}' wilt verwijderen? recurring_deleted_success: De recurrente actie is succesvol verwijderd. - clear_show_from_date: Maak de datum Tonen Vanaf leeg + no_completed_actions_with: Geen voltooide acties met de tag '%{tag_name}' next_actions_title: Tracks - Acties next_action_description: Actie beschrijving deferred_tasks_title: TRACKS::Tickler - no_completed_actions_with: Geen voltooide acties met de tag '%{tag_name}' - unresolved_dependency: De waarde die u ingevoerd heeft in het afhankelijkheden veld is niet herleidbaar naar een bestaande actie. Deze waarde wordt niet bewaard met de rest van de actie. Doorgaan? - calendar_page_title: TRACKS::Agenda + clear_show_from_date: Maak de datum Tonen Vanaf leeg in_hidden_state: in verborgen toestand - show_today: Toon vandaag + see_all_completed: Je kan alle afgeronde acties %{link} zien + calendar_page_title: TRACKS::Agenda + unresolved_dependency: De waarde die u ingevoerd heeft in het afhankelijkheden veld is niet herleidbaar naar een bestaande actie. Deze waarde wordt niet bewaard met de rest van de actie. Doorgaan? no_actions_found_title: Geen acties gevonden + show_today: Toon vandaag next_actions_due_date: overdue_by: Over deadline met %{days} dag - due_today: Deadline vandaag due_in_x_days: Deadline over %{days} dagen + due_today: Deadline vandaag overdue_by_plural: Over deadline met %{days} dagen due_tomorrow: Deadline morgen completed_last_x_days: Voltooid in de laatste %{count} dagen @@ -451,13 +464,13 @@ nl: feeds: completed: "Voltooid: %{date}" due: "Deadline: %{date}" - delete_action: Verwijder actie - error_deleting_recurring: Er is een fout opgetreden bij het verwijderen van het item \'%{description}\' recurring_todos: Terugkerende acties + error_deleting_recurring: Er is een fout opgetreden bij het verwijderen van het item \'%{description}\' + delete_action: Verwijder actie delete: Verwijder + no_last_completed_actions: Geen afgeronde acties gevonden drag_action_title: Sleep naar een andere actie om deze afhankelijk te maken van die actie cannot_add_dependency_to_completed_todo: Kan deze actie niet als een afhankelijkheid van een voltooide actie toevoegen! - no_last_completed_actions: Geen afgeronde acties gevonden depends_on: Hangt af van tickler_items_due: one: Een tickler item wordt nu zichtbaar - vernieuw de pagina om het te zien. @@ -467,6 +480,7 @@ nl: added_new_next_action_plural: Nieuwe acties toegevoegd new_related_todo_not_created_short: een nieuwe actie is niet gemaakt completed_rest_of_week: Afgerond in de rest van deze week + show_tomorrow: Toon morgen error_starring: Kon niet de ster van deze actie niet omzetten \'%{description}\' calendar: get_in_ical_format: Ontvang deze agenda in iCal-formaat @@ -479,9 +493,7 @@ nl: no_actions_due_after_this_month: Geen acties met deadline na deze maand no_actions_due_this_month: Geen acties met deadline in de rest van deze maand due_this_month: Deadline in rest van %{month} - show_tomorrow: Toon morgen - tagged_page_title: TRACKS::Tagged met '%{tag_name}' - action_deferred: De actie '%{description}' is uitgesteld + no_completed_recurring: Momenteel zijn er geen voltooide terugkerende acties recurrence: ends_on_date: Eindigt op %{date} every_work_day: Elke werkdag @@ -490,11 +502,13 @@ nl: weekly_options: Instellingen voor de wekelijkse terugkerende acties weekly: Wekelijks monthly_options: Instellingen voor maandelijks terugkerende acties + daily_options: Instellingen voor dagelijks terugkerende acties monthly: Maandelijks starts_on: Begint op - daily_options: Instellingen voor dagelijks terugkerende acties daily: Dagelijks + show_option_always: altijd pattern: + third: derde month_names: - - januari @@ -509,17 +523,20 @@ nl: - oktober - november - december - third: derde every_n: elke %{n} - every_xth_day_of_every_n_months: elke %{x} %{day} van elke %{n_months} second: tweede + every_xth_day_of_every_n_months: elke %{x} %{day} van elke %{n_months} on_day_n: op dag %{n} weekly: wekelijks from: vanaf - every_day: elke dag last: laatste - times: voor %{number} keer + every_day: elke dag the_xth_day_of_month: de %{x} %{day} van %{month} + times: voor %{number} keer + first: eerste + show: Tonen + every_year_on: elk jaar op %{date} + on_work_days: op werkdagen day_names: - zondag - maandag @@ -528,43 +545,40 @@ nl: - donderdag - vrijdag - zaterdag - show: Tonen - first: eerste - every_year_on: elk jaar op %{date} - on_work_days: op werkdagen fourth: vierde due: Deadline every_month: elke maand until: tot - show_option_always: altijd yearly_every_x_day: Elke %{month} %{day} recurrence_on_options: Stel herhaling in op daily_every_number_day: Elke %{number} dag(en) - ends_on: Eindigt op show_options: Toon de actie weekly_every_number_week: Herhaalt elke %{number} weken op + ends_on: Eindigt op show_days_before: "%{days} dagen v\xC3\xB3\xC3\xB3r de deadline van actie" - yearly_every_xth_day: De %{day} %{day_of_week} van %{month} from_tickler: de datum dat de actie uit de tickler komt (geen deadline ingesteld) no_end_date: Geen einddatum day_x_on_every_x_month: Dag %{day} op elke %{month} maand + yearly_every_xth_day: De %{day} %{day_of_week} van %{month} yearly_options: Instellingen voor jaarlijks terugkerende acties yearly: Jaarlijks monthly_every_xth_day: De %{day} %{day_of_week} van elke %{month} maand - no_completed_recurring: Momenteel zijn er geen voltooide terugkerende acties + action_deferred: De actie '%{description}' is uitgesteld + tagged_page_title: TRACKS::Tagged met '%{tag_name}' added_dependency: "%{dependency} als afhankelijkheid toegevoegd." - no_deferred_actions: Momenteel zijn er geen uitgestelde acties. - all_completed_tagged_page_title: "TRACKS:: Alle afgeronde acties met tag %{tag_name}" completed_rest_of_month: Afgerond in de rest van deze maand + all_completed_tagged_page_title: "TRACKS:: Alle afgeronde acties met tag %{tag_name}" + no_deferred_actions: Momenteel zijn er geen uitgestelde acties. recurrence_completed: Er is geen volgende actie na de terugkerende actie die u zojuist hebt voltooid. De herhaling is voltooid - error_toggle_complete: Kon deze actie niet als afgerond markeren - due: Deadline + action_marked_complete_error: De actie '%{description}' is niet gemarkeerd als %{completed} vanwege een fout op de server. no_actions_found: Momenteel zijn er geen onafgeronde acties. in_pending_state: in wachtende toestand - action_marked_complete_error: De actie '%{description}' is niet gemarkeerd als %{completed} vanwege een fout op de server. - depends_on_separate_with_commas: Afhankelijk van (gescheiden door komma's) + error_toggle_complete: Kon deze actie niet als afgerond markeren + due: Deadline + no_incomplete_actions: Er zijn geen onvoltooide acties action_saved_to_tickler: Actie opgeslagen in tickler recurring_action_saved: Terugkerende actie opgeslagen + depends_on_separate_with_commas: Afhankelijk van (gescheiden door komma's) completed_in_archive: one: Er is een voltooide actie in het archief. other: Er zijn %{count} afgeronde acties in het archief. @@ -574,94 +588,120 @@ nl: due_date: met een deadline %{due_date} of eerder overdue: Achterstallig add_new_recurring: Voeg een nieuwe terugkerende actie toe - no_incomplete_actions: Er zijn geen onvoltooide acties notes: delete_note_title: Verwijder de notitie '%{id}' delete_confirmation: Weet u zeker dat u de notitie '%{id}' wilt verwijderen? in_project: "In:" delete_item_title: Verwijder item + deleted_note: Verwijder notitie '%{id}' note_link_title: Toon notitie %{id} show_note_title: Toon notitie - deleted_note: Verwijder notitie '%{id}' edit_item_title: Item bewerken note_location_link: "In:" no_notes_available: "Momenteel zijn er geen notities: voeg notities toe aan projecten vanaf de individuele project pagina's." note_header: Notitie %{id} delete_note_confirm: Weet u zeker dat u de notitie '%{id}' wilt verwijderen? + projects: + default_context_set: Stel project standaard context in op %{default_context} + no_actions_in_project: Momenteel zijn er geen onafgeronde acties in dit project + deferred_actions: Uitgestelde acties voor dit project + was_marked_hidden: is gemarkeerd als verborgen + edit_project_title: Bewerk project + default_tags_removed_notice: De standaard tags zijn verwijderd + page_title: "TRACKS:: Project: %{project}" + all_completed_tasks_title: TRACKS::Toon alle afgeronde acties in het project '{project_name}' + hide_form: Verberg formulier + list_completed_projects: TRACKS::Toon afgeronde projecten + no_notes_attached: Momenteel zijn er geen notities toegevoegd aan dit project + to_new_project_page: Ga naar de nieuwe projectpagina + show_form_title: Maak een nieuw project + deferred_actions_empty: Er zijn geen uitgestelde acties voor dit project + project_state: Project is %{state}. + this_project: Dit project + no_last_completed_projects: Geen afgeronde projecten gevonden + no_last_completed_recurring_todos: Geen afgeronde herhalende acties gevonden + notes: Notities + todos_append: in dit project + list_reviews: TRACKS::Evaluatie + notes_empty: Er zijn geen notities voor dit project + no_projects: Momenteel zijn er geen projecten + hide_form_title: Verberg nieuw project formulier + delete_project: Project verwijderen + completed_actions_empty: Er zijn nog geen afgeronde acties voor dit project + with_no_default_context: zonder standaard context + delete_project_confirmation: Weet u zeker dat u wilt het project '%{name} wilt verwijderen? + with_default_context: met een standaard context '%{context_name}' + show_form: Toevoegen van een project + actions_in_project_title: Acties in dit project + completed_projects: Voltooide projecten + is_active: is actief + add_note: Een notitie toevoegen + set_default_tags_notice: Stel project standaard tags in op %{default_tags} + add_project: Voeg project toe + settings: Instellingen + project_saved_status: Project opgeslagen + list_projects: "TRACKS:: Overzicht van projecten" + with_default_tags: en met '%{tags}' als de standaard tags + completed_tasks_title: TRACKS::Toon afgeronde acties in het project '%{project_name}' + hidden_projects: Verborgen projecten + delete_project_title: Verwijder het project + default_context_removed: Standaard context verwijderd + add_note_submit: Notitie toevoegen + completed_actions: Afgeronde acties voor dit project + was_marked_complete: is gemarkeerd als voltooid + no_default_context: Dit project heeft geen standaard context + with_no_default_tags: en zonder standaard tags + default_context: De standaard context voor dit project is %{context} + edit_project_settings: Bewerk project instellingen + status_project_name_changed: Naam van het project werd gewijzigd + state: Dit project is %{state} + active_projects: Actieve projecten states: hidden_plural: Verborgen - review_plural: Gedateerde stalled: Vastgelopen + review_plural: Gedateerde completed: Afgerond current: Bijgewerkt - completed_plural: Afgeronde review: Gedateerde + completed_plural: Afgeronde blocked: Geblokkeerd blocked_plural: Geblokkeerde stalled_plural: Vastgelopen visible_plural: Zichtbare active_plural: Actieve visible: Zichtbaar - current_plural: Bijgewerkte hidden: Verborgen active: Actief - projects: - was_marked_hidden: is gemarkeerd als verborgen - edit_project_title: Bewerk project - default_tags_removed_notice: De standaard tags zijn verwijderd - default_context_set: Stel project standaard context in op %{default_context} - no_actions_in_project: Momenteel zijn er geen onafgeronde acties in dit project - deferred_actions: Uitgestelde acties voor dit project - all_completed_tasks_title: TRACKS::Toon alle afgeronde acties in het project '{project_name}' - page_title: "TRACKS:: Project: %{project}" - hide_form: Verberg formulier - no_notes_attached: Momenteel zijn er geen notities toegevoegd aan dit project - show_form_title: Maak een nieuw project - deferred_actions_empty: Er zijn geen uitgestelde acties voor dit project - this_project: Dit project - project_state: Project is %{state}. - list_completed_projects: TRACKS::Toon afgeronde projecten - to_new_project_page: Ga naar de nieuwe projectpagina - no_last_completed_recurring_todos: Geen afgeronde herhalende acties gevonden - todos_append: in dit project - no_last_completed_projects: Geen afgeronde projecten gevonden - notes: Notities - notes_empty: Er zijn geen notities voor dit project - no_projects: Momenteel zijn er geen projecten - hide_form_title: Verberg nieuw project formulier - list_reviews: TRACKS::Evaluatie - delete_project: Project verwijderen - completed_actions_empty: Er zijn nog geen afgeronde acties voor dit project - with_no_default_context: zonder standaard context - show_form: Toevoegen van een project - actions_in_project_title: Acties in dit project - delete_project_confirmation: Weet u zeker dat u wilt het project '%{name} wilt verwijderen? - with_default_context: met een standaard context '%{context_name}' - add_note: Een notitie toevoegen - add_project: Voeg project toe - with_default_tags: en met '%{tags}' als de standaard tags - is_active: is actief - settings: Instellingen - list_projects: "TRACKS:: Overzicht van projecten" - completed_projects: Voltooide projecten - set_default_tags_notice: Stel project standaard tags in op %{default_tags} - project_saved_status: Project opgeslagen - delete_project_title: Verwijder het project - hidden_projects: Verborgen projecten - completed_tasks_title: TRACKS::Toon afgeronde acties in het project '%{project_name}' - was_marked_complete: is gemarkeerd als voltooid - completed_actions: Afgeronde acties voor dit project - default_context_removed: Standaard context verwijderd - add_note_submit: Notitie toevoegen - edit_project_settings: Bewerk project instellingen - status_project_name_changed: Naam van het project werd gewijzigd - active_projects: Actieve projecten - default_context: De standaard context voor dit project is %{context} - state: Dit project is %{state} - no_default_context: Dit project heeft geen standaard context - with_no_default_tags: en zonder standaard tags + current_plural: Bijgewerkte errors: user_unauthorized: "401 Unauthorized: Alleen administratieve gebruikers mogen deze functie gebruiken." + preferences: + open_id_url: Uw OpenID URL is + change_identity_url: Verander uw Identity URL + staleness_starts_after: Markeren openstaande acties begint na %{days} dagen + page_title: "TRACKS:: Voorkeuren" + change_password: Wijzig uw wachtwoord + token_description: Token (voor feeds en API gebruik) + title: Uw voorkeuren + is_false: Nee + show_number_completed: Toon %{number} voltooide items + password_changed: Je wachtwoord is gewijzigd, meld je opnieuw aan. + edit_preferences: Voorkeuren bewerken + page_title_edit: "TRACKS:: Voorkeuren bewerken" + is_true: Ja + sms_context_none: Geen + generate_new_token: Genereer een nieuwe token + token_header: Uw token + authentication_header: Uw authenticatie + updated: Voorkeuren bijgewerkt + current_authentication_type: Uw authenticatietype is %{auth_type} + change_authentication_type: Verander uw authenticatietype + generate_new_token_confirm: Weet u dit zeker? Het genereren van een nieuw token zal de bestaande te vervangen en dit zal het extern gebruiken van de oude token laten mislukken. + tabs: + authentication: Authenticatie + tracks_behavior: Tracks gedrag + profile: Profiel + date_and_time: Datum en tijd time: am: ochtend formats: @@ -672,33 +712,6 @@ nl: month_day: "%d %B" long: "%A, %d. %B %Y, %H:%M" pm: middag - preferences: - change_identity_url: Verander uw Identity URL - open_id_url: Uw OpenID URL is - staleness_starts_after: Markeren openstaande acties begint na %{days} dagen - page_title: "TRACKS:: Voorkeuren" - change_password: Wijzig uw wachtwoord - token_description: Token (voor feeds en API gebruik) - title: Uw voorkeuren - is_false: Nee - show_number_completed: Toon %{number} voltooide items - edit_preferences: Voorkeuren bewerken - page_title_edit: "TRACKS:: Voorkeuren bewerken" - is_true: Ja - password_changed: Je wachtwoord is gewijzigd, meld je opnieuw aan. - sms_context_none: Geen - generate_new_token: Genereer een nieuwe token - token_header: Uw token - authentication_header: Uw authenticatie - updated: Voorkeuren bijgewerkt - current_authentication_type: Uw authenticatietype is %{auth_type} - change_authentication_type: Verander uw authenticatietype - generate_new_token_confirm: Weet u dit zeker? Het genereren van een nieuw token zal de bestaande te vervangen en dit zal het extern gebruiken van de oude token laten mislukken. - tabs: - tracks_behavior: Tracks gedrag - authentication: Authenticatie - profile: Profiel - date_and_time: Datum en tijd date: month_names: - @@ -755,6 +768,13 @@ nl: - Okt - Nov - Dec + support: + array: + words_connector: "," + last_word_connector: ", en" + two_words_connector: en + select: + prompt: Selecteer will_paginate: previous_label: "\xC2\xABVorige" page_entries_info: @@ -770,13 +790,6 @@ nl: multi_page_html: Toon %{model} %{from} - %{to} van %{count} in totaal page_gap: "…" next_label: "Volgende \xC2\xBB" - support: - array: - words_connector: "," - last_word_connector: ", en" - two_words_connector: en - select: - prompt: Selecteer dates: month_names: - Januari @@ -803,9 +816,9 @@ nl: send_feedback: Stuur reactie op %{version} shared: multiple_next_actions: Meerdere acties (een op elke regel) + make_actions_dependent: Maak acties afhankelijk van elkaar toggle_single: Voeg een actie toe hide_form: Verberg formulier - make_actions_dependent: Maak acties afhankelijk van elkaar add_actions: Toevoegen acties add_action: Actie toevoegen tags_for_all_actions: Tags voor alle acties (scheiden met een komma) @@ -817,6 +830,30 @@ nl: add_context: Toevoegen context toggle_multi_title: Toggle single / multi actie formulier hide_action_form_title: Verberg nieuwe actie formulier + feedlist: + choose_context: Kies de context waar je een feed van wilt + actions_due_today: Acties die vandaag of eerder af moeten + ical_feed: iCal feed + legend: Legenda + all_contexts: Alle contexten + rss_feed: RSS Feed + choose_project: Kies het project waar je een feed van wilt + all_projects: Alle projecten + project_needed: "Er moet ten minste \xC3\xA9\xC3\xA9n project zijn voor een feed opgevraagd kan worden" + select_feed_for_project: Kies de feed voor dit project + active_projects_wo_next: Actieve projecten zonder acties + active_starred_actions: Alle gesterde, actieve acties + context_needed: "Er moet eerst ten minste \xC3\xA9\xC3\xA9n context zijn voor je een feed kan opvragen" + select_feed_for_context: Kies de feed voor deze context + projects_and_actions: Actieve projecten met hun acties + notice_incomplete_only: "Merk op: alle feeds laten alleen acties zien die niet afgerond zijn, tenzij anders vermeld." + actions_due_next_week: Acties die binnen 7 dagen afgerond moeten + actions_completed_last_week: Acties afgerond in de afgelopen 7 dagen + context_centric_actions: Feeds voor onafgeronde acties in een specifieke context + plain_text_feed: Reguliere tekst feed + last_fixed_number: Laatste %{number} acties + all_actions: Alle acties + project_centric: Feeds voor onafgeronde acties in een specifiek project sidebar: list_name_active_contexts: Actieve contexten list_name_active_projects: Actieve projecten @@ -824,66 +861,14 @@ nl: list_name_completed_projects: Voltooide projecten list_name_hidden_projects: Verborgen projecten list_name_hidden_contexts: Verborgen contexten - feedlist: - actions_due_today: Acties die vandaag of eerder af moeten - choose_context: Kies de context waar je een feed van wilt - rss_feed: RSS Feed - legend: Legenda - ical_feed: iCal feed - all_contexts: Alle contexten - all_projects: Alle projecten - choose_project: Kies het project waar je een feed van wilt - project_needed: "Er moet ten minste \xC3\xA9\xC3\xA9n project zijn voor een feed opgevraagd kan worden" - select_feed_for_project: Kies de feed voor dit project - active_projects_wo_next: Actieve projecten zonder acties - active_starred_actions: Alle gesterde, actieve acties - select_feed_for_context: Kies de feed voor deze context - projects_and_actions: Actieve projecten met hun acties - context_needed: "Er moet eerst ten minste \xC3\xA9\xC3\xA9n context zijn voor je een feed kan opvragen" - actions_due_next_week: Acties die binnen 7 dagen afgerond moeten - notice_incomplete_only: "Merk op: alle feeds laten alleen acties zien die niet afgerond zijn, tenzij anders vermeld." - context_centric_actions: Feeds voor onafgeronde acties in een specifieke context - plain_text_feed: Reguliere tekst feed - last_fixed_number: Laatste %{number} acties - all_actions: Alle acties - actions_completed_last_week: Acties afgerond in de afgelopen 7 dagen - project_centric: Feeds voor onafgeronde acties in een specifiek project - contexts: - delete_context_title: Verwijder context - all_completed_tasks_title: "TRACKS:: Alle voltooide acties in context '%{context_name}'" - hide_form: Verberg formulier - show_form_title: Voeg een context toe - todos_append: in deze context - delete_context_confirmation: Weet u zeker dat u de context '%{name}' wilt verwijderen? Merk op dat dit ook alle (herhalende) acties in deze context zal verwijderen! - delete_context: Verwijder context - edit_context: Bewerk context - hide_form_title: "Verberg formulier voor nieuwe context " - hidden_contexts: Verborgen contexten - no_contexts_active: Momenteel zijn er geen actieve contexten - context_hide: Verberg van de start pagina? - show_form: Maak een nieuwe context - visible_contexts: Zichtbare contexten - save_status_message: Context bewaard - add_context: Context toevoegen - update_status_message: Naam van de context was veranderd - context_name: Context naam - status_active: Context is actief - completed_tasks_title: "TRACKS:: Voltooid acties in de context '%{context_name}'" - new_context_post: "' zal ook gemaakt worden. Weet u dit zeker?" - no_actions: Momenteel zijn er geen onafgeronde acties in deze context - last_completed_in_context: in deze context (laatste %{number}) - context_deleted: De context '%{name}' is verwijderd - no_contexts_hidden: Momenteel zijn er geen verborgen contexten - new_context_pre: Nieuwe context ' - status_hidden: Context is verborgen users: - successfully_deleted_user: Succesvol gebruiker %{username} verwijderd + openid_url_verified: Je hebt %{url} met succes geverifieerd als je identiteit en uw authenticatie type OpenID opgeslagen. auth_type_update_error: "Er was een probleem met het bijwerken van uw authenticatietype: %{error_messages}" failed_to_delete_user: Mislukt de gebruiker %{username} te verwijderen destroy_successful: Gebruiker %{login} met succes verwijderd - total_contexts: Totaal aantal contexten first_user_heading: "Welkom bij TRACKS. Om te beginnen, maak dan een admin account:" - openid_url_verified: Je hebt %{url} met succes geverifieerd als je identiteit en uw authenticatie type OpenID opgeslagen. + total_contexts: Totaal aantal contexten + successfully_deleted_user: Succesvol gebruiker %{username} verwijderd signup_successful: Aanmelding succesvol voor gebruiker %{username}. new_token_generated: Nieuwe token met succes gegenereerd total_projects: Totaal aantal projecten @@ -891,23 +876,23 @@ nl: no_signups_title: "TRACKS:: Geen nieuwe aanmeldingen" user_created: Gebruiker aangemaakt. account_signup: Aanmelden voor een account - password_updated: Wachtwoord bijgewerkt. manage_users: Beheren gebruikers - new_user_heading: "Registreer een nieuwe gebruiker:" + password_updated: Wachtwoord bijgewerkt. auth_type_updated: Authenticatietype bijgewerkt. total_actions: Totaal aanal acties desired_login: Gewenste login signup: Aanmelden confirm_password: Bevestig wachtwoord - change_password_prompt: Voer uw nieuwe wachtwoord in de onderstaande velden in en kies 'Wachtwoord wijzigen' om uw huidige wachtwoord met uw nieuwe te vervangen. + new_user_heading: "Registreer een nieuwe gebruiker:" password_confirmation_label: Bevestig wachtwoord destroy_error: Er is een fout opgetreden bij het verwijderen van de gebruiker '%{login}' choose_password: Kies een wachtwoord change_password_title: TRACKS::Wachtwoord wijzigen change_auth_type_title: TRACKS::Wijzig authenticatietype + change_password_prompt: Voer uw nieuwe wachtwoord in de onderstaande velden in en kies 'Wachtwoord wijzigen' om uw huidige wachtwoord met uw nieuwe te vervangen. + new_password_label: Nieuw wachtwoord register_with_cas: Met uw CAS gebruikersnaam label_auth_type: Authenticatietype - new_password_label: Nieuw wachtwoord total_users_count: Je hebt een totaal van %{count} gebruikers new_user_title: "TRACKS:: Aanmelden als de admin gebruiker" destroy_user: Verwijder de gebruiker @@ -918,18 +903,46 @@ nl: openid_ok_pref_failed: Je hebt succesvol de %{url} geverifieerd als je identiteit, maar er was een probleem met het opslaan van uw authenticatie voorkeuren. auth_change_submit: Wijzigen authenticatietype change_authentication_type: Wijzigen authenticatietype - select_authentication_type: Selecteer uw nieuwe authenticatie type en klik op 'Wijzigen authenticatietype' om uw huidige instellingen te vervangen. total_notes: Totaal aantal notities + select_authentication_type: Selecteer uw nieuwe authenticatie type en klik op 'Wijzigen authenticatietype' om uw huidige instellingen te vervangen. + contexts: + delete_context_title: Verwijder context + all_completed_tasks_title: "TRACKS:: Alle voltooide acties in context '%{context_name}'" + hide_form: Verberg formulier + show_form_title: Voeg een context toe + delete_context_confirmation: Weet u zeker dat u de context '%{name}' wilt verwijderen? Merk op dat dit ook alle (herhalende) acties in deze context zal verwijderen! + todos_append: in deze context + delete_context: Verwijder context + edit_context: Bewerk context + hide_form_title: "Verberg formulier voor nieuwe context " + hidden_contexts: Verborgen contexten + no_contexts_active: Momenteel zijn er geen actieve contexten + context_hide: Verberg van de start pagina? + add_context: Context toevoegen + show_form: Maak een nieuwe context + save_status_message: Context bewaard + visible_contexts: Zichtbare contexten + update_status_message: Naam van de context was veranderd + context_name: Context naam + status_active: Context is actief + completed_tasks_title: "TRACKS:: Voltooid acties in de context '%{context_name}'" + new_context_post: "' zal ook gemaakt worden. Weet u dit zeker?" + new_context_pre: Nieuwe context ' + no_actions: Momenteel zijn er geen onafgeronde acties in deze context + last_completed_in_context: in deze context (laatste %{number}) + context_deleted: De context '%{name}' is verwijderd + no_contexts_hidden: Momenteel zijn er geen verborgen contexten + status_hidden: Context is verborgen login: - login_cas: Ga naar het CAS openid_identity_url_not_found: Sorry, geen gebruiker met die identiteit URL bestaat (%{identity_url}) user_no_expiry: Blijf ingelogd sign_in: Meld aan - please_login: Log in om Tracks te gebruiken - cas_logged_in_greeting: Hallo, %{username}! U bent geauthenticeerd. + login_cas: Ga naar het CAS cas_no_user_found: Hallo,%{username}! Je hebt nog geen account op Tracks. cas_login: CAS Inloggen successful_with_session_info: "Login succesvol:" + please_login: Log in om Tracks te gebruiken + cas_logged_in_greeting: Hallo, %{username}! U bent geauthenticeerd. cas_username_not_found: Sorry, geen gebruiker met die CAS gebruikersnaam bestaat (%{username}) cas_create_account: Als u willen vragen ga hier om %{signup_link} mobile_use_openid: ... if inloggen met een OpenID @@ -941,10 +954,10 @@ nl: session_time_out: Sessie is verlopen. Gelieve %{link} session_will_expire: sessie zal verlopen na %{hours} u(u)r(en) van inactiviteit. login_standard: Ga terug naar de standaard login - log_in_again: opnieuw in te loggen. - logged_out: Je bent afgemeld bij Tracks. login_with_openid: inloggen met een OpenID unsuccessful: Login mislukt. + log_in_again: opnieuw in te loggen. + logged_out: Je bent afgemeld bij Tracks. datetime: prompts: minute: Minuut @@ -993,7 +1006,7 @@ nl: search: contexts_matching_query: Contexten passend bij zoekopdracht tags_matching_query: Tags passend bij zoekopdracht + no_results: Uw zoekopdracht heeft geen resultaten opgeleverd. todos_matching_query: Todos passend bij zoekopdracht projects_matching_query: Projecten passend bij zoekopdracht notes_matching_query: Notities passend bij zoekopdracht - no_results: Uw zoekopdracht heeft geen resultaten opgeleverd.