* Added time zone support: users can select their time zone on their account view.
* Updated Polish translation (Mariusz Olejnik). * Fixed: Projects should be listed with case mixed. git-svn-id: http://redmine.rubyforge.org/svn/trunk@917 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
a1f3497ec4
commit
deb182337d
|
@ -79,9 +79,15 @@ module ApplicationHelper
|
||||||
def format_time(time, include_date = true)
|
def format_time(time, include_date = true)
|
||||||
return nil unless time
|
return nil unless time
|
||||||
time = time.to_time if time.is_a?(String)
|
time = time.to_time if time.is_a?(String)
|
||||||
|
zone = User.current.time_zone
|
||||||
|
if time.utc?
|
||||||
|
local = zone ? zone.adjust(time) : time.getlocal
|
||||||
|
else
|
||||||
|
local = zone ? zone.adjust(time.getutc) : time
|
||||||
|
end
|
||||||
@date_format ||= (Setting.date_format.blank? || Setting.date_format.size < 2 ? l(:general_fmt_date) : Setting.date_format)
|
@date_format ||= (Setting.date_format.blank? || Setting.date_format.size < 2 ? l(:general_fmt_date) : Setting.date_format)
|
||||||
@time_format ||= (Setting.time_format.blank? ? l(:general_fmt_time) : Setting.time_format)
|
@time_format ||= (Setting.time_format.blank? ? l(:general_fmt_time) : Setting.time_format)
|
||||||
include_date ? time.strftime("#{@date_format} #{@time_format}") : time.strftime(@time_format)
|
include_date ? local.strftime("#{@date_format} #{@time_format}") : local.strftime(@time_format)
|
||||||
end
|
end
|
||||||
|
|
||||||
def authoring(created, author)
|
def authoring(created, author)
|
||||||
|
|
|
@ -150,7 +150,7 @@ class Project < ActiveRecord::Base
|
||||||
end
|
end
|
||||||
|
|
||||||
def <=>(project)
|
def <=>(project)
|
||||||
name <=> project.name
|
name.downcase <=> project.name.downcase
|
||||||
end
|
end
|
||||||
|
|
||||||
def allows_to?(action)
|
def allows_to?(action)
|
||||||
|
|
|
@ -130,6 +130,10 @@ class User < ActiveRecord::Base
|
||||||
self.preference ||= UserPreference.new(:user => self)
|
self.preference ||= UserPreference.new(:user => self)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def time_zone
|
||||||
|
self.pref.time_zone.nil? ? nil : TimeZone[self.pref.time_zone]
|
||||||
|
end
|
||||||
|
|
||||||
# Return user's RSS key (a 40 chars long string), used to access feeds
|
# Return user's RSS key (a 40 chars long string), used to access feeds
|
||||||
def rss_key
|
def rss_key
|
||||||
token = self.rss_token || Token.create(:user => self, :action => 'feeds')
|
token = self.rss_token || Token.create(:user => self, :action => 'feeds')
|
||||||
|
@ -231,6 +235,10 @@ class AnonymousUser < User
|
||||||
false
|
false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def time_zone
|
||||||
|
nil
|
||||||
|
end
|
||||||
|
|
||||||
# Anonymous user has no RSS key
|
# Anonymous user has no RSS key
|
||||||
def rss_key
|
def rss_key
|
||||||
nil
|
nil
|
||||||
|
|
|
@ -14,6 +14,7 @@
|
||||||
<p><%= f.select :language, lang_options_for_select %></p>
|
<p><%= f.select :language, lang_options_for_select %></p>
|
||||||
|
|
||||||
<% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %>
|
<% fields_for :pref, @user.pref, :builder => TabularFormBuilder, :lang => current_language do |pref_fields| %>
|
||||||
|
<p><%= pref_fields.select :time_zone, TimeZone.all.collect {|z| [ z.to_s, z.name ]}, :include_blank => true %></p>
|
||||||
<p><%= pref_fields.check_box :hide_mail %></p>
|
<p><%= pref_fields.check_box :hide_mail %></p>
|
||||||
<% end %>
|
<% end %>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
class AddUserPreferencesTimeZone < ActiveRecord::Migration
|
||||||
|
def self.up
|
||||||
|
add_column :user_preferences, :time_zone, :string
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.down
|
||||||
|
remove_column :user_preferences, :time_zone
|
||||||
|
end
|
||||||
|
end
|
|
@ -544,3 +544,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -544,3 +544,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -544,3 +544,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -169,6 +169,7 @@ field_assignable: Issues can be assigned to this role
|
||||||
field_redirect_existing_links: Redirect existing links
|
field_redirect_existing_links: Redirect existing links
|
||||||
field_estimated_hours: Estimated time
|
field_estimated_hours: Estimated time
|
||||||
field_column_names: Columns
|
field_column_names: Columns
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
||||||
setting_app_title: Application title
|
setting_app_title: Application title
|
||||||
setting_app_subtitle: Application subtitle
|
setting_app_subtitle: Application subtitle
|
||||||
|
|
|
@ -547,3 +547,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -169,6 +169,7 @@ field_assignable: Demandes assignables à ce rôle
|
||||||
field_redirect_existing_links: Rediriger les liens existants
|
field_redirect_existing_links: Rediriger les liens existants
|
||||||
field_estimated_hours: Temps estimé
|
field_estimated_hours: Temps estimé
|
||||||
field_column_names: Colonnes
|
field_column_names: Colonnes
|
||||||
|
field_time_zone: Fuseau horaire
|
||||||
|
|
||||||
setting_app_title: Titre de l'application
|
setting_app_title: Titre de l'application
|
||||||
setting_app_subtitle: Sous-titre de l'application
|
setting_app_subtitle: Sous-titre de l'application
|
||||||
|
|
|
@ -544,3 +544,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -544,3 +544,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -545,3 +545,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -544,3 +544,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -545,3 +545,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
119
lang/pl.yml
119
lang/pl.yml
|
@ -102,12 +102,12 @@ field_value: Wartość
|
||||||
field_category: Kategoria
|
field_category: Kategoria
|
||||||
field_title: Tytuł
|
field_title: Tytuł
|
||||||
field_project: Projekt
|
field_project: Projekt
|
||||||
field_issue: Zgłoszenie
|
field_issue: Zagadnienie
|
||||||
field_status: Status
|
field_status: Status
|
||||||
field_notes: Notatki
|
field_notes: Notatki
|
||||||
field_is_closed: Zgłoszenie zamknięte
|
field_is_closed: Zagadnienie zamknięte
|
||||||
field_is_default: Domyślny status
|
field_is_default: Domyślny status
|
||||||
field_tracker: Typ zgłoszenia
|
field_tracker: Typ zagadnienia
|
||||||
field_subject: Temat
|
field_subject: Temat
|
||||||
field_due_date: Data oddania
|
field_due_date: Data oddania
|
||||||
field_assigned_to: Przydzielony do
|
field_assigned_to: Przydzielony do
|
||||||
|
@ -117,9 +117,9 @@ field_user: Użytkownik
|
||||||
field_role: Rola
|
field_role: Rola
|
||||||
field_homepage: Strona www
|
field_homepage: Strona www
|
||||||
field_is_public: Publiczny
|
field_is_public: Publiczny
|
||||||
field_parent: Subprojekt
|
field_parent: Podprojekt
|
||||||
field_is_in_chlog: Zgłoszenia pokazane w zapisie zmian
|
field_is_in_chlog: Zagadnienie pokazywane w zapisie zmian
|
||||||
field_is_in_roadmap: Zgłoszenia pokazane na mapie
|
field_is_in_roadmap: Zagadnienie pokazywane na mapie
|
||||||
field_login: Login
|
field_login: Login
|
||||||
field_mail_notification: Powiadomienia Email
|
field_mail_notification: Powiadomienia Email
|
||||||
field_admin: Administrator
|
field_admin: Administrator
|
||||||
|
@ -152,8 +152,8 @@ field_hours: Godzin
|
||||||
field_activity: Aktywność
|
field_activity: Aktywność
|
||||||
field_spent_on: Data
|
field_spent_on: Data
|
||||||
field_identifier: Identifikator
|
field_identifier: Identifikator
|
||||||
field_is_filter: Używane jako filter
|
field_is_filter: Atrybut filtrowania
|
||||||
field_issue_to_id: Powiązane zgłoszenie
|
field_issue_to_id: Powiązania zagadnienia
|
||||||
field_delay: Opóźnienie
|
field_delay: Opóźnienie
|
||||||
|
|
||||||
setting_app_title: Tytuł aplikacji
|
setting_app_title: Tytuł aplikacji
|
||||||
|
@ -163,7 +163,7 @@ setting_default_language: Domyślny język
|
||||||
setting_login_required: Identyfikacja wymagana
|
setting_login_required: Identyfikacja wymagana
|
||||||
setting_self_registration: Własna rejestracja umożliwiona
|
setting_self_registration: Własna rejestracja umożliwiona
|
||||||
setting_attachment_max_size: Maks. rozm. załącznika
|
setting_attachment_max_size: Maks. rozm. załącznika
|
||||||
setting_issues_export_limit: Limit eksportu zgłoszeń
|
setting_issues_export_limit: Limit eksportu zagadnień
|
||||||
setting_mail_from: Adres email wysyłki
|
setting_mail_from: Adres email wysyłki
|
||||||
setting_host_name: Nazwa hosta
|
setting_host_name: Nazwa hosta
|
||||||
setting_text_formatting: Formatowanie tekstu
|
setting_text_formatting: Formatowanie tekstu
|
||||||
|
@ -184,10 +184,10 @@ label_project_new: Nowy projekt
|
||||||
label_project_plural: Projekty
|
label_project_plural: Projekty
|
||||||
label_project_all: Wszystkie projekty
|
label_project_all: Wszystkie projekty
|
||||||
label_project_latest: Ostatnie projekty
|
label_project_latest: Ostatnie projekty
|
||||||
label_issue: Zgłoszenie
|
label_issue: Zagadnienie
|
||||||
label_issue_new: Nowe zgłoszenie
|
label_issue_new: Nowe zagadnienie
|
||||||
label_issue_plural: Zgłoszenia
|
label_issue_plural: Zagadnienia
|
||||||
label_issue_view_all: Zobacz wszystkie zgłoszenia
|
label_issue_view_all: Zobacz wszystkie zagadnienia
|
||||||
label_document: Dokument
|
label_document: Dokument
|
||||||
label_document_new: Nowy dokument
|
label_document_new: Nowy dokument
|
||||||
label_document_plural: Dokumenty
|
label_document_plural: Dokumenty
|
||||||
|
@ -198,15 +198,15 @@ label_role_and_permissions: Role i Uprawnienia
|
||||||
label_member: Uczestnik
|
label_member: Uczestnik
|
||||||
label_member_new: Nowy uczestnik
|
label_member_new: Nowy uczestnik
|
||||||
label_member_plural: Uczestnicy
|
label_member_plural: Uczestnicy
|
||||||
label_tracker: Typ zgłoszenia
|
label_tracker: Typ zagadnienia
|
||||||
label_tracker_plural: Typy zgłoszeń
|
label_tracker_plural: Typy zagadnień
|
||||||
label_tracker_new: Nowy typ zgłoszenia
|
label_tracker_new: Nowy typ zagadnienia
|
||||||
label_workflow: Przepływ
|
label_workflow: Przepływ
|
||||||
label_issue_status: Status zgłoszenia
|
label_issue_status: Status zagadnienia
|
||||||
label_issue_status_plural: Statusy zgłoszeń
|
label_issue_status_plural: Statusy zagadnień
|
||||||
label_issue_status_new: Nowy status
|
label_issue_status_new: Nowy status
|
||||||
label_issue_category: Kategoria zgłoszenia
|
label_issue_category: Kategoria zagadnienia
|
||||||
label_issue_category_plural: Kategorie zgłoszeń
|
label_issue_category_plural: Kategorie zagadnień
|
||||||
label_issue_category_new: Nowa kategoria
|
label_issue_category_new: Nowa kategoria
|
||||||
label_custom_field: Dowolne pole
|
label_custom_field: Dowolne pole
|
||||||
label_custom_field_plural: Dowolne pola
|
label_custom_field_plural: Dowolne pola
|
||||||
|
@ -226,8 +226,8 @@ label_administration: Administracja
|
||||||
label_login: Login
|
label_login: Login
|
||||||
label_logout: Wylogowanie
|
label_logout: Wylogowanie
|
||||||
label_help: Pomoc
|
label_help: Pomoc
|
||||||
label_reported_issues: Zaraportowane zgłoszenia
|
label_reported_issues: Wprowadzone zagadnienia
|
||||||
label_assigned_to_me_issues: Zgłoszenia przypisane do mnie
|
label_assigned_to_me_issues: Zagadnienia przypisane do mnie
|
||||||
label_last_login: Ostatnie połączenie
|
label_last_login: Ostatnie połączenie
|
||||||
label_last_updates: Ostatnia zmieniana
|
label_last_updates: Ostatnia zmieniana
|
||||||
label_last_updates_plural: %d ostatnie zmiany
|
label_last_updates_plural: %d ostatnie zmiany
|
||||||
|
@ -244,8 +244,8 @@ label_subproject_plural: Podprojekty
|
||||||
label_min_max_length: Min - Maks długość
|
label_min_max_length: Min - Maks długość
|
||||||
label_list: Lista
|
label_list: Lista
|
||||||
label_date: Data
|
label_date: Data
|
||||||
label_integer: L. pojedyńcza
|
label_integer: Liczba całkowita
|
||||||
label_boolean: Wart. logiczna
|
label_boolean: Wartość logiczna
|
||||||
label_string: Tekst
|
label_string: Tekst
|
||||||
label_text: Długi tekst
|
label_text: Długi tekst
|
||||||
label_attribute: Atrybut
|
label_attribute: Atrybut
|
||||||
|
@ -333,7 +333,7 @@ label_deleted: usunięte
|
||||||
label_latest_revision: Ostatnia zmiana
|
label_latest_revision: Ostatnia zmiana
|
||||||
label_latest_revision_plural: Ostatnie zmiany
|
label_latest_revision_plural: Ostatnie zmiany
|
||||||
label_view_revisions: Pokaż zmiany
|
label_view_revisions: Pokaż zmiany
|
||||||
label_max_size: Kamsymalny rozmiar
|
label_max_size: Maksymalny rozmiar
|
||||||
label_on: 'włączone'
|
label_on: 'włączone'
|
||||||
label_sort_highest: Przesuń na górę
|
label_sort_highest: Przesuń na górę
|
||||||
label_sort_higher: Do góry
|
label_sort_higher: Do góry
|
||||||
|
@ -341,7 +341,7 @@ label_sort_lower: Do dołu
|
||||||
label_sort_lowest: Przesuń na dół
|
label_sort_lowest: Przesuń na dół
|
||||||
label_roadmap: Mapa
|
label_roadmap: Mapa
|
||||||
label_roadmap_due_in: W czasie
|
label_roadmap_due_in: W czasie
|
||||||
label_roadmap_no_issues: Brak zgłoszeń do tej wersji
|
label_roadmap_no_issues: Brak zagadnień do tej wersji
|
||||||
label_search: Szukaj
|
label_search: Szukaj
|
||||||
label_result_plural: Rezultatów
|
label_result_plural: Rezultatów
|
||||||
label_all_words: Wszystkie słowa
|
label_all_words: Wszystkie słowa
|
||||||
|
@ -356,7 +356,7 @@ label_current_version: Obecna wersja
|
||||||
label_preview: Podgląd
|
label_preview: Podgląd
|
||||||
label_feed_plural: Ilość RSS
|
label_feed_plural: Ilość RSS
|
||||||
label_changes_details: Szczegóły wszystkich zmian
|
label_changes_details: Szczegóły wszystkich zmian
|
||||||
label_issue_tracking: Śledzenie zgłoszeń
|
label_issue_tracking: Śledzenie zagadnień
|
||||||
label_spent_time: Spędzony czas
|
label_spent_time: Spędzony czas
|
||||||
label_f_hour: %.2f godzina
|
label_f_hour: %.2f godzina
|
||||||
label_f_hour_plural: %.2f godzin
|
label_f_hour_plural: %.2f godzin
|
||||||
|
@ -371,8 +371,8 @@ label_diff_side_by_side: obok siebie
|
||||||
label_options: Opcje
|
label_options: Opcje
|
||||||
label_copy_workflow_from: Kopiuj przepływ z
|
label_copy_workflow_from: Kopiuj przepływ z
|
||||||
label_permissions_report: Raport uprawnień
|
label_permissions_report: Raport uprawnień
|
||||||
label_watched_issues: Obserwowane zgłoszenia
|
label_watched_issues: Obserwowane zagadnienia
|
||||||
label_related_issues: Powiązane zgłoszenia
|
label_related_issues: Powiązane zagadnienia
|
||||||
label_applied_status: Stosowany status
|
label_applied_status: Stosowany status
|
||||||
label_loading: Ładowanie...
|
label_loading: Ładowanie...
|
||||||
label_relation_new: Nowe powiązanie
|
label_relation_new: Nowe powiązanie
|
||||||
|
@ -446,7 +446,7 @@ text_select_mail_notifications: Zaznacz czynności przy których użytkownik pow
|
||||||
text_regexp_info: np. ^[A-Z0-9]+$
|
text_regexp_info: np. ^[A-Z0-9]+$
|
||||||
text_min_max_length_info: 0 oznacza brak restrykcji
|
text_min_max_length_info: 0 oznacza brak restrykcji
|
||||||
text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane?
|
text_project_destroy_confirmation: Jesteś pewien, że chcesz usunąć ten projekt i wszyskie powiązane dane?
|
||||||
text_workflow_edit: Zaznacz rolę i typ zgłoszenia do edycji przepływu
|
text_workflow_edit: Zaznacz rolę i typ zagadnienia do edycji przepływu
|
||||||
text_are_you_sure: Jesteś pewien ?
|
text_are_you_sure: Jesteś pewien ?
|
||||||
text_journal_changed: zmienione %s do %s
|
text_journal_changed: zmienione %s do %s
|
||||||
text_journal_set_to: ustawione na %s
|
text_journal_set_to: ustawione na %s
|
||||||
|
@ -457,14 +457,14 @@ text_tip_task_begin_end_day: zadanie zaczynające i kończące się dzisiaj
|
||||||
text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.'
|
text_project_identifier_info: 'Małe litery (a-z), liczby i myślniki dozwolone.<br />Raz zapisany, identyfikator nie może być zmieniony.'
|
||||||
text_caracters_maximum: %d znaków maksymalnie.
|
text_caracters_maximum: %d znaków maksymalnie.
|
||||||
text_length_between: Długość pomiędzy %d i %d znaków.
|
text_length_between: Długość pomiędzy %d i %d znaków.
|
||||||
text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego typu zgłoszenia
|
text_tracker_no_workflow: Brak przepływu zefiniowanego dla tego typu zagadnienia
|
||||||
text_unallowed_characters: Niedozwolone znaki
|
text_unallowed_characters: Niedozwolone znaki
|
||||||
text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
|
text_comma_separated: Wielokrotne wartości dozwolone (rozdzielone przecinkami).
|
||||||
text_issues_ref_in_commit_messages: Zgłoszenia odnoszące i ustalające we wrzutkach CVS
|
text_issues_ref_in_commit_messages: Zagadnienia odnoszące i ustalające we wrzutkach CVS
|
||||||
|
|
||||||
default_role_manager: Kierownik
|
default_role_manager: Kierownik
|
||||||
default_role_developper: Programista
|
default_role_developper: Programista
|
||||||
default_role_reporter: Raportujący
|
default_role_reporter: Wprowadzajacy
|
||||||
default_tracker_bug: Błąd
|
default_tracker_bug: Błąd
|
||||||
default_tracker_feature: Cecha
|
default_tracker_feature: Cecha
|
||||||
default_tracker_support: Wsparcie
|
default_tracker_support: Wsparcie
|
||||||
|
@ -484,25 +484,25 @@ default_priority_immediate: Natyczmiastowy
|
||||||
default_activity_design: Projektowanie
|
default_activity_design: Projektowanie
|
||||||
default_activity_development: Rozwój
|
default_activity_development: Rozwój
|
||||||
|
|
||||||
enumeration_issue_priorities: Priorytety zgłoszeń
|
enumeration_issue_priorities: Priorytety zagadnień
|
||||||
enumeration_doc_categories: Kategorie dokumentów
|
enumeration_doc_categories: Kategorie dokumentów
|
||||||
enumeration_activities: Działania (śledzenie czasu)
|
enumeration_activities: Działania (śledzenie czasu)
|
||||||
button_rename: Zmień nazwę
|
button_rename: Zmień nazwę
|
||||||
text_issue_category_destroy_question: Zgłoszenia (%d) są przypisane do tej kategorii. Co chcesz uczynić?
|
text_issue_category_destroy_question: Zagadnienia (%d) są przypisane do tej kategorii. Co chcesz uczynić?
|
||||||
label_feeds_access_key_created_on: Klucz dostępu RSS stworzony %s dni temu
|
label_feeds_access_key_created_on: Klucz dostępu RSS stworzony %s dni temu
|
||||||
setting_cross_project_issue_relations: Zezwól na powiązania zgłoszeń między projektami
|
setting_cross_project_issue_relations: Zezwól na powiązania zagadnień między projektami
|
||||||
label_roadmap_overdue: %s spóźnienia
|
label_roadmap_overdue: %s spóźnienia
|
||||||
label_module_plural: Moduły
|
label_module_plural: Moduły
|
||||||
label_this_week: ten tydzień
|
label_this_week: ten tydzień
|
||||||
label_jump_to_a_project: Skocz do projektu...
|
label_jump_to_a_project: Skocz do projektu...
|
||||||
field_assignable: Zgłoszenia mogą być przypisane do tej roli
|
field_assignable: Zagadnienia mogą być przypisane do tej roli
|
||||||
label_sort_by: Sortuj po %s
|
label_sort_by: Sortuj po %s
|
||||||
text_issue_updated: Zgłoszenie %s zostało zaktualizowane.
|
text_issue_updated: Zagadnienie %s zostało zaktualizowane.
|
||||||
notice_feeds_access_key_reseted: Twój klucz dostępu RSS został zrestetowany.
|
notice_feeds_access_key_reseted: Twój klucz dostępu RSS został zrestetowany.
|
||||||
field_redirect_existing_links: Przekierowanie istniejących odnośników
|
field_redirect_existing_links: Przekierowanie istniejących odnośników
|
||||||
text_issue_category_reassign_to: Przywróć zgłoszenia do tej kategorii
|
text_issue_category_reassign_to: Przydziel zagadnienie do tej kategorii
|
||||||
notice_email_sent: Email został wysłany do %s
|
notice_email_sent: Email został wysłany do %s
|
||||||
text_issue_added: Zgłoszenie %s zostało zaraportowane.
|
text_issue_added: Zagadnienie %s zostało wprowadzone.
|
||||||
text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość ?
|
text_wiki_destroy_confirmation: Jesteś pewien, że chcesz usunąć to wiki i całą jego zawartość ?
|
||||||
notice_email_error: Wystąpił błąd w trakcie wysyłania maila (%s)
|
notice_email_error: Wystąpił błąd w trakcie wysyłania maila (%s)
|
||||||
label_updated_time: Zaktualizowane %s temu
|
label_updated_time: Zaktualizowane %s temu
|
||||||
|
@ -518,29 +518,30 @@ label_default_columns: Domyślne kolumny
|
||||||
setting_issue_list_default_columns: Domyślne kolumny wiświetlane na liście zagadnień
|
setting_issue_list_default_columns: Domyślne kolumny wiświetlane na liście zagadnień
|
||||||
setting_repositories_encodings: Kodowanie repozytoriów
|
setting_repositories_encodings: Kodowanie repozytoriów
|
||||||
notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować."
|
notice_no_issue_selected: "Nie wybrano zagadnienia! Zaznacz zagadnienie, które chcesz edytować."
|
||||||
label_bulk_edit_selected_issues: Bulk edit selected issues
|
label_bulk_edit_selected_issues: Zbiorowa edycja zagadnień
|
||||||
label_no_change_option: (Bez zmian)
|
label_no_change_option: (Bez zmian)
|
||||||
notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %d z %d zaznaczonych: %s."
|
notice_failed_to_save_issues: "Błąd podczas zapisu zagadnień %d z %d zaznaczonych: %s."
|
||||||
label_theme: Temat
|
label_theme: Temat
|
||||||
label_default: Domyślne
|
label_default: Domyślne
|
||||||
label_search_titles_only: Przeszukuj tylko tytuły
|
label_search_titles_only: Przeszukuj tylko tytuły
|
||||||
label_nobody: nobody
|
label_nobody: nikt
|
||||||
button_change_password: Change password
|
button_change_password: Zmień hasło
|
||||||
text_user_mail_option: "For unselected projects, you will only receive notifications about things you watch or you're involved in (eg. issues you're the author or assignee)."
|
text_user_mail_option: "W przypadku niezaznaczonych projektów, będziesz otrzymywał powiadomienia tylko na temat zagadnien, które obserwujesz, lub w których bierzesz udział (np. jesteś autorem lub adresatem)."
|
||||||
label_user_mail_option_selected: "For any event on the selected projects only..."
|
label_user_mail_option_selected: "Tylko dla każdego zdarzenia w wybranych projektach..."
|
||||||
label_user_mail_option_all: "For any event on all my projects"
|
label_user_mail_option_all: "Dla każdego zdarzenia w każdym moim projekcie"
|
||||||
label_user_mail_option_none: "Only for things I watch or I'm involved in"
|
label_user_mail_option_none: "Tylko to co obserwuje lub w czym biorę udział"
|
||||||
setting_emails_footer: Emails footer
|
setting_emails_footer: Stopka e-mail
|
||||||
label_float: Float
|
label_float: Liczba rzeczywista
|
||||||
button_copy: Copy
|
button_copy: Kopia
|
||||||
mail_body_account_information_external: Możesz użyć twojego "%s" konta do zalogowania do Redmine.
|
mail_body_account_information_external: Możesz użyć twojego "%s" konta do zalogowania do Redmine.
|
||||||
mail_body_account_information: Twoje konto w Redmine
|
mail_body_account_information: Twoje konto w Redmine
|
||||||
setting_protocol: Protocol
|
setting_protocol: Protokoł
|
||||||
label_user_mail_no_self_notified: "I don't want to be notified of changes that I make myself"
|
label_user_mail_no_self_notified: "Nie chcę powiadomień o zmianach, które sam wprowadzam."
|
||||||
setting_time_format: Time format
|
setting_time_format: Format czasu
|
||||||
label_registration_activation_by_email: account activation by email
|
label_registration_activation_by_email: aktywacja konta przez e-mail
|
||||||
mail_subject_account_activation_request: Redmine account activation request
|
mail_subject_account_activation_request: Zapytanie aktywacyjne konta Redmine
|
||||||
mail_body_account_activation_request: 'A new user (%s) has registered. His account his pending your approval:'
|
mail_body_account_activation_request: 'Zarejestrowano nowego użytkownika: (%s). Konto oczekuje na twoje zatwierdzenie:'
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatyczna aktywacja kont
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manualna aktywacja kont
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Twoje konto zostało utworzone i oczekuje na zatwierdzenie administratora."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -544,3 +544,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -544,3 +544,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -544,3 +544,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -544,3 +544,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -545,3 +545,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -545,3 +545,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
|
@ -547,3 +547,4 @@ mail_body_account_activation_request: 'A new user (%s) has registered. His accou
|
||||||
label_registration_automatic_activation: automatic account activation
|
label_registration_automatic_activation: automatic account activation
|
||||||
label_registration_manual_activation: manual account activation
|
label_registration_manual_activation: manual account activation
|
||||||
notice_account_pending: "Your account was created and is now pending administrator approval."
|
notice_account_pending: "Your account was created and is now pending administrator approval."
|
||||||
|
field_time_zone: Time zone
|
||||||
|
|
Loading…
Reference in New Issue