diff --git a/app/controllers/todos_controller.rb b/app/controllers/todos_controller.rb index 058dfd5c..01b17f02 100644 --- a/app/controllers/todos_controller.rb +++ b/app/controllers/todos_controller.rb @@ -217,19 +217,20 @@ class TodosController < ApplicationController @tag_name = params['_tag_name'] respond_to do |format| format.js + format.m { + @projects = current_user.projects.active + @contexts = current_user.contexts.find(:all) + @edit_mobile = true + @return_path=cookies[:mobile_url] ? cookies[:mobile_url] : mobile_path + render :template => "/todos/edit_mobile.html.erb" + } end end def show @todo = current_user.todos.find(params['id']) respond_to do |format| - format.m do - @projects = current_user.projects.active - @contexts = current_user.contexts.find(:all) - @edit_mobile = true - @return_path=cookies[:mobile_url] ? cookies[:mobile_url] : mobile_path - render :action => 'show' - end + format.m { render :action => 'show' } format.xml { render :xml => @todo.to_xml( *to_xml_params ) } end end @@ -316,6 +317,17 @@ class TodosController < ApplicationController redirect_to :action => "index" end end + format.m { + if cookies[:mobile_url] + old_path = cookies[:mobile_url] + cookies[:mobile_url] = {:value => nil, :secure => SITE_CONFIG['secure_cookies']} + notify(:notice, t("todos.action_marked_complete", :description => @todo.description, :completed => @todo.completed? ? 'complete' : 'incomplete')) + redirect_to old_path + else + notify(:notice, t("todos.action_marked_complete", :description => @todo.description, :completed => @todo.completed? ? 'complete' : 'incomplete')) + redirect_to todos_path(:format => 'm') + end + } end end @@ -327,6 +339,17 @@ class TodosController < ApplicationController format.js format.xml { render :xml => @todo.to_xml( *to_xml_params ) } format.html { redirect_to request.referrer} + format.m { + if cookies[:mobile_url] + old_path = cookies[:mobile_url] + cookies[:mobile_url] = {:value => nil, :secure => SITE_CONFIG['secure_cookies']} + notify(:notice, "Star toggled") + redirect_to old_path + else + notify(:notice, "Star toggled") + redirect_to todos_path(:format => 'm') + end + } end end @@ -648,6 +671,16 @@ class TodosController < ApplicationController respond_to do |format| format.html { redirect_to :back } format.js {render :action => 'update'} + format.m { + notify(:notice, t("todos.action_deferred", :description => @todo.description)) + if cookies[:mobile_url] + old_path = cookies[:mobile_url] + cookies[:mobile_url] = {:value => nil, :secure => SITE_CONFIG['secure_cookies']} + redirect_to old_path + else + redirect_to todos_path(:format => 'm') + end + } end end diff --git a/app/views/todos/_edit_mobile.rhtml b/app/views/todos/_edit_mobile_form.rhtml similarity index 87% rename from app/views/todos/_edit_mobile.rhtml rename to app/views/todos/_edit_mobile_form.rhtml index 5acfb061..63ede714 100644 --- a/app/views/todos/_edit_mobile.rhtml +++ b/app/views/todos/_edit_mobile_form.rhtml @@ -1,10 +1,10 @@ -<% @tag_list_text = "" +<% @tag_list_text = "" @tag_list_text = tag_list_text if @todo -%> <%= error_messages_for("todo") %> -<% this_year = current_user.time.to_date.strftime("%Y").to_i -if parent_container_type == 'show_mobile' -%> +<% this_year = current_user.time.to_date.strftime("%Y").to_i -%> +<% if parent_container_type == 'show_mobile' -%>

 <%= check_box_tag("done", 1, @todo && @todo.completed?, "tabindex" => 1, "onClick" => "document.mobileEdit.submit()") %>

<% end -%>

@@ -13,10 +13,10 @@ if parent_container_type == 'show_mobile' -%> <%= text_area( "todo", "notes", "cols" => 40, "rows" => 3, "tabindex" => 3) %>

<%= unless @mobile_from_context - collection_select( "todo", "context_id", @contexts, "id", "name", {}, {"tabindex" => 4} ) + collection_select( "todo", "context_id", @contexts, "id", "name", {}, {"tabindex" => 4} ) else select_tag("todo[context_id]", options_from_collection_for_select( - @contexts, "id", "name", @mobile_from_context.id), + @contexts, "id", "name", @mobile_from_context.id), {"id" => :todo_context_id, :tabindex => 4} ) end %>

@@ -24,10 +24,10 @@ end %> collection_select( "todo", "project_id", @projects, "id", "name", {:include_blank => t('todos.no_project')}, {"tabindex" => 5} ) else - # manually add blank option since :include_blank does not work + # manually add blank option since :include_blank does not work # with options_from_collection_for_select select_tag("todo[project_id]", ""+options_from_collection_for_select( - @projects, "id", "name", @mobile_from_project.id), + @projects, "id", "name", @mobile_from_project.id), {"id" => :todo_project_id, :tabindex => 5} ) end %>

@@ -36,5 +36,5 @@ end %> <%= date_select("todo", "due", {:order => [:day, :month, :year], :start_year => this_year, :include_blank => '--'}, :tabindex => 7) %>

-<%= date_select("todo", "show_from", {:order => [:day, :month, :year], +<%= date_select("todo", "show_from", {:order => [:day, :month, :year], :start_year => this_year, :include_blank => true}, :tabindex => 8) %> diff --git a/app/views/todos/edit_mobile.html.erb b/app/views/todos/edit_mobile.html.erb new file mode 100644 index 00000000..0cf73eb4 --- /dev/null +++ b/app/views/todos/edit_mobile.html.erb @@ -0,0 +1,5 @@ +<% form_tag todo_path(@todo, :format => 'm'), :name => 'mobileEdit', :method => :put do %> + <%= render :partial => 'edit_mobile_form', :locals => { :parent_container_type => "show_mobile" } %> +

+<% end -%> +<%= link_to t('common.cancel'), @return_path %> diff --git a/app/views/todos/new.m.erb b/app/views/todos/new.m.erb index 44da0853..cf6403a4 100644 --- a/app/views/todos/new.m.erb +++ b/app/views/todos/new.m.erb @@ -1,5 +1,5 @@ <% form_tag todos_path(:format => 'm'), :method => :post do %> - <%= render :partial => 'edit_mobile' %> + <%= render :partial => 'edit_mobile_form' %>

<% end -%> <%= link_to t('common.back'), @return_path %> diff --git a/app/views/todos/show.m.erb b/app/views/todos/show.m.erb index 0ab19a9b..5db38371 100644 --- a/app/views/todos/show.m.erb +++ b/app/views/todos/show.m.erb @@ -1,5 +1,29 @@ -<% form_tag todo_path(@todo, :format => 'm'), :name => 'mobileEdit', :method => :put do %> - <%= render :partial => 'edit_mobile', :locals => { :parent_container_type => "show_mobile" } %> -

-<% end -%> -<%= link_to t('common.cancel'), @return_path %> +

Description

+<%= @todo.description %>
+ +

Actions

+ +
+ + +

+ +
+ + +

+ +
+ + +

+ +
+ + +

+ +
+ + +

\ No newline at end of file diff --git a/config/locales/de.yml b/config/locales/de.yml index 094815a7..e15e47cc 100644 --- a/config/locales/de.yml +++ b/config/locales/de.yml @@ -3,7 +3,6 @@ de: layouts: toggle_notes: Notizen umschalten next_actions_rss_feed: RSS-Feed kommende Aufgaben - toggle_notes_title: Alle Notizen umschalten mobile_navigation: logout: Abmelden feeds: Feeds @@ -13,9 +12,10 @@ de: tickler: Notizbuch contexts: 2-Kontexte home: 1-Home + toggle_notes_title: Alle Notizen umschalten navigation: - recurring_todos: Sich wiederholende To-Dos manage_users_title: "Benutzer hinzuf\xC3\xBCgen oder entfernen" + recurring_todos: Sich wiederholende To-Dos api_docs: REST API Docs feeds: Feeds starred: Markiert @@ -24,16 +24,16 @@ de: tickler_title: Notizbuch manage_users: Benutzer verwalten export_title: Daten importieren und exportieren - preferences: Einstellungen integrations_: Tracks integrieren + preferences: Einstellungen feeds_title: "Liste der verf\xC3\xBCgbaren Feeds anzeigen" calendar_title: "Kalender mit \xC3\xBCberf\xC3\xA4lligen Aufgaben" - home_title: Start + 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 - stats_title: Statistiken anzeigen organize: Organisieren view: Betrachten completed_tasks_title: "Vollst\xC3\xA4ndig" @@ -82,8 +82,8 @@ de: 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_before_id: "N\xC3\xA4chste neue Aufgabe mit ID" applescript_success_after_id: erstellt + applescript_success_before_id: "N\xC3\xA4chste neue Aufgabe mit ID" common: back: "Zur\xC3\xBCck" third: Dritte @@ -93,50 +93,50 @@ de: previous: Vorherige logout: Abmelden go_back: "Zur\xC3\xBCck" - cancel: Abbrechen week: Woche + cancel: Abbrechen none: Keine second: Zweite - optional: optional month: Monat + optional: optional notes: Notizen forum: Forum server_error: Auf dem Server ist ein Fehler aufgetreten. last: Letzte - projects: Projekte action: Aktion + projects: Projekte project: Projekt contribute: Mitwirken ok: Ok website: Website - numbered_step: Schritt %{number} first: Erste - fourth: Vierte + 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 - alphabetically_title: Projekte alphabetisch sortieren alphabetically_confirm: Sollen diese Projekte wirklich alphabetisch sortiert werden? Die bisherige Sortier-Reihenfolge wird damit überschrieben. sort: Sortieren + alphabetically_title: Projekte alphabetisch sortieren by_task_count: Nach Anzahl der Aufgaben + fourth: Vierte create: Erstellen months: Monate - context: Kontext - contexts: Kontexte todo: Aktione + contexts: Kontexte + context: Kontext next: "N\xC3\xA4chste" - errors_with_fields: "Mit folgenden Feldern sind Probleme aufgetreten:" description: Beschreibung + errors_with_fields: "Mit folgenden Feldern sind Probleme aufgetreten:" drag_handle: Verschieben - bugs: Bugs update: Aktualisieren + bugs: Bugs weeks: Woche forth: Vierte wiki: Wiki search: Suchen - email: E-Mail ajaxError: Fehler beim Empfangen vom Server + email: E-Mail models: project: feed_title: Tracks-Projekte @@ -169,18 +169,18 @@ de: due: Fällig 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" date_format: Datum Format + show_hidden_contexts_in_sidebar: "Zeige Versteckte Zusammenh\xC3\xA4nge in der Sidebar" + mobile_todos_per_page: Aufgaben pro Seite (Mobile Version) verbose_action_descriptors: "Ausf\xC3\xBChrlich Aktion Deskriptoren" sms_context: Standard-E-Mail-Kontext 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" refresh: Aktualisierungsintverall (in Minuten) week_starts: Woche startet am - due_style: "F\xC3\xA4llig stijl" time_zone: Zeit Zone + due_style: "F\xC3\xA4llig stijl" locale: Zahle sms_email: Per E-Mail show_project_on_todo_done: Zur Projektseite wechseln, wenn To-Do abgeschlossen @@ -206,8 +206,8 @@ de: exclusion: "ist nicht verf\xC3\xBCgbar" odd: muss ungerade sein too_short: ist zu kurz (nicht weniger als %{count} Zeichen) - empty: "muss ausgef\xC3\xBCllt werden" wrong_length: "hat die falsche L\xC3\xA4nge (muss genau %{count} Zeichen haben)" + empty: "muss ausgef\xC3\xBCllt werden" even: muss gerade sein less_than: muss kleiner als %{count} sein greater_than: "muss gr\xC3\xB6\xC3\x9Fer als %{count} sein" @@ -228,16 +228,17 @@ de: import_successful: Import war erfolgreich. import_errors: Beim Import sind Fehler aufgetreten. stats: - tag_cloud_title: Tag-Cloud aller Aktionen - tag_cloud_description: Diese Tag-Cloud beinhaltet Tags aller Aktionen (abgeschlossen, nicht abgeschlossen, sichtbar und/oder unsichtbar) - actions: Aktionen - tag_cloud_90days_title: Tag-Cloud-Aktionen in den letzten 90 Tagen totals_active_project_count: Von diesen sind %{count} aktive Projekte - actions_avg_completion_time: Durchschnittlich hast du %{count} Tage gebraucht, um eine Aktion abzuschliessen. + tag_cloud_title: Tag-Cloud aller Aktionen + actions: Aktionen + tag_cloud_description: Diese Tag-Cloud beinhaltet Tags aller Aktionen (abgeschlossen, nicht abgeschlossen, sichtbar und/oder unsichtbar) + tag_cloud_90days_title: Tag-Cloud-Aktionen in den letzten 90 Tagen actions_last_year_legend: number_of_actions: Anzahl Aktionen months_ago: Monate zuvor totals_first_action: Seit deiner ersten Aktion am %{date} + actions_avg_completion_time: Durchschnittlich hast du %{count} Tage gebraucht, um eine Aktion abzuschliessen. + totals_action_count: hattest du insgesamt %{count} Aktionen legend: number_of_days: Anzahl vergangene Tage actions: Aktionen @@ -246,62 +247,60 @@ de: percentage: Prozentsatz running_time: Laufzeit einer Aktion (Wochen) months_ago: Monate zuvor - top10_longrunning: "Top 10 der am l\xC3\xA4ngsten laufenden Projekte" - actions_dow_30days_title: Wochentag (letzte 30 Tage) - totals_action_count: hattest du insgesamt %{count} Aktionen current_running_time_of_incomplete_visible_actions: "Aktuelle Laufzeit unvollst\xC3\xA4ndiger sichtbarer Aufgaben" totals_deferred_actions: "von denen %{count} im Notizbuch zur\xC3\xBCckgestellt sind" running_time_legend: actions: Aufgaben percentage: Prozentsatz weeks: "Vergangene Zeit einer Aktion (Wochen). Klick auf eine Leiste f\xC3\xBCr mehr Informationen." + top10_longrunning: "Top 10 der am l\xC3\xA4ngsten laufenden Projekte" + actions_dow_30days_title: Wochentag (letzte 30 Tage) + actions_lastyear_title: Aktionen der letzten 12 Monate + totals_actions_completed: "%{count} davon sind abgeschlossen." totals_incomplete_actions: "Du hast %{count} unvollst\xC3\xA4ndige Aktionen" totals_unique_tags: Von diesen Tags sind %{count} einmalig.. actions_avg_completed_30days: und %{count} durchschnittlich davon erledigt. top5_contexts: Top 5 aller Kontexte - actions_lastyear_title: Aktionen der letzten 12 Monate - totals_actions_completed: "%{count} davon sind abgeschlossen." + action_completion_time_title: Fertigstellungszeit (alle abgeschlossenen Aktionen) actions_last_year: Aktionen im letzten Jahr totals_context_count: Du hast %{count} Kontexte. - totals_visible_context_count: Von diesen sind %{count} sichtbare Kontexte projects: Projekte + totals_visible_context_count: Von diesen sind %{count} sichtbare Kontexte totals_blocked_actions: "%{count} h\xC3\xA4ngen vom Abschluss anderer Aktionen ab." - action_completion_time_title: Fertigstellungszeit (alle abgeschlossenen Aktionen) + actions_day_of_week_title: Wochentag (alle Aktionen) + totals_project_count: Du hast %{count} Projekte. actions_min_max_completion_days: "Das Minimum/Maximum an Tagen einer Vervollst\xC3\xA4ndigung ist %{min}/%{max}." actions_min_completion_time: "Die minimale Zeit betr\xC3\xA4gt %{time}." no_tags_available: "keine Tags verf\xC3\xBCgbar" - actions_day_of_week_title: Wochentag (alle Aktionen) - totals_project_count: Du hast %{count} Projekte. tags: Tags - actions_further: und danach - totals_tag_count: Du hast %{count} Tags in Aktionen. running_time_all: "Aktuelle Laufzeit aller unvollst\xC3\xA4ndigen Aktionen." + tag_cloud_90days_description: Diese Tag-Cloud beinhaltet Tags der Aktionen, die in den letzten 90 Tagen erstellt oder abgeschlossen wurden. actions_30days_title: _Aktionen der letzten 30 Tage + top5_visible_contexts_with_incomplete_actions: "Top 5 der sichtbaren Kontexte mit unvollst\xC3\xA4ndigen Aktionen" time_of_day: Tageszeit (alle Aktionen) totals_hidden_project_count: "%{count} sind versteckt" + actions_further: und danach tod30: Tageszeit (letzte 30 Tage) + totals_tag_count: Du hast %{count} Tags in Aktionen. more_stats_will_appear: "Weitere Statistiken werden verf\xC3\xBCgbar, wenn einige Aufgaben hinzugef\xC3\xBCgt wurden." - tag_cloud_90days_description: Diese Tag-Cloud beinhaltet Tags der Aktionen, die in den letzten 90 Tagen erstellt oder abgeschlossen wurden. - top5_visible_contexts_with_incomplete_actions: "Top 5 der sichtbaren Kontexte mit unvollst\xC3\xA4ndigen Aktionen" - totals_completed_project_count: und %{count} sind abgeschlossene Projekte. click_to_return: "Klick auf %{link} um zur Statistikseite zur\xC3\xBCckzukehren." + other_actions_label: (andere) top10_projects_30days: Top-10-Projekt der letzten 30 Tage + top10_projects: Top 10 aller Projekte spread_of_running_actions_for_visible_contexts: Verteilung der laufenden Aufgaben aller sichtbaren Kontexte + actions_avg_created: In den letzten 12 Monaten hast du im Durchschnitt %{count} Aktionen erstellt actions_selected_from_week: "Aktionen ausgew\xC3\xA4hlt ab Woche" spread_of_actions_for_all_context: Aufgabenverteilung aller Kontexte + totals_completed_project_count: und %{count} sind abgeschlossene Projekte. click_to_show_actions_from_week: Klick auf %{link} um die Aktionen von Woche %{week} und danach anzuzeigen. - other_actions_label: (andere) - top10_projects: Top 10 aller Projekte - actions_avg_created: In den letzten 12 Monaten hast du im Durchschnitt %{count} Aktionen erstellt - actions_avg_completed: und %{count} durchschnittlich davon monatlich erledigt totals: Ingesamt time_of_day_legend: number_of_actions: Anzahl Aufgaben time_of_day: Tageszeit - contexts: Kontexte click_to_return_link: hier + contexts: Kontexte totals_hidden_context_count: und %{count} sind versteckte Kontexte. - click_to_update_actions: Klicke auf eine Leiste in der Grafik um die Aktionen unten zu aktualisieren. + actions_avg_completed: und %{count} durchschnittlich davon monatlich erledigt labels: month_avg_completed: "%{months} Monat durchschnittlich fertig gestellt" completed: Erledigt @@ -310,6 +309,7 @@ de: avg_completed: Durchschnittlich fertiggestellt created: Erstellt no_actions_selected: "Es sind keine Aufgaben ausgew\xC3\xA4hlt." + click_to_update_actions: Klicke auf eine Leiste in der Grafik um die Aktionen unten zu aktualisieren. running_time_all_legend: actions: Aktionen percentage: Prozentsatz @@ -324,12 +324,12 @@ de: 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 added_new_next_action: Neue Aktion angelegt + 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? @@ -341,10 +341,10 @@ de: edit_action_with_description: Aktion '%{description}' bearbeiten action_due_on: "(Aktion f\xC3\xA4llig am %{date})" tags: Tags (Komma-separiert) + action_deleted_success: Die nächste Aktion erfolgreich gelöscht 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 - 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 @@ -363,12 +363,12 @@ de: completed: Aufgaben erledigt due_today: heute fällig due_within_a_week: diese Woche fällig + added_new_project: "Neues Projekt hinzugef\xC3\xBCgt" 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 append_in_this_project: in diesem Projekt + error_deleting_item: Beim Löschen von %{description} trat ein Fehler auf task_list_title: TRACKS::Aufgaben anzeigen no_actions_due_this_week: Keine zu erledigenden Aufgaben für den Rest der Woche no_recurring_todos: Im Augenblick gibt es keine wiederkehrenden To-Dos @@ -376,22 +376,22 @@ de: 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? + completed_last_day: In den letzten 24 Stunden erledigt + all_completed: Alle abgeschlossenen Aktionen + error_saving_recurring: Es gab einen Fehler beim Speichern der wiederkehrenden todo '%{description}' show_in_days: Anzeigen in %{days} Tagen no_project: --Kein Projekt-- - 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 - older_than_days: "Älter als %{count} Tage" completed_tagged_page_title: "TRACKS:: Erledigte Aufgaben mit Tag %{tag_name}" + older_than_days: "Älter als %{count} Tage" edit: Bearbeiten 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" @@ -400,22 +400,22 @@ de: show_on_date: Anzeigen am %{date} recurrence_period: Wiederholungszeitraum 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." + confirm_delete: "Bist du sicher, dass du die Aktion '%{description}' l\xC3\xB6schen m\xC3\xB6chtest?" + deferred_tasks_title: TRACKS::Notizbuch 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}' clear_show_from_date: Datum leeren - 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 + 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?" in_hidden_state: als versteckt markiert show_today: Heute anzeigen no_actions_found_title: Keine Aktionen gefunden 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 @@ -435,9 +435,9 @@ de: recurring_todos: Wiederkehrende To-Dos delete_action: "Aktion l\xC3\xB6schen" error_deleting_recurring: "Beim L\xC3\xB6schen der wiederkehrenden To-Do %{description} ist ein Fehler aufgetreten" + cannot_add_dependency_to_completed_todo: "Kann nicht hinzugef\xC3\xBCgt werden diese Aktion als eine Abh\xC3\xA4ngigkeit zu einer abgeschlossenen Aktion!" delete: "L\xC3\xB6schen" 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: @@ -449,19 +449,18 @@ de: new_related_todo_not_created_short: nicht schaffen todo completed_rest_of_week: Fertiggestellt den Rest dieser Woche error_starring: Konnte die Hervorhebung von \'%{description}\' nicht durchführen - show_tomorrow: Morgen anzeigen calendar: get_in_ical_format: Diesen Kalender im iCal Format herunterladen due_next_week: Nächste Woche fällig due_this_week: Die restliche Woche zu erledigen no_actions_due_next_week: Keine Aufgaben für die kommende Woche - due_today: Heute zu erledigen no_actions_due_today: Heute sind keine Aufgaben fällig + due_today: Heute zu erledigen due_next_month_and_later: Im %{month} und später fällig no_actions_due_after_this_month: Nach diesem Monat sind keine Aufgaben fällig due_this_month: Im %{month} fällig no_actions_due_this_month: Keine Aktionen für den Rest des Monats - tagged_page_title: TRACKS::Als '%{tag_name}' markiert + show_tomorrow: Morgen anzeigen recurrence: ends_on_number_times: Endet nach %{number} Mal ends_on_date: Endet am %{date} @@ -473,6 +472,7 @@ de: daily_options: "Einstellungen f\xC3\xBCr sich t\xC3\xA4glich wiederholenden Aktionen" monthly: Monatlich starts_on: Beginnt am + show_option_always: immer daily: "T\xC3\xA4glich" pattern: third: Drittel @@ -500,12 +500,11 @@ de: from: von last: zuletzt every_day: jeden Tag - times: "f\xC3\xBCr %{number} Zeiten" the_xth_day_of_month: der %{x} %{day} von %{month} - show: Show - first: erste - every_year_on: jedes Jahr in %{date} + times: "f\xC3\xBCr %{number} Zeiten" on_work_days: an Wochentagen + first: erste + show: Show day_names: - Sonntag - Montag @@ -514,38 +513,40 @@ de: - Donnerstag - Freitag - Samstag + every_year_on: jedes Jahr in %{date} fourth: vierte due: "F\xC3\xA4llig" - every_month: jeden Monat until: bis - show_option_always: immer + every_month: jeden Monat yearly_every_x_day: "Jeden %{day}. %{month} " recurrence_on_options: Setze Wiederholung auf daily_every_number_day: Alle %{number} Tage - show_options: To-Do anzeigen weekly_every_number_week: Kehrt jede %{number}. Woche wieder am ends_on: Endet am - yearly_options: "Einstellungen f\xC3\xBCr sich j\xC3\xA4hrlich wiederholende Aktionen" + show_options: To-Do anzeigen show_days_before: "%{days} Tage bevor die To-Do f\xC3\xA4llig ist" from_tickler: the date todo comes from tickler (no due date set) no_end_date: Kein Enddatum - yearly_every_xth_day: Den %{day} %{day_of_week} des %{month} day_x_on_every_x_month: Tag %{day} in jedem %{month}. Monat - monthly_every_xth_day: Der %{day} %{day_of_week} eines jeden %{month}. Monats + 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 + action_deferred: Die Aktion \'% {description}\' wurde vertagt + tagged_page_title: TRACKS::Als '%{tag_name}' markiert no_completed_recurring: Im Augenblick gibt es keine abgeschlossenen wiederkehrenden To-Dos added_dependency: "%{dependency} als Abhängigkeit hinzugefügt." - all_completed_tagged_page_title: "TRACKS:: Alle erledigten Aufgaben mit Tag %{tag_name}" - no_deferred_actions: Zur Zeit sind keine zurückgestellten Aktionen vorhanden. completed_rest_of_month: Fertiggestellt den Rest des Monats + no_deferred_actions: Zur Zeit sind keine zurückgestellten Aktionen vorhanden. + all_completed_tagged_page_title: "TRACKS:: Alle erledigten Aufgaben mit Tag %{tag_name}" recurrence_completed: Nach dieser wiederkehrenden Aktion, die du gerade abgeschlossen hast, folgt keine mehr. Die Wiederholung endet hiermit - in_pending_state: und als ausstehend markiert - no_actions_found: "Momentan gibt es keine unvollst\xC3\xA4ndigen Aktionen." - error_toggle_complete: "K\xC3\xB6nnte nicht diese Marke todo komplett" due: Fällig + no_actions_found: "Momentan gibt es keine unvollst\xC3\xA4ndigen Aktionen." + in_pending_state: und als ausstehend markiert + error_toggle_complete: "K\xC3\xB6nnte nicht diese Marke todo komplett" 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) recurring_action_saved: Wiederkehrende Aktion gespeichert + depends_on_separate_with_commas: Hängt ab von (Komma-separiert) action_saved_to_tickler: Aktion im Notizbuch gespeichert completed_in_archive: one: Es befindet sich eine erledigte Aufgabe im Archiv. @@ -555,8 +556,8 @@ de: completed: In den letzten %{count} Tagen due_date: mit einem Datum %{due_date} oder früher overdue: "Überfällig" - no_incomplete_actions: Es gibt keine unerledigten Aufgaben add_new_recurring: "F\xC3\xBCge eine neue wiederkehrende Aktion hinzu" + no_incomplete_actions: Es gibt keine unerledigten Aufgaben notes: delete_confirmation: "Bist du sicher, dass du die Notiz '%{id}' l\xC3\xB6schen m\xC3\xB6chtest?" delete_item_title: Eintrag löschen @@ -574,10 +575,10 @@ de: completed: Erledigt completed_plural: Erledigte visible_plural: Sichtbare - visible: Sichtbar active_plural: Aktive - hidden: Versteckt + visible: Sichtbar active: Aktiv + hidden: Versteckt time: am: vormittags formats: @@ -588,73 +589,73 @@ de: long: "%A, %d. %B %Y, %H:%M Uhr" pm: nachmittags projects: + 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" was_marked_hidden: wurde als verborgen markiert - edit_project_title: Projekt bearbeiten - default_tags_removed_notice: Standard-Tags entfernt - hide_form: Fomular verstecken - page_title: "TRACKS::Projekt: %{project}" all_completed_tasks_title: "TRACKS:: Alle auflisten Abgeschlossene Aktionen in Project '%{project_name}'" - this_project: Dieses Projekt - project_state: Projekt ist %{state} + page_title: "TRACKS::Projekt: %{project}" + hide_form: Fomular verstecken show_form_title: Neues Projekt anlegen list_completed_projects: "TRACKS:: Liste Abgeschlossene Projekte" to_new_project_page: Zu neuem Projekt weiterleiten no_notes_attached: "Im Augenblick sind keine Notizen mit diesem Projekt verkn\xC3\xBCpft." + this_project: Dieses Projekt deferred_actions_empty: "Es gibt keine aufgeschobenen Aufgaben f\xC3\xBCr dieses Projekt" - notes: Notizen + project_state: Projekt ist %{state} no_last_completed_projects: Keine abgeschlossene Projekte gefunden todos_append: an dieses Projekt + notes: Notizen + notes_empty: "Es gibt keine Notizen f\xC3\xBCr dieses Projekt" no_projects: Keine Projekte vorhanden hide_form_title: Formular verstecken - notes_empty: "Es gibt keine Notizen f\xC3\xBCr dieses Projekt" with_no_default_context: hat keinen Standardwert Kontext delete_project: Projekt löschen completed_actions_empty: "Es gibt keine erledigten Aufgaben f\xC3\xBCr dieses Projekt" + 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 - delete_project_confirmation: Soll das Projekt '%{name}' wirklich gelöscht werden? - project_saved_status: Projekt gespeichert add_project: Projekt hinzufügen + with_default_tags: und mit '%{tags}' als Standard-Tags add_note: "Notiz hinzuf\xC3\xBCgen" + list_projects: TRACKS::Projektliste set_default_tags_notice: Standard-Tags des Projekts auf %{default_tags} setzen is_active: ist aktiv settings: Einstellungen + project_saved_status: Projekt gespeichert completed_projects: Abgeschlossene Projekte - with_default_tags: und mit '%{tags}' als Standard-Tags - list_projects: TRACKS::Projektliste - delete_project_title: Projekt löschen completed_tasks_title: "TRACKS:: Liste Abgeschlossene Aktionen in Project '%{project_name}'" + delete_project_title: Projekt löschen hidden_projects: Versteckte Projekte - 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 + completed_actions: "Erledigte Aufgaben f\xC3\xBCr dieses Projekt" + default_context_removed: Standard-Kontext entfernt edit_project_settings: Edit Project Settings - default_context: Der Standard-Kontext dieses Projektes ist %{context} active_projects: Aktive Projekte + default_context: Der Standard-Kontext dieses Projektes ist %{context} status_project_name_changed: "Projektname ge\xC3\xA4ndert" no_default_context: Dieses Projekt hat keinen Standard-Kontext - state: Dieses Projekt ist %{state} with_no_default_tags: und hat keinen Standardwert Tags + state: Dieses Projekt ist %{state} errors: user_unauthorized: "401 Unauthorized: Nur administrative Benutzer d\xC3\xBCrfen auf diese Funktion zugreifen." preferences: change_identity_url: "\xC3\x84ndere deine Identit\xC3\xA4ts-URL" - staleness_starts_after: Abgestandenheit startet nach %{days} Tagen open_id_url: "Deine OpenID-URL lautet:" + staleness_starts_after: Abgestandenheit startet nach %{days} Tagen change_password: "Passwort \xC3\xA4ndern" page_title: TRACKS::Einstellungen title: Deine Einstellungen token_description: "Token (f\xC3\xBCr die Verwendung in Feeds und der API)" is_false: Nein show_number_completed: "Zeige %{number} erledigte Eintr\xC3\xA4ge" + page_title_edit: "TRACKS::Einstellungen \xC3\xA4ndern" is_true: Ja edit_preferences: Einstellungen bearbeiten - page_title_edit: "TRACKS::Einstellungen \xC3\xA4ndern" sms_context_none: Keine generate_new_token: Neues Token generieren token_header: Dein Token @@ -732,24 +733,74 @@ de: send_feedback: Senden Sie Feedback zu %{version} shared: multiple_next_actions: Mehrere neue Aufgaben (eine pro Zeile) - hide_form: Formular verstecken toggle_single: Weitere Aktion erstellen + hide_form: Formular verstecken add_action: "Aufgabe hinzuf\xC3\xBCgen" add_actions: "Aufgaben hinzuf\xC3\xBCgen" tags_for_all_actions: "Tags f\xC3\xBCr alle Aufgaben (mit Kommas trennen)" + project_for_all_actions: "Projekt f\xC3\xBCr alle Aufgaben" context_for_all_actions: "Kontext f\xC3\xBCr alle Aufgaben" toggle_multi: "Mehrere neue Aufgabeneintr\xC3\xA4ge hinzuf\xC3\xBCgen" toggle_single_title: Eine weitere Aktion hinzufügen - project_for_all_actions: "Projekt f\xC3\xBCr alle Aufgaben" separate_tags_with_commas: mit Kommas trennen toggle_multi_title: "Zwischen Einzel- und Mehrfachformular f\xC3\xBCr neue Aufgaben umschalten" hide_action_form_title: "Formular f\xC3\xBCr neue Aufgaben verstecken" + sidebar: + list_name_active_contexts: Aktive Kontexte + list_name_active_projects: Aktive Projekte + list_empty: Keine + list_name_completed_projects: Abgeschlossene Projekte + list_name_hidden_projects: Versteckte Projekte + list_name_hidden_contexts: Versteckte Kontexte + users: + auth_type_update_error: "Beim Ändern der Authentifizierung trat ein Fehler auf: %{error_messages}" + openid_url_verified: Die URL %{url} wurde erfolgreich als Identität verifiziert und Deine Authentifizierung auf OpenID umgestellt. + destroy_successful: "Benutzer %{login} wurde erfolgreich gel\xC3\xB6scht" + total_contexts: Alle Kontexte + successfully_deleted_user: Benutzer %{username} erfolgreich gelöscht. + failed_to_delete_user: Löschen des Benutzers %{username} fehlgeschlagen + first_user_heading: "Willkommen bei TRACKS. Als erstes legen Sie bitte einen Administrator-Zugang an:" + new_token_generated: Neuer Token erfolgreich generiert + total_projects: Alle Projekte + signup_successful: Benutzer %{username} erfolgreich angelegt. + 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. + confirm_password: "Passwort best\xC3\xA4tigen" + signup: Registrieren + 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" + 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." + password_confirmation_label: "Passwort best\xC3\xA4tigen" + destroy_error: "Beim L\xC3\xB6schen des Benutzers %{login} ist ein Fehler aufgetreten." + label_auth_type: Authentifizierungsart + new_password_label: Neues Passwort + register_with_cas: Mit deinem CAS-Benutzernamen + new_user_title: TRACKS::Als Administrator anmelden + destroy_user: "Benutzer l\xC3\xB6schen" + total_users_count: Derzeit existieren %{count} Benutzer + 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?" + signup_new_user: Neuen Benutzer anlegen + 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" + identity_url: Identity-URL + 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." 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 + legend: "Legende:" rss_feed: RSS-Feed choose_project: "Projekt f\xC3\xBCr den Feed w\xC3\xA4hlen" all_projects: Alle Projekte @@ -768,83 +819,33 @@ de: 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" project_centric: "Feeds f\xC3\xBCr unvollst\xC3\xA4ndige Aufgaben in einem bestimmten Kontext" - users: - total_contexts: Alle Kontexte - failed_to_delete_user: Löschen des Benutzers %{username} fehlgeschlagen - first_user_heading: "Willkommen bei TRACKS. Als erstes legen Sie bitte einen Administrator-Zugang an:" - auth_type_update_error: "Beim Ändern der Authentifizierung trat ein Fehler auf: %{error_messages}" - openid_url_verified: Die URL %{url} wurde erfolgreich als Identität verifiziert und Deine Authentifizierung auf OpenID umgestellt. - destroy_successful: "Benutzer %{login} wurde erfolgreich gel\xC3\xB6scht" - successfully_deleted_user: Benutzer %{username} erfolgreich gelöscht. - new_token_generated: Neuer Token erfolgreich generiert - total_projects: Alle Projekte - signup_successful: Benutzer %{username} erfolgreich angelegt. - 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. - signup: Registrieren - confirm_password: "Passwort best\xC3\xA4tigen" - 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" - 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." - 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" - label_auth_type: Authentifizierungsart - new_password_label: Neues Passwort - register_with_cas: Mit deinem CAS-Benutzernamen - new_user_title: TRACKS::Als Administrator anmelden - destroy_user: "Benutzer l\xC3\xB6schen" - total_users_count: Derzeit existieren %{count} Benutzer - 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?" - signup_new_user: Neuen Benutzer anlegen - 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" - identity_url: Identity-URL - 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 contexts: delete_context_title: Kontext löschen - hide_form: Formular verstecken all_completed_tasks_title: "TRACKS:: Alle Abgeschlossene Ma\xC3\x9Fnahmen im context '%{context_name}'" + hide_form: Formular verstecken show_form_title: Neuen Kontext erstellen delete_context_confirmation: Soll der Kontext '%{name}' wirklich gelöscht werden? Alle (wiederholenden) Aufgaben dieses Kontexts werden hierdurch ebenfalls gelöscht. delete_context: Kontext löschen - hide_form_title: Formular für neuen Kontext verstecken edit_context: Kontext bearbeiten + hide_form_title: Formular für neuen Kontext verstecken no_contexts_active: Derzeit gibt es keine aktiven Kontexte context_hide: Auf Startseite ausblenden? hidden_contexts: Versteckte Kontexte save_status_message: Kontext gespeichert - show_form: Neuen Kontext erstellen add_context: "Kontext hinzuf\xC3\xBCgen" + show_form: Neuen Kontext erstellen visible_contexts: Sichtbare Kontexte - context_name: Kontextname update_status_message: "Kontextname wurde ge\xC3\xA4ndert" + context_name: Kontextname completed_tasks_title: "TRACKS:: Abgeschlossene Ma\xC3\x9Fnahmen im context '%{context_name}'" - status_active: Kontext ist aktiv new_context_post: "' wird ebenfalls angelegt. Fortfahren?" + status_active: Kontext ist aktiv 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 - sidebar: - list_name_active_contexts: Aktive Kontexte - list_name_active_projects: Aktive Projekte - list_empty: Keine - list_name_completed_projects: Abgeschlossene Projekte - list_name_hidden_projects: Versteckte Projekte - list_name_hidden_contexts: Versteckte Kontexte datetime: prompts: minute: Minuten @@ -895,30 +896,30 @@ de: 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 + 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_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_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" + cas_create_account: "Wenn du die Anfrage fortsetzen m\xC3\xB6chtest, klicke bitte hier: %{signup_link}" cas_signup_link: Account beantragen account_login: Account-Anmeldung session_will_not_expire: Sitzung wird nicht ablaufen. successful: "Anmeldung erfolgreich. Willkommen zur\xC3\xBCck!" - option_separator: oder, session_time_out: Sitzung abgelaufen. Bitte %{link} session_will_expire: "Sitzung wird nach %{hours} Stunde(n) der Inaktivit\xC3\xA4t ablaufen." + option_separator: oder, login_standard: "zur\xC3\xBCck zum Standard-Login" - 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. search: contexts_matching_query: Kontexte entsprechen der Suche tags_matching_query: Tags entsprechen der Suche - projects_matching_query: Projekte entsprechen der Suche notes_matching_query: Notizen entsprechen der Suche no_results: Die Suche ergab kein Ergebnis. todos_matching_query: Todos entsprechen der Suche + projects_matching_query: Projekte entsprechen der Suche diff --git a/config/locales/en.yml b/config/locales/en.yml index db45bfc2..b612c6e6 100644 --- a/config/locales/en.yml +++ b/config/locales/en.yml @@ -465,10 +465,11 @@ en: action_saved_to_tickler: "Action saved to tickler" added_new_project: "Added new project" added_new_context: "Added new context" - error_starring: "Could not toggle the star of this todo \'%{description}\'" + error_starring: "Could not toggle the star of this todo '%{description}'" error_toggle_complete: "Could not mark this todo complete" recurrence_completed: "There is no next action after the recurring action you just finished. The recurrence is completed" tagged_with: "tagged with ‘%{tag_name}’" + action_deferred: "The action '%{description}' was deferred" no_actions_found_title: "No actions found" no_actions_found: "Currently there are no incomplete actions." no_actions_with: "Currently there are no incomplete actions with the tag '%{tag_name}'" diff --git a/config/locales/es.yml b/config/locales/es.yml index 5d8285e3..41a86229 100644 --- a/config/locales/es.yml +++ b/config/locales/es.yml @@ -3,7 +3,6 @@ es: layouts: toggle_notes: Activar/Desactivar notas next_actions_rss_feed: RSS feed of next actions - toggle_notes_title: Activar/Desactivar todas las notas mobile_navigation: logout: "Cerrar sesi\xC3\xB3n" feeds: Feeds @@ -13,9 +12,10 @@ es: tickler: Tickler contexts: 2-Contextos home: 1-Inicio + toggle_notes_title: Activar/Desactivar todas las notas navigation: - manage_users_title: "A\xC3\xB1adir o eliminar usuarios" recurring_todos: Tareas repetitivas + manage_users_title: "A\xC3\xB1adir o eliminar usuarios" api_docs: REST API Docs feeds: Feeds starred: Estrellas @@ -24,16 +24,16 @@ es: tickler_title: Tickler manage_users: Administrar usuarios export_title: Import and export data - preferences: Preferencias integrations_: Integrar Tracks + preferences: Preferencias feeds_title: See a list of available feeds calendar_title: Calendario de las acciones por - home_title: Inicio + 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 - stats_title: See your statistics organize: Organizar view: Ver completed_tasks_title: Completed @@ -71,8 +71,8 @@ es: 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_before_id: "Nueva acci\xC3\xB3n junto con la identificaci\xC3\xB3n" applescript_success_after_id: creado + applescript_success_before_id: "Nueva acci\xC3\xB3n junto con la identificaci\xC3\xB3n" common: back: !binary | QXRyw6Fz @@ -84,50 +84,50 @@ es: previous: Anterior logout: Salir go_back: "Volver atr\xC3\xA1s" - cancel: Cancelar week: semana + cancel: Cancelar none: Ninguno second: Segundo - month: mes optional: opcional + month: mes notes: Notas forum: Foro server_error: Ha ocurrido un error en el servidor. last: "\xC3\x9Altimo" - projects: Proyectos action: Tarea + projects: Proyectos project: Proyecto contribute: Contribuir ok: Ok website: Website - numbered_step: Paso %{number} first: Primero - fourth: Cuarto + numbered_step: Paso %{number} 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" alphabetically_confirm: "\xC2\xBFEst\xC3\xA1 seguro que desea ordenar los proyectos por orden alfab\xC3\xA9tico? Esto reemplazar\xC3\xA1 el orden existente." sort: Ordenar + alphabetically_title: "Proyectos de ordenar alfab\xC3\xA9ticamente" by_task_count: "Por n\xC3\xBAmero de tareas" + fourth: Cuarto create: Crear months: meses - todo: Todo - context: Contexto contexts: Contextos + context: Contexto + todo: Todo next: "Pr\xC3\xB3ximo" - errors_with_fields: "Ha habido problemas con los siguientes campos:" description: "Descripci\xC3\xB3n" + errors_with_fields: "Ha habido problemas con los siguientes campos:" drag_handle: ARRASTRAR - bugs: Errores update: Actualizar + bugs: Errores weeks: semanas forth: Siguiente wiki: Wiki search: Buscar - ajaxError: Hubo un error al recuperar desde el servidor email: Email + ajaxError: Hubo un error al recuperar desde el servidor models: project: feed_title: Tracks Projects @@ -149,18 +149,18 @@ es: predecessors: Depende de la preference: show_hidden_projects_in_sidebar: Mostrar proyectos ocultos en el lateral - show_hidden_contexts_in_sidebar: Mostrar los contextos ocultos en el lateral date_format: Formato de fecha + show_hidden_contexts_in_sidebar: Mostrar los contextos ocultos en el lateral + mobile_todos_per_page: "Tareas por p\xC3\xA1gina (Vista M\xC3\xB3vil)" verbose_action_descriptors: "Descriptores detallado de acci\xC3\xB3n" sms_context: Contexto por defecto para el email 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" refresh: "Intervalo de actualizaci\xC3\xB3n (en minutos)" week_starts: La semana comienza - due_style: Debido al estilo time_zone: Zona horaria + due_style: Debido al estilo locale: Lugar sms_email: Email origen show_project_on_todo_done: "Ir a la p\xC3\xA1gina del proyecto al completar la tarea" @@ -186,8 +186,8 @@ es: exclusion: "est\xC3\xA1 reservado" odd: tiene que ser impar too_short: "es demasiado corto (m\xC3\xADnimo %{count} caracteres)" - empty: "no puede estar vac\xC3\xADo" wrong_length: es la longitud del mal (debe ser %{count} caracteres) + empty: "no puede estar vac\xC3\xADo" even: "debe ser a\xC3\xBAn" less_than: debe ser menor que %{count} greater_than: debe ser mayor que %{count} @@ -208,16 +208,17 @@ es: import_successful: "Importaci\xC3\xB3n se realiz\xC3\xB3 correctamente." import_errors: "Han ocurrido algunos errores durante la importaci\xC3\xB3n" stats: - tag_cloud_title: Tag cloud for all actions - tag_cloud_description: This tag cloud includes tags of all actions (completed, not completed, visible and/or hidden) - actions: Actions - tag_cloud_90days_title: Tag cloud actions in past 90 days totals_active_project_count: Of those %{count} are active projects - actions_avg_completion_time: Of all your completed actions, the average time to complete is %{count} days. + tag_cloud_title: Tag cloud for all actions + actions: Actions + tag_cloud_description: This tag cloud includes tags of all actions (completed, not completed, visible and/or hidden) + tag_cloud_90days_title: Tag cloud actions in past 90 days actions_last_year_legend: number_of_actions: Number of actions months_ago: Months ago totals_first_action: Since your first action on %{date} + actions_avg_completion_time: Of all your completed actions, the average time to complete is %{count} days. + totals_action_count: you have a total of %{count} actions legend: number_of_days: Number of days ago actions: Tareas @@ -226,62 +227,60 @@ es: percentage: Percentage running_time: Running time of an action (weeks) months_ago: Months ago - top10_longrunning: Top 10 longest running projects - actions_dow_30days_title: Day of week (past 30 days) - totals_action_count: you have a total of %{count} actions current_running_time_of_incomplete_visible_actions: Current running time of incomplete visible actions totals_deferred_actions: of which %{count} are deferred actions in the tickler running_time_legend: actions: Tareas percentage: Percentage weeks: Running time of an action (weeks). Click on a bar for more info + top10_longrunning: Top 10 longest running projects + actions_dow_30days_title: Day of week (past 30 days) + actions_lastyear_title: Actions in the last 12 months + totals_actions_completed: "%{count} of these are completed." totals_incomplete_actions: You have %{count} incomplete actions totals_unique_tags: Of those tags, %{count} are unique. actions_avg_completed_30days: and completed an average of %{count} actions per day. top5_contexts: Top 5 contexts - actions_lastyear_title: Actions in the last 12 months - totals_actions_completed: "%{count} of these are completed." + action_completion_time_title: Completion time (all completed actions) actions_last_year: Actions in the last years totals_context_count: You have %{count} contexts. - totals_visible_context_count: Of those %{count} are visible contexts projects: Projects + totals_visible_context_count: Of those %{count} are visible contexts totals_blocked_actions: "%{count} are dependent on the completion of their actions." - action_completion_time_title: Completion time (all completed actions) + actions_day_of_week_title: Day of week (all actions) + totals_project_count: You have %{count} projects. actions_min_max_completion_days: The Max-/minimum days to complete is %{min}/%{max}. actions_min_completion_time: The minimum time to complete is %{time}. no_tags_available: no tags available - actions_day_of_week_title: Day of week (all actions) - totals_project_count: You have %{count} projects. tags: Tags - actions_further: " and further" - totals_tag_count: You have %{count} tags placed on actions. running_time_all: Current running time of all incomplete actions + tag_cloud_90days_description: This tag cloud includes tags of actions that were created or completed in the past 90 days. actions_30days_title: Actions in the last 30 days + top5_visible_contexts_with_incomplete_actions: Top 5 visible contexts with incomplete actions time_of_day: Time of day (all actions) totals_hidden_project_count: "%{count} are hidden" + actions_further: " and further" tod30: Time of day (last 30 days) + totals_tag_count: You have %{count} tags placed on actions. more_stats_will_appear: More statistics will appear here once you have added some actions. - tag_cloud_90days_description: This tag cloud includes tags of actions that were created or completed in the past 90 days. - top5_visible_contexts_with_incomplete_actions: Top 5 visible contexts with incomplete actions - totals_completed_project_count: and %{count} are completed projects. click_to_return: Click %{link} to return to the statistics page. + other_actions_label: (otros) top10_projects_30days: Top 10 project in past 30 days + top10_projects: Top 10 projects spread_of_running_actions_for_visible_contexts: Spread of running actions for visible contexts + actions_avg_created: In the last 12 months you created on average %{count} actions actions_selected_from_week: "Actions selected from week " spread_of_actions_for_all_context: Spread of actions for all context + totals_completed_project_count: and %{count} are completed projects. click_to_show_actions_from_week: Click %{link} to show the actions from week %{week} and further. - other_actions_label: (otros) - top10_projects: Top 10 projects - actions_avg_created: In the last 12 months you created on average %{count} actions - actions_avg_completed: and completed an average of %{count} actions per month. totals: Totals time_of_day_legend: number_of_actions: "N\xC3\xBAmero de tareas" time_of_day: Time of day - contexts: Contexts click_to_return_link: here + contexts: Contexts totals_hidden_context_count: and %{count} are hidden contexts. - click_to_update_actions: Click on a bar in the chart to update the actions below. + actions_avg_completed: and completed an average of %{count} actions per month. labels: month_avg_completed: "%{months} Month avg completed" completed: Completed @@ -290,6 +289,7 @@ es: avg_completed: Avg completed created: Created no_actions_selected: No hay tareas seleccionadas. + click_to_update_actions: Click on a bar in the chart to update the actions below. running_time_all_legend: actions: Tareas percentage: Percentage @@ -304,12 +304,12 @@ es: 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 added_new_next_action: Added new next action + 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? @@ -321,10 +321,10 @@ es: edit_action_with_description: Edit the action '%{description}' action_due_on: (action due on %{date}) tags: Tags (separate with commas) + action_deleted_success: Successfully deleted next action 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 - 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} @@ -343,12 +343,12 @@ es: completed: actions completed due_today: due today due_within_a_week: due within a week + added_new_project: Added new project 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} append_in_this_project: in this project + error_deleting_item: There was an error deleting the item %{description} task_list_title: TRACKS::List tasks no_actions_due_this_week: No actions due in rest of this week no_recurring_todos: Currently there are no recurring todos @@ -356,22 +356,22 @@ es: 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}'? + completed_last_day: Completed in the last 24 hours + all_completed: Todas las acciones realizadas + error_saving_recurring: There was an error saving the recurring todo \'%{description}\' show_in_days: Show in %{days} days no_project: --No project-- - 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 - older_than_days: Older than %{count} days completed_tagged_page_title: "TRACKS:: Las tareas completadas con etiqueta %{tag_name}" + older_than_days: Older than %{count} days edit: Edit 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 @@ -380,22 +380,22 @@ es: show_on_date: Show on %{date} recurrence_period: Recurrence period 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. + confirm_delete: Are you sure that you want to delete the action '%{description}'? + deferred_tasks_title: TRACKS::Tickler 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}' clear_show_from_date: Clear show from date - 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 + 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? in_hidden_state: en estado oculto show_today: Show Today no_actions_found_title: No actions found 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 @@ -415,9 +415,9 @@ es: recurring_todos: Recurring todos delete_action: Delete action error_deleting_recurring: There was an error deleting the recurring todo \'%{description}\' + cannot_add_dependency_to_completed_todo: Cannot add this action as a dependency to a completed action! delete: Delete 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: @@ -429,19 +429,18 @@ es: new_related_todo_not_created_short: "no se cre\xC3\xB3 la tarea" completed_rest_of_week: Completado en el resto de esta semana error_starring: Could not toggle the star of this todo \'%{description}\' - show_tomorrow: Show Tomorrow calendar: get_in_ical_format: Get this calendar in iCal format due_next_week: Due next week due_this_week: Due in rest of this week no_actions_due_next_week: No actions due in next week - due_today: Due today no_actions_due_today: No actions due today + due_today: Due today due_next_month_and_later: Due in %{month} and later no_actions_due_after_this_month: No actions due after this month due_this_month: Due in rest of %{month} no_actions_due_this_month: No actions due in rest of this month - tagged_page_title: TRACKS::Tagged with '%{tag_name}' + show_tomorrow: Show Tomorrow recurrence: ends_on_number_times: Ends after %{number} times ends_on_date: Ends on %{date} @@ -453,6 +452,7 @@ es: daily_options: Settings for daily recurring actions monthly: Monthly starts_on: Starts on + show_option_always: always daily: Daily pattern: third: third @@ -480,10 +480,9 @@ es: every_day: every day the_xth_day_of_month: the %{x} %{day} of %{month} times: for %{number} times - every_year_on: every year on %{date} - first: first - show: show on_work_days: on work days + show: show + first: first day_names: - sunday - monday @@ -492,38 +491,40 @@ es: - thursday - friday - saturday + every_year_on: every year on %{date} fourth: fourth due: due - every_month: every month until: until - show_option_always: always + every_month: every month yearly_every_x_day: Every %{month} %{day} recurrence_on_options: Set recurrence on daily_every_number_day: Every %{number} day(s) - show_options: Show the todo weekly_every_number_week: Returns every %{number} week on ends_on: Ends on - yearly_options: Settings for yearly recurring actions + show_options: Show the todo show_days_before: "%{days} days before the todo is due" from_tickler: the date todo comes from tickler (no due date set) no_end_date: No end date - yearly_every_xth_day: The %{day} %{day_of_week} of %{month} day_x_on_every_x_month: Day %{day} on every %{month} month - monthly_every_xth_day: The %{day} %{day_of_week} of 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 + action_deferred: "La acci\xC3\xB3n \\'%{description}\\' se aplaz\xC3\xB3" + tagged_page_title: TRACKS::Tagged with '%{tag_name}' no_completed_recurring: Currently there are no completed recurring todos added_dependency: Added %{dependency} as dependency. - all_completed_tagged_page_title: "TRACKS:: Todas las tareas realizadas con etiqueta %{tag_name}" - no_deferred_actions: Currently there are no deferred actions. completed_rest_of_month: Completado en el resto de este mes + no_deferred_actions: Currently there are no deferred actions. + all_completed_tagged_page_title: "TRACKS:: Todas las tareas realizadas con etiqueta %{tag_name}" recurrence_completed: There is no next action after the recurring action you just finished. The recurrence is completed - in_pending_state: en estado pendiente - no_actions_found: Currently there are no incomplete actions. - error_toggle_complete: Could not mark this todo complete due: "Fecha l\xC3\xADmite" + no_actions_found: Currently there are no incomplete actions. + in_pending_state: en estado pendiente + error_toggle_complete: Could not mark this todo complete 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) recurring_action_saved: Recurring action saved + depends_on_separate_with_commas: Depende de (separar con comas) action_saved_to_tickler: Action saved to tickler completed_in_archive: one: There is one completed action in the archive. @@ -533,8 +534,8 @@ es: completed: in the last %{count} days due_date: with a due date %{due_date} or earlier overdue: Overdue - no_incomplete_actions: There are no incomplete actions add_new_recurring: Add a new recurring action + no_incomplete_actions: There are no incomplete actions notes: delete_confirmation: Are you sure that you want to delete the note '%{id}'? delete_item_title: Delete item @@ -552,10 +553,10 @@ es: completed: Completed completed_plural: Completed visible_plural: Visible - visible: Visible active_plural: Active - hidden: Hidden + visible: Visible active: Active + hidden: Hidden time: am: soy formats: @@ -565,73 +566,73 @@ es: long: "%B %d, %Y %H:%M" pm: pm projects: + 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 was_marked_hidden: has been marked as hidden - edit_project_title: Editar proyecto - default_tags_removed_notice: Removed the default tags - hide_form: Esconder formulario - page_title: "TRACKS::Project: %{project}" all_completed_tasks_title: "TRACKS:: Lista de todas las acciones terminado en '%{project_name}' Proyecto" - this_project: This project - project_state: Project is %{state}. + page_title: "TRACKS::Project: %{project}" + hide_form: Esconder formulario show_form_title: Create a new project list_completed_projects: "TRACKS:: Lista de Proyectos Realizados" to_new_project_page: Take me to the new project page no_notes_attached: Currently there are no notes attached to this project + this_project: This project deferred_actions_empty: There are no deferred actions for this project - notes: Notes + project_state: Project is %{state}. no_last_completed_projects: No hay proyectos terminados encontrado todos_append: in this project + 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 - notes_empty: There are no notes for this project with_no_default_context: with no default context delete_project: Delete project completed_actions_empty: No hay tareas completadas para este proyecto + 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 - delete_project_confirmation: Are you sure that you want to delete the project '%{name}'? - project_saved_status: Project saved add_project: "A\xC3\xB1adir Proyecto" + with_default_tags: and with '%{tags}' as the default tags add_note: "A\xC3\xB1adir una nota" + list_projects: TRACKS::Lista de Proyectos set_default_tags_notice: Set project's default tags to %{default_tags} is_active: "est\xC3\xA1 activo" settings: Settings + project_saved_status: Project saved completed_projects: Proyectos completados - with_default_tags: and with '%{tags}' as the default tags - list_projects: TRACKS::Lista de Proyectos - delete_project_title: Delete the project completed_tasks_title: "TRACKS:: Lista de Acciones completadas en '%{project_name}' Proyecto" + delete_project_title: Delete the project hidden_projects: Proyectos ocultos - default_context_removed: Eliminado el contexto por defecto - completed_actions: Tareas completadas para este proyecto add_note_submit: "A\xC3\xB1adir nota" was_marked_complete: has been marked as completed + completed_actions: Tareas completadas para este proyecto + default_context_removed: Eliminado el contexto por defecto edit_project_settings: Edit Project Settings - default_context: The default context for this project is %{context} active_projects: Active projects + default_context: The default context for this project is %{context} status_project_name_changed: Name of project was changed no_default_context: Este proyecto no tiene un contexto por defecto - state: This project is %{state} with_no_default_tags: and with no default tags + state: This project is %{state} errors: user_unauthorized: "401 No autorizado: Solo los usuarios administrativos pueden acceder a esta funci\xC3\xB3n." preferences: change_identity_url: Change Your Identity URL - staleness_starts_after: Staleness starts after %{days} days open_id_url: Your OpenID URL is + staleness_starts_after: Staleness starts after %{days} days change_password: Change your password page_title: TRACKS::Preferences title: Your preferences token_description: Token (for feeds and API use) is_false: "false" show_number_completed: Show %{number} completed items + page_title_edit: TRACKS::Edit Preferences is_true: "true" edit_preferences: Edit preferences - page_title_edit: TRACKS::Edit Preferences sms_context_none: None generate_new_token: Generate a new token token_header: Your token @@ -699,67 +700,31 @@ es: send_feedback: "Env\xC3\xADa comentarios sobre el %{version}" shared: multiple_next_actions: Multiple next actions (one on each line) - hide_form: Esconder formulario toggle_single: Add a next action + hide_form: Esconder formulario add_action: "A\xC3\xB1adir tarea" add_actions: "A\xC3\xB1adir tareas" tags_for_all_actions: Tags for all actions (sep. with commas) + project_for_all_actions: Project for all actions context_for_all_actions: Context for all actions toggle_multi: Add multiple next actions toggle_single_title: Add a new next action - project_for_all_actions: Project for all actions separate_tags_with_commas: separar con comas toggle_multi_title: Toggle single/multi new action form hide_action_form_title: Hide new action form - users: - total_contexts: Total contexts - failed_to_delete_user: Failed to delete user %{username} - first_user_heading: "Welcome to TRACKS. To get started, please create an admin account:" - auth_type_update_error: "There was a problem updating your authentication type: %{error_messages}" - openid_url_verified: You have successfully verified %{url} as your identity and set your authentication type to OpenID. - destroy_successful: User %{login} was successfully destroyed - successfully_deleted_user: Successfully deleted user %{username} - new_token_generated: New token successfully generated - total_projects: Total projects - signup_successful: Signup successful for user %{username}. - change_password_submit: Change password - no_signups_title: TRACKS::No signups - user_created: User created. - account_signup: Account signup - manage_users: Manage users - password_updated: Password updated. - signup: Signup - confirm_password: Confirm password - new_user_heading: "Sign up a new user:" - auth_type_updated: Authentication type updated. - total_actions: Total actions - desired_login: Desired login - 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. - password_confirmation_label: Confirm password - destroy_error: There was an error deleting the user %{login} - choose_password: Choose password - label_auth_type: Authentication type - new_password_label: New password - register_with_cas: With your CAS username - new_user_title: TRACKS::Sign up as the admin user - destroy_user: Destroy user - total_users_count: You have a total of %{count} users - destroy_confirmation: "Warning: this will delete user '%{login}', all their actions, contexts, project and notes. Are you sure that you want to continue?" - signup_new_user: Sign up new user - 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 - identity_url: Identity URL - 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 + sidebar: + list_name_active_contexts: Active contexts + list_name_active_projects: Active projects + list_empty: None + list_name_completed_projects: Completed projects + list_name_hidden_projects: Hidden projects + list_name_hidden_contexts: Hidden contexts 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 + legend: "Leyenda:" rss_feed: RSS Feed choose_project: Elegir el proyecto que quiere un canal de all_projects: Todos los proyectos @@ -778,40 +743,76 @@ es: 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" project_centric: "Feeds de acciones incompletas en un proyecto espec\xC3\xADfico" + users: + auth_type_update_error: "There was a problem updating your authentication type: %{error_messages}" + openid_url_verified: You have successfully verified %{url} as your identity and set your authentication type to OpenID. + destroy_successful: User %{login} was successfully destroyed + total_contexts: Total contexts + successfully_deleted_user: Successfully deleted user %{username} + failed_to_delete_user: Failed to delete user %{username} + first_user_heading: "Welcome to TRACKS. To get started, please create an admin account:" + new_token_generated: New token successfully generated + total_projects: Total projects + signup_successful: Signup successful for user %{username}. + change_password_submit: Change password + no_signups_title: TRACKS::No signups + user_created: User created. + account_signup: Account signup + manage_users: Manage users + password_updated: Password updated. + confirm_password: Confirm password + signup: Signup + new_user_heading: "Sign up a new user:" + auth_type_updated: Authentication type updated. + total_actions: Total actions + desired_login: Desired 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. + password_confirmation_label: Confirm password + destroy_error: There was an error deleting the user %{login} + label_auth_type: Authentication type + new_password_label: New password + register_with_cas: With your CAS username + new_user_title: TRACKS::Sign up as the admin user + destroy_user: Destroy user + total_users_count: You have a total of %{count} users + destroy_confirmation: "Warning: this will delete user '%{login}', all their actions, contexts, project and notes. Are you sure that you want to continue?" + signup_new_user: Sign up new user + 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 + identity_url: Identity URL + change_authentication_type: Change authentication type + 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 - hide_form: Esconder formulario 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!" delete_context: Eliminar contexto - hide_form_title: Ocultar el formulario nuevo contexto edit_context: Editar contexto + hide_form_title: Ocultar el formulario nuevo contexto no_contexts_active: Actualmente no hay contextos activos context_hide: "\xC2\xBFEsconder de la p\xC3\xA1gina principal?" hidden_contexts: Contextos ocultos save_status_message: Contexto guardado - show_form: Crear un nuevo contexto add_context: "A\xC3\xB1adir contexto" + show_form: Crear un nuevo contexto visible_contexts: Contextos visible - context_name: Nombre del contexto update_status_message: Nombre de contexto ha cambiado + context_name: Nombre del contexto completed_tasks_title: "TRACKS:: Las acciones completadas en '%{context_name}' el contexto" - status_active: "El contexto est\xC3\xA1 activo" new_context_post: "' Tambi\xC3\xA9n se ha creado. \xC2\xBFEst\xC3\xA1 seguro?" + status_active: "El contexto est\xC3\xA1 activo" 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 - sidebar: - list_name_active_contexts: Active contexts - list_name_active_projects: Active projects - list_empty: None - list_name_completed_projects: Completed projects - list_name_hidden_projects: Hidden projects - list_name_hidden_contexts: Hidden contexts datetime: prompts: minute: Minuto @@ -866,30 +867,30 @@ es: openid_identity_url_not_found: Sorry, no user by that identity URL exists (%{identity_url}) user_no_expiry: Stay logged in sign_in: Entrar + successful_with_session_info: "Login successful:" + please_login: Please log in to use Tracks cas_logged_in_greeting: Hello, %{username}! You are authenticated. 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_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" + cas_create_account: If you like to request on please go here to %{signup_link} cas_signup_link: Request account account_login: Acceso a la cuenta session_will_not_expire: session will not expire. successful: "Has entrado con \xC3\xA9xito. Bienvenido!" - option_separator: or, session_time_out: Session has timed out. Please %{link} session_will_expire: session will expire after %{hours} hour(s) of inactivity. + option_separator: or, login_standard: go back to the standard login - 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. search: contexts_matching_query: Contexts matching query tags_matching_query: Tags matching query - projects_matching_query: Projects matching query notes_matching_query: Notes matching query no_results: Your search yielded no results. todos_matching_query: Todos matching query + projects_matching_query: Projects matching query diff --git a/config/locales/nl.yml b/config/locales/nl.yml index 08406e59..c6f4ef18 100644 --- a/config/locales/nl.yml +++ b/config/locales/nl.yml @@ -3,7 +3,6 @@ nl: layouts: toggle_notes: Toggle notities next_actions_rss_feed: RSS-feed van de acties - toggle_notes_title: Toggle alle notities mobile_navigation: logout: Afmelden feeds: Feeds @@ -13,9 +12,10 @@ nl: tickler: Tickler contexts: 2-Contexten home: 1-Start + toggle_notes_title: Toggle alle notities navigation: - manage_users_title: Toevoegen of verwijderen gebruikers recurring_todos: Terugkerende acties + manage_users_title: Toevoegen of verwijderen gebruikers api_docs: REST API Docs feeds: Feeds starred: Ster @@ -24,16 +24,16 @@ nl: tickler_title: Tickler manage_users: Beheren gebruikers export_title: Import en export van gegevens - integrations_: Integreer Tracks preferences: Voorkeuren + integrations_: Integreer Tracks feeds_title: Zie een lijst met beschikbare feeds calendar_title: Kalender met acties met deadline - home_title: Start + 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 - stats_title: Zie je statistieken organize: Organiseer view: Bekijk completed_tasks_title: Afgerond @@ -71,8 +71,8 @@ nl: opensearch_description: Zoek in Tracks applescript_next_action_prompt: "Omschrijving van de actie:" gmail_description: Gadget om Tracks toe te voegen aan Gmail als een gadget - applescript_success_before_id: Nieuwe actie met ID applescript_success_after_id: gemaakt + applescript_success_before_id: Nieuwe actie met ID common: back: Terug third: Derde @@ -82,50 +82,50 @@ nl: previous: Vorige logout: Log uit go_back: Ga terug - week: week cancel: Annuleer + week: week none: Geen second: Tweede - month: maand optional: optioneel + month: maand notes: Notities forum: Forum server_error: Een fout heeft op de server plaatsgevonden last: Laatste - action: Actie projects: Projecten + action: Actie project: Project contribute: Bijdragen ok: Ok website: Website - numbered_step: Stap %{number} first: Eerste - fourth: Vierde + numbered_step: Stap %{number} 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 alphabetically_confirm: Weet u zeker dat u deze projecten alfabetisch wilt sorteren? Dat zal de huidige sorteervolgorde aanpassen. sort: Sorteer + alphabetically_title: Sorteer projecten alfabetisch by_task_count: Op aantal acties + fourth: Vierde create: Maken months: maanden - todo: actie - contexts: Contexten context: Context + contexts: Contexten + todo: actie next: Volgende - errors_with_fields: Er waren problemen met de volgende velden description: Beschrijving + errors_with_fields: Er waren problemen met de volgende velden drag_handle: SLEEP - bugs: Fouten update: Bijwerken + bugs: Fouten weeks: weken forth: Vierde wiki: Wiki search: Zoeken - email: E-mail ajaxError: Er is een fout opgetreden bij het ophalen van gegevens van de server + email: E-mail models: project: feed_title: Tracks Projecten @@ -158,18 +158,18 @@ nl: due: Deadline 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 + show_hidden_contexts_in_sidebar: Toon verborgen contexten in sidebar + mobile_todos_per_page: Acties per pagina (mobiel) verbose_action_descriptors: Context en project uitschrijven in actielijst sms_context: Standaard context voor email staleness_starts: Begin van markeren openstaande actie - mobile_todos_per_page: Acties per pagina (mobiel) title_date_format: Datum formaat in titel show_number_completed: Aantal te tonen afgeronde acties refresh: Ververs interval (in minuten) week_starts: Week start op - due_style: Deadline stijl time_zone: Tijdzone + due_style: Deadline stijl locale: Taal sms_email: Van email show_project_on_todo_done: Ga naar project pagina wanneer actie gereed is @@ -195,8 +195,8 @@ nl: exclusion: is gereserveerd odd: moet oneven zijn too_short: is te kort (minimum is %{count} karakters) - empty: mag niet leeg zijn wrong_length: heeft de verkeerde lengte (moet %{count} karakters lang zijn) + empty: mag niet leeg zijn even: moet even zijn less_than: moet kleiner zijn dan %{count} greater_than: moet groter zijn dan %{count} @@ -217,16 +217,17 @@ nl: import_successful: De import was succesvol import_errors: Er hebben zich fouten voorgedaan bij de import stats: - tag_cloud_title: Tag Cloud voor alle acties - tag_cloud_description: Deze tag cloud bevat tags van alle acties (afgerond, niet voltooid, zichtbaar en / of verborgen) - actions: Acties - tag_cloud_90days_title: Tag cloud met acties in afgelopen 90 dagen totals_active_project_count: Van deze zijn %{count} actieve projecten - actions_avg_completion_time: Van al uw afgeronde acties, de gemiddelde tijd dat dit in beslag nam is %{count} dagen. + tag_cloud_title: Tag Cloud voor alle acties + actions: Acties + tag_cloud_description: Deze tag cloud bevat tags van alle acties (afgerond, niet voltooid, zichtbaar en / of verborgen) + tag_cloud_90days_title: Tag cloud met acties in afgelopen 90 dagen actions_last_year_legend: number_of_actions: Aantal acties months_ago: Maanden geleden totals_first_action: Sinds uw eerste actie op %{date} + actions_avg_completion_time: Van al uw afgeronde acties, de gemiddelde tijd dat dit in beslag nam is %{count} dagen. + totals_action_count: u heeft een totaal van %{count} acties legend: number_of_days: Aantal dagen geleden actions: Acties @@ -235,62 +236,60 @@ nl: percentage: Percentage running_time: Looptijd van een actie (weken) months_ago: Maanden geleden - top10_longrunning: Top 10 langstlopende projecten - actions_dow_30days_title: Dag van de week (laatste 30 dagen) - totals_action_count: u heeft een totaal van %{count} acties current_running_time_of_incomplete_visible_actions: Huidige looptijd van onvolledige zichtbare acties totals_deferred_actions: waarvan %{count} uitgestelde acties in de tickler zijn running_time_legend: actions: Acties percentage: Percentage weeks: Looptijd van een actie (weken). Klik op een balk voor meer info + top10_longrunning: Top 10 langstlopende projecten + actions_dow_30days_title: Dag van de week (laatste 30 dagen) + actions_lastyear_title: Acties in de afgelopen 12 maanden + totals_actions_completed: "%{count} van deze zijn voltooid." totals_incomplete_actions: U heeft %{count} onvolledige acties totals_unique_tags: Van deze tags zijn %{count} uniek. actions_avg_completed_30days: en voltooide een gemiddelde van %{count} acties per dag. top5_contexts: Top 5 contexten - actions_lastyear_title: Acties in de afgelopen 12 maanden - totals_actions_completed: "%{count} van deze zijn voltooid." + action_completion_time_title: Doorlooptijd (alle voltooide acties) actions_last_year: Acties in de afgelopen jaren totals_context_count: U heeft %{count} contexten. - totals_visible_context_count: Van deze zijn %{count} zichtbare contexten projects: Projecten + totals_visible_context_count: Van deze zijn %{count} zichtbare contexten totals_blocked_actions: "%{count} zijn afhankelijk van de voltooiing van hun acties." - action_completion_time_title: Doorlooptijd (alle voltooide acties) + actions_day_of_week_title: Dag van de week (alle acties) + totals_project_count: U heeft %{count} projecten. actions_min_max_completion_days: De max-/minimum dagen tot voltooiing is %{min}/%{max}. actions_min_completion_time: De minimale tijd tot afronding is %{time}. no_tags_available: geen tags beschikbaar - actions_day_of_week_title: Dag van de week (alle acties) - totals_project_count: U heeft %{count} projecten. tags: Tags - actions_further: en verder - totals_tag_count: U heeft %{count} tags geplaatst op acties. running_time_all: Huidige looptijd van alle onvolledige acties + tag_cloud_90days_description: Deze tag cloud bevat tags van acties die zijn gemaakt of voltooid in de afgelopen 90 dagen. actions_30days_title: Acties in de afgelopen 30 dagen + top5_visible_contexts_with_incomplete_actions: Top 5 zichtbare contexten met onvolledige acties time_of_day: Tijd van de dag (alle acties) totals_hidden_project_count: "%{count} zijn verborgen" + actions_further: en verder tod30: Tijd van de dag (laatste 30 dagen) + totals_tag_count: U heeft %{count} tags geplaatst op acties. more_stats_will_appear: Meer statistieken zullen hier verschijnen zodra u acties hebt toegevoegd. - tag_cloud_90days_description: Deze tag cloud bevat tags van acties die zijn gemaakt of voltooid in de afgelopen 90 dagen. - top5_visible_contexts_with_incomplete_actions: Top 5 zichtbare contexten met onvolledige acties - totals_completed_project_count: en %{count} zijn afgeronde projecten. click_to_return: Klik %{link} om terug te keren naar de statistieken pagina. + other_actions_label: (anderen) top10_projects_30days: Top 10 project in de laatste 30 dagen + top10_projects: Top 10 projecten spread_of_running_actions_for_visible_contexts: Verdeling van actieve acties voor zichtbare contexten + actions_avg_created: In de afgelopen 12 maanden heeft u gemiddeld%{count} acties aangemaakt actions_selected_from_week: Gekozen acties van week spread_of_actions_for_all_context: Verdeling van acties voor alle contexten + totals_completed_project_count: en %{count} zijn afgeronde projecten. click_to_show_actions_from_week: Klik %{link} om de acties van week %{week} en verder te zien. - other_actions_label: (anderen) - top10_projects: Top 10 projecten - actions_avg_created: In de afgelopen 12 maanden heeft u gemiddeld%{count} acties aangemaakt - actions_avg_completed: en voltooide een gemiddelde van %{count} acties per maand. totals: Totalen time_of_day_legend: number_of_actions: Aantal acties time_of_day: Tijd van de dag - contexts: Contexten click_to_return_link: hier + contexts: Contexten totals_hidden_context_count: en %{count} zijn verborgen contexten. - click_to_update_actions: Klik op een balk in de grafiek op de acties hieronder aan te passen. + actions_avg_completed: en voltooide een gemiddelde van %{count} acties per maand. labels: month_avg_completed: "%{months} gem afgerond per maand" completed: Afgerond @@ -299,6 +298,7 @@ nl: avg_completed: Gem afgerond created: Gemaakt no_actions_selected: Er zijn geen acties geselecteerd. + click_to_update_actions: Klik op een balk in de grafiek op de acties hieronder aan te passen. running_time_all_legend: actions: Acties percentage: Percentage @@ -313,12 +313,12 @@ nl: show_from: Toon vanaf error_starring_recurring: Kon niet de ster van deze terugkerende actie niet omgezetten \'%{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 added_new_next_action: Nieuwe actie toegevoegd + 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? @@ -330,10 +330,10 @@ nl: edit_action_with_description: Bewerk de actie '%{description}' action_due_on: (deadline actie op %{date}) tags: Tags (gescheiden door komma's) + action_deleted_success: Actie succesvol verwijderd archived_tasks_title: "TRACKS:: Gearchiveerde voltooide taken" remove_dependency: Verwijder afhankelijkheid (zal niet de actie zelf verwijderen) list_incomplete_next_actions: Toon onvoltooide acties - 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}' @@ -352,12 +352,12 @@ nl: completed: acties voltooid due_today: deadline vandaag due_within_a_week: deadline binnen een week + added_new_project: Nieuw project toegevoegd 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}' append_in_this_project: in dit project + error_deleting_item: Er is een fout opgetreden bij het verwijderen van het item '%{description}' task_list_title: TRACKS::Toon acties no_actions_due_this_week: Geen acties met deadline in rest van deze week no_recurring_todos: Momenteel zijn er geen terugkerende acties @@ -365,22 +365,22 @@ nl: 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? + completed_last_day: Voltooid in de laatste 24 uur + all_completed: Alle afgeronde acties + error_saving_recurring: Er is een fout opgetreden het opslaan van de terugkerende actie '%{description}' show_in_days: Toon over %{days} dagen no_project: -- Geen project -- - 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 - older_than_days: Ouder dan %{count} dagen completed_tagged_page_title: "TRACKS:: Afgeronde acties met tag %{tag_name}" + older_than_days: Ouder dan %{count} dagen edit: Bewerken 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 @@ -389,22 +389,22 @@ nl: show_on_date: Toon op %{date} recurrence_period: Herhaling periode 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. + confirm_delete: Weet u zeker dat u de actie '%{description}' wilt verwijderen? + deferred_tasks_title: TRACKS::Tickler 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}' clear_show_from_date: Maak de datum Tonen Vanaf leeg - 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 + 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? in_hidden_state: in verborgen toestand show_today: Toon vandaag no_actions_found_title: Geen acties gevonden 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 @@ -424,9 +424,9 @@ nl: recurring_todos: Terugkerende acties delete_action: Verwijder actie error_deleting_recurring: Er is een fout opgetreden bij het verwijderen van het item \'%{description}\' + cannot_add_dependency_to_completed_todo: Kan deze actie niet als een afhankelijkheid van een voltooide actie toevoegen! delete: Verwijder 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: @@ -438,19 +438,18 @@ nl: new_related_todo_not_created_short: een nieuwe actie is niet gemaakt completed_rest_of_week: Afgerond in de rest van deze week error_starring: Kon niet de ster van deze actie niet omzetten \'%{description}\' - show_tomorrow: Toon morgen calendar: get_in_ical_format: Ontvang deze agenda in iCal-formaat due_next_week: Deadline volgende week due_this_week: Deadline in rest van deze week no_actions_due_next_week: Geen acties met deadline in volgende week - due_today: Deadline vandaag no_actions_due_today: Geen acties met deadline vandaag + due_today: Deadline vandaag due_next_month_and_later: Deadline in %{month} en later no_actions_due_after_this_month: Geen acties met deadline na deze maand due_this_month: Deadline in rest van %{month} no_actions_due_this_month: Geen acties met deadline in de rest van deze maand - tagged_page_title: TRACKS::Tagged met '%{tag_name}' + show_tomorrow: Toon morgen recurrence: ends_on_number_times: Eindigt na %{number} keer ends_on_date: Eindigt op %{date} @@ -462,6 +461,7 @@ nl: daily_options: Instellingen voor dagelijks terugkerende acties monthly: Maandelijks starts_on: Begint op + show_option_always: altijd daily: Dagelijks pattern: third: derde @@ -487,12 +487,11 @@ nl: from: vanaf last: laatste every_day: elke dag - times: voor %{number} keer the_xth_day_of_month: de %{x} %{day} van %{month} - show: Tonen - first: eerste - every_year_on: elk jaar op %{date} + times: voor %{number} keer on_work_days: op werkdagen + first: eerste + show: Tonen day_names: - zondag - maandag @@ -501,38 +500,40 @@ nl: - donderdag - vrijdag - zaterdag + every_year_on: elk jaar op %{date} fourth: vierde due: Deadline - every_month: elke maand until: tot - show_option_always: altijd + every_month: elke maand yearly_every_x_day: Elke %{month} %{day} recurrence_on_options: Stel herhaling in op daily_every_number_day: Elke %{number} dag(en) - show_options: Toon de actie weekly_every_number_week: Herhaalt elke %{number} weken op ends_on: Eindigt op - yearly_options: Instellingen voor jaarlijks terugkerende acties + show_options: Toon de actie show_days_before: "%{days} dagen v\xC3\xB3\xC3\xB3r de deadline van actie" from_tickler: de datum dat de actie uit de tickler komt (geen deadline ingesteld) no_end_date: Geen einddatum - yearly_every_xth_day: De %{day} %{day_of_week} van %{month} day_x_on_every_x_month: Dag %{day} op elke %{month} maand - monthly_every_xth_day: De %{day} %{day_of_week} van 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 + action_deferred: De actie '%{description}' is uitgesteld + tagged_page_title: TRACKS::Tagged met '%{tag_name}' no_completed_recurring: Momenteel zijn er geen voltooide terugkerende acties added_dependency: "%{dependency} als afhankelijkheid toegevoegd." - all_completed_tagged_page_title: "TRACKS:: Alle afgeronde acties met tag %{tag_name}" - no_deferred_actions: Momenteel zijn er geen uitgestelde acties. completed_rest_of_month: Afgerond in de rest van deze maand + no_deferred_actions: Momenteel zijn er geen uitgestelde acties. + all_completed_tagged_page_title: "TRACKS:: Alle afgeronde acties met tag %{tag_name}" recurrence_completed: Er is geen volgende actie na de terugkerende actie die u zojuist hebt voltooid. De herhaling is voltooid - in_pending_state: in wachtende toestand - no_actions_found: Momenteel zijn er geen onafgeronde acties. - error_toggle_complete: Kon deze actie niet als afgerond markeren due: Deadline + no_actions_found: Momenteel zijn er geen onafgeronde acties. + in_pending_state: in wachtende toestand + error_toggle_complete: Kon deze actie niet als afgerond markeren 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) recurring_action_saved: Terugkerende actie opgeslagen + depends_on_separate_with_commas: Afhankelijk van (gescheiden door komma's) action_saved_to_tickler: Actie opgeslagen in tickler completed_in_archive: one: Er is een voltooide actie in het archief. @@ -542,8 +543,8 @@ nl: completed: in de afgelopen %{count} dagen due_date: met een deadline %{due_date} of eerder overdue: Achterstallig - no_incomplete_actions: Er zijn geen onvoltooide acties add_new_recurring: Voeg een nieuwe terugkerende actie toe + no_incomplete_actions: Er zijn geen onvoltooide acties notes: delete_confirmation: Weet u zeker dat u de notitie '%{id}' wilt verwijderen? delete_item_title: Verwijder item @@ -561,10 +562,10 @@ nl: completed: Afgerond completed_plural: Afgeronde visible_plural: Zichtbare - visible: Zichtbaar active_plural: Actieve - active: Actief + visible: Zichtbaar hidden: Verborgen + active: Actief time: am: ochtend formats: @@ -575,73 +576,73 @@ nl: long: "%A, %d. %B %Y, %H:%M" pm: middag projects: + 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 was_marked_hidden: is gemarkeerd als verborgen - edit_project_title: Bewerk project - default_tags_removed_notice: De standaard tags zijn verwijderd - hide_form: Verberg formulier - page_title: "TRACKS:: Project: %{project}" all_completed_tasks_title: TRACKS::Toon alle afgeronde acties in het project '{project_name}' - this_project: Dit project - project_state: Project is %{state}. + page_title: "TRACKS:: Project: %{project}" + hide_form: Verberg formulier show_form_title: Maak een nieuw project list_completed_projects: TRACKS::Toon afgeronde projecten to_new_project_page: Ga naar de nieuwe projectpagina no_notes_attached: Momenteel zijn er geen notities toegevoegd aan dit project + this_project: Dit project deferred_actions_empty: Er zijn geen uitgestelde acties voor dit project - notes: Notities + project_state: Project is %{state}. no_last_completed_projects: Geen afgeronde projecten gevonden todos_append: in dit project + 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 - notes_empty: Er zijn geen notities voor dit project with_no_default_context: zonder standaard context delete_project: Project verwijderen completed_actions_empty: Er zijn nog geen afgeronde acties voor 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}' 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? - project_saved_status: Project opgeslagen add_project: Voeg project toe + with_default_tags: en met '%{tags}' als de standaard tags add_note: Een notitie toevoegen + list_projects: "TRACKS:: Overzicht van projecten" set_default_tags_notice: Stel project standaard tags in op %{default_tags} is_active: is actief settings: Instellingen + project_saved_status: Project opgeslagen completed_projects: Voltooide projecten - with_default_tags: en met '%{tags}' als de standaard tags - list_projects: "TRACKS:: Overzicht van projecten" - delete_project_title: Verwijder het project completed_tasks_title: TRACKS::Toon afgeronde acties in het project '%{project_name}' + delete_project_title: Verwijder het project hidden_projects: Verborgen projecten - 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 + completed_actions: Afgeronde acties voor dit project + default_context_removed: Standaard context verwijderd edit_project_settings: Bewerk project instellingen - default_context: De standaard context voor dit project is %{context} active_projects: Actieve projecten + default_context: De standaard context voor dit project is %{context} status_project_name_changed: Naam van het project werd gewijzigd no_default_context: Dit project heeft geen standaard context - state: Dit project is %{state} with_no_default_tags: en zonder standaard tags + state: Dit project is %{state} errors: user_unauthorized: "401 Unauthorized: Alleen administratieve gebruikers mogen deze functie gebruiken." preferences: change_identity_url: Verander uw Identity URL - staleness_starts_after: Markeren openstaande acties begint na %{days} dagen open_id_url: Uw OpenID URL is + staleness_starts_after: Markeren openstaande acties begint na %{days} dagen change_password: Wijzig uw wachtwoord page_title: "TRACKS:: Voorkeuren" title: Uw voorkeuren token_description: Token (voor feeds en API gebruik) is_false: Nee show_number_completed: Toon %{number} voltooide items + page_title_edit: "TRACKS:: Voorkeuren bewerken" is_true: Ja edit_preferences: Voorkeuren bewerken - page_title_edit: "TRACKS:: Voorkeuren bewerken" sms_context_none: Geen generate_new_token: Genereer een nieuwe token token_header: Uw token @@ -711,6 +712,8 @@ nl: two_words_connector: en select: prompt: Selecteer + footer: + send_feedback: Stuur reactie op %{version} dates: month_names: - Januari @@ -733,28 +736,76 @@ nl: - Donderdag - Vrijdag - Zaterdag - footer: - send_feedback: Stuur reactie op %{version} shared: multiple_next_actions: Meerdere acties (een op elke regel) - hide_form: Verberg formulier toggle_single: Voeg een actie toe + hide_form: Verberg formulier add_action: Actie toevoegen add_actions: Toevoegen acties tags_for_all_actions: Tags voor alle acties (scheiden met een komma) + project_for_all_actions: Project voor alle acties context_for_all_actions: Context voor alle acties toggle_multi: Voeg meerdere acties toe toggle_single_title: Voeg een nieuwe actie toe - project_for_all_actions: Project voor alle acties separate_tags_with_commas: gescheiden door komma's toggle_multi_title: Toggle single / multi actie formulier hide_action_form_title: Verberg nieuwe actie formulier + sidebar: + list_name_active_contexts: Actieve contexten + list_name_active_projects: Actieve projecten + list_empty: Geen + list_name_completed_projects: Voltooide projecten + list_name_hidden_projects: Verborgen projecten + list_name_hidden_contexts: Verborgen contexten + users: + auth_type_update_error: "Er was een probleem met het bijwerken van uw authenticatietype: %{error_messages}" + openid_url_verified: Je hebt %{url} met succes geverifieerd als je identiteit en uw authenticatie type OpenID opgeslagen. + destroy_successful: Gebruiker %{login} met succes verwijderd + total_contexts: Totaal aantal contexten + successfully_deleted_user: Succesvol gebruiker %{username} verwijderd + failed_to_delete_user: Mislukt de gebruiker %{username} te verwijderen + first_user_heading: "Welkom bij TRACKS. Om te beginnen, maak dan een admin account:" + new_token_generated: Nieuwe token met succes gegenereerd + total_projects: Totaal aantal projecten + signup_successful: Aanmelding succesvol voor gebruiker %{username}. + change_password_submit: Wachtwoord wijzigen + no_signups_title: "TRACKS:: Geen nieuwe aanmeldingen" + user_created: Gebruiker aangemaakt. + account_signup: Aanmelden voor een account + manage_users: Beheren gebruikers + password_updated: Wachtwoord bijgewerkt. + confirm_password: Bevestig wachtwoord + signup: Aanmelden + new_user_heading: "Registreer een nieuwe gebruiker:" + auth_type_updated: Authenticatietype bijgewerkt. + total_actions: Totaal aanal acties + desired_login: Gewenste 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. + password_confirmation_label: Bevestig wachtwoord + destroy_error: Er is een fout opgetreden bij het verwijderen van de gebruiker '%{login}' + label_auth_type: Authenticatietype + new_password_label: Nieuw wachtwoord + register_with_cas: Met uw CAS gebruikersnaam + new_user_title: "TRACKS:: Aanmelden als de admin gebruiker" + destroy_user: Verwijder de gebruiker + total_users_count: Je hebt een totaal van %{count} gebruikers + destroy_confirmation: "Waarschuwing: dit zal de gebruiker '%{login} verwijderen met al zijn acties, contexten, projecten en notities. Weet u zeker dat u wilt doorgaan?" + signup_new_user: Registreer nieuwe gebruiker + 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 + identity_url: Identiteit URL + change_authentication_type: Wijzigen authenticatietype + total_notes: Totaal aantal notities + select_authentication_type: Selecteer uw nieuwe authenticatie type en klik op 'Wijzigen authenticatietype' om uw huidige instellingen te vervangen. 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 + legend: Legenda rss_feed: RSS Feed choose_project: Kies het project waar je een feed van wilt all_projects: Alle projecten @@ -773,83 +824,33 @@ nl: actions_completed_last_week: Acties afgerond in de afgelopen 7 dagen context_centric_actions: Feeds voor onafgeronde acties in een specifieke context project_centric: Feeds voor onafgeronde acties in een specifiek project - users: - total_contexts: Totaal aantal contexten - failed_to_delete_user: Mislukt de gebruiker %{username} te verwijderen - first_user_heading: "Welkom bij TRACKS. Om te beginnen, maak dan een admin account:" - auth_type_update_error: "Er was een probleem met het bijwerken van uw authenticatietype: %{error_messages}" - openid_url_verified: Je hebt %{url} met succes geverifieerd als je identiteit en uw authenticatie type OpenID opgeslagen. - destroy_successful: Gebruiker %{login} met succes verwijderd - successfully_deleted_user: Succesvol gebruiker %{username} verwijderd - new_token_generated: Nieuwe token met succes gegenereerd - total_projects: Totaal aantal projecten - signup_successful: Aanmelding succesvol voor gebruiker %{username}. - change_password_submit: Wachtwoord wijzigen - no_signups_title: "TRACKS:: Geen nieuwe aanmeldingen" - user_created: Gebruiker aangemaakt. - account_signup: Aanmelden voor een account - manage_users: Beheren gebruikers - password_updated: Wachtwoord bijgewerkt. - signup: Aanmelden - confirm_password: Bevestig wachtwoord - new_user_heading: "Registreer een nieuwe gebruiker:" - auth_type_updated: Authenticatietype bijgewerkt. - total_actions: Totaal aanal acties - desired_login: Gewenste login - 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. - password_confirmation_label: Bevestig wachtwoord - destroy_error: Er is een fout opgetreden bij het verwijderen van de gebruiker '%{login}' - choose_password: Kies een wachtwoord - label_auth_type: Authenticatietype - new_password_label: Nieuw wachtwoord - register_with_cas: Met uw CAS gebruikersnaam - new_user_title: "TRACKS:: Aanmelden als de admin gebruiker" - destroy_user: Verwijder de gebruiker - total_users_count: Je hebt een totaal van %{count} gebruikers - destroy_confirmation: "Waarschuwing: dit zal de gebruiker '%{login} verwijderen met al zijn acties, contexten, projecten en notities. Weet u zeker dat u wilt doorgaan?" - signup_new_user: Registreer nieuwe gebruiker - 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 - identity_url: Identiteit URL - 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 contexts: delete_context_title: Verwijder context - hide_form: Verberg formulier 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! delete_context: Verwijder context - hide_form_title: "Verberg formulier voor nieuwe context " edit_context: Bewerk context + hide_form_title: "Verberg formulier voor nieuwe context " no_contexts_active: Momenteel zijn er geen actieve contexten context_hide: Verberg van de start pagina? hidden_contexts: Verborgen contexten save_status_message: Context bewaard - show_form: Maak een nieuwe context add_context: Context toevoegen + show_form: Maak een nieuwe context visible_contexts: Zichtbare contexten - context_name: Context naam update_status_message: Naam van de context was veranderd + context_name: Context naam completed_tasks_title: "TRACKS:: Voltooid acties in de context '%{context_name}'" - status_active: Context is actief new_context_post: "' zal ook gemaakt worden. Weet u dit zeker?" + status_active: Context is actief 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 - sidebar: - list_name_active_contexts: Actieve contexten - list_name_active_projects: Actieve projecten - list_empty: Geen - list_name_completed_projects: Voltooide projecten - list_name_hidden_projects: Verborgen projecten - list_name_hidden_contexts: Verborgen contexten datetime: prompts: minute: Minuut @@ -900,30 +901,30 @@ nl: openid_identity_url_not_found: Sorry, geen gebruiker met die identiteit URL bestaat (%{identity_url}) user_no_expiry: Blijf ingelogd sign_in: Meld aan + successful_with_session_info: "Login succesvol:" + please_login: Log in om Tracks te gebruiken cas_logged_in_greeting: Hallo, %{username}! U bent geauthenticeerd. 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_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 + cas_create_account: Als u willen vragen ga hier om %{signup_link} cas_signup_link: Aanvragen account account_login: Account login session_will_not_expire: sessie zal niet verlopen. successful: Succesvol aangemeld. Welkom terug! - option_separator: of, session_time_out: Sessie is verlopen. Gelieve %{link} session_will_expire: sessie zal verlopen na %{hours} u(u)r(en) van inactiviteit. + option_separator: of, login_standard: Ga terug naar de standaard login - 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. search: contexts_matching_query: Contexten passend bij zoekopdracht tags_matching_query: Tags 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. todos_matching_query: Todos passend bij zoekopdracht + projects_matching_query: Projecten passend bij zoekopdracht diff --git a/config/routes.rb b/config/routes.rb index 1261ed40..7a551b1e 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -20,7 +20,7 @@ ActionController::Routing::Routes.draw do |map| map.resources :notes map.resources :todos, - :member => {:toggle_check => :put, :toggle_star => :put}, + :member => {:toggle_check => :put, :toggle_star => :put, :defer => :put}, :collection => {:check_deferred => :post, :filter_to_context => :post, :filter_to_project => :post, :done => :get, :all_done => :get } diff --git a/features/mobile_edit_a_todo.feature b/features/mobile_edit_a_todo.feature index 62b8ad77..5726d99a 100644 --- a/features/mobile_edit_a_todo.feature +++ b/features/mobile_edit_a_todo.feature @@ -17,13 +17,17 @@ Feature: Edit a next action from the mobile view Scenario: I can edit an action on the mobile page When I am on the home page Then the badge should show 1 - Then I should see "test action" + And I should see "test action" When I follow "test action" + Then I should see "Actions" + When I press "Edit this action" + Then I should see "Description" And I fill in "Description" with "changed action" And I press "Update" Then I should see "changed action" And I should not see "test action" When I follow "changed action" + And I press "Edit this action" And I check "done" And I press "Update" Then I should not see "changed action" @@ -36,3 +40,13 @@ Feature: Edit a next action from the mobile view Then the badge should show 0 When I follow "Feeds" Then I should see "Last 15 actions" + + Scenario: I can defer an action on the mobile page + When I am on the home page + Then the badge should show 1 + And I should see "test action" + When I follow "test action" + And I press "Defer 1 day" + Then I should see "There are no incomplete actions" + When I follow "Tickler" + Then I should see "test action" \ No newline at end of file