Revision 2409
Added by Jean-Philippe Lang over 16 years ago
sandbox/rails-2.2/app/helpers/application_helper.rb | ||
---|---|---|
103 | 103 |
h(truncate(text.to_s, :length => 120).gsub(%r{[\r\n]*<(pre|code)>.*$}m, '...')).gsub(/[\r\n]+/, "<br />") |
104 | 104 |
end |
105 | 105 |
|
106 |
def distance_of_date_in_words(from_date, to_date = 0) |
|
107 |
from_date = from_date.to_date if from_date.respond_to?(:to_date) |
|
108 |
to_date = to_date.to_date if to_date.respond_to?(:to_date) |
|
109 |
distance_in_days = (to_date - from_date).abs |
|
110 |
lwr(:actionview_datehelper_time_in_words_day, distance_in_days) |
|
111 |
end |
|
112 |
|
|
113 | 106 |
def due_date_distance_in_words(date) |
114 | 107 |
if date |
115 | 108 |
l((date < Date.today ? :label_roadmap_overdue : :label_roadmap_due_in), distance_of_date_in_words(Date.today, date)) |
sandbox/rails-2.2/app/views/issues/_relations.rhtml | ||
---|---|---|
10 | 10 |
<table style="width:100%"> |
11 | 11 |
<% @issue.relations.select {|r| r.other_issue(@issue).visible? }.each do |relation| %> |
12 | 12 |
<tr> |
13 |
<td><%= l(relation.label_for(@issue)) %> <%= "(#{lwr(:actionview_datehelper_time_in_words_day, relation.delay)})" if relation.delay && relation.delay != 0 %>
|
|
13 |
<td><%= l(relation.label_for(@issue)) %> <%= "(#{l('datetime.distance_in_words.x_days', :count => relation.delay)})" if relation.delay && relation.delay != 0 %>
|
|
14 | 14 |
<%= h(relation.other_issue(@issue).project) + ' - ' if Setting.cross_project_issue_relations? %> <%= link_to_issue relation.other_issue(@issue) %></td> |
15 | 15 |
<td><%=h relation.other_issue(@issue).subject %></td> |
16 | 16 |
<td><%= relation.other_issue(@issue).status.name %></td> |
sandbox/rails-2.2/app/views/settings/_authentication.rhtml | ||
---|---|---|
5 | 5 |
<%= check_box_tag 'settings[login_required]', 1, Setting.login_required? %><%= hidden_field_tag 'settings[login_required]', 0 %></p> |
6 | 6 |
|
7 | 7 |
<p><label><%= l(:setting_autologin) %></label> |
8 |
<%= select_tag 'settings[autologin]', options_for_select( [[l(:label_disabled), "0"]] + [1, 7, 30, 365].collect{|days| [lwr(:actionview_datehelper_time_in_words_day, days), days.to_s]}, Setting.autologin) %></p>
|
|
8 |
<%= select_tag 'settings[autologin]', options_for_select( [[l(:label_disabled), "0"]] + [1, 7, 30, 365].collect{|days| [l('datetime.distance_in_words.x_days', :count => days), days.to_s]}, Setting.autologin) %></p>
|
|
9 | 9 |
|
10 | 10 |
<p><label><%= l(:setting_self_registration) %></label> |
11 | 11 |
<%= select_tag 'settings[self_registration]', |
sandbox/rails-2.2/config/initializers/10-patches.rb | ||
---|---|---|
12 | 12 |
end |
13 | 13 |
end |
14 | 14 |
|
15 |
module ActionView |
|
16 |
module Helpers |
|
17 |
module DateHelper |
|
18 |
# distance_of_time_in_words breaks when difference is greater than 30 years |
|
19 |
def distance_of_date_in_words(from_date, to_date = 0, options = {}) |
|
20 |
from_date = from_date.to_date if from_date.respond_to?(:to_date) |
|
21 |
to_date = to_date.to_date if to_date.respond_to?(:to_date) |
|
22 |
distance_in_days = (to_date - from_date).abs |
|
23 |
|
|
24 |
I18n.with_options :locale => options[:locale], :scope => :'datetime.distance_in_words' do |locale| |
|
25 |
case distance_in_days |
|
26 |
when 0..60 then locale.t :x_days, :count => distance_in_days |
|
27 |
when 61..720 then locale.t :about_x_months, :count => (distance_in_days / 30).round |
|
28 |
else locale.t :over_x_years, :count => (distance_in_days / 365).round |
|
29 |
end |
|
30 |
end |
|
31 |
end |
|
32 |
end |
|
33 |
end |
|
34 |
end |
|
35 |
|
|
15 | 36 |
ActionView::Base.field_error_proc = Proc.new{ |html_tag, instance| "#{html_tag}" } |
16 | 37 |
|
17 | 38 |
# Adds :async_smtp and :async_sendmail delivery methods |
sandbox/rails-2.2/config/locales/bg.yml | ||
---|---|---|
92 | 92 |
not_same_project: "не е от същия проект" |
93 | 93 |
circular_dependency: "Тази релация ще доведе до безкрайна зависимост" |
94 | 94 |
|
95 |
actionview_datehelper_time_in_words_day: 1 ден |
|
96 |
actionview_datehelper_time_in_words_day_plural: "{{count}} дни" |
|
97 |
actionview_datehelper_time_in_words_hour_about: около час |
|
98 |
actionview_datehelper_time_in_words_hour_about_plural: "около {{count}} часа" |
|
99 |
actionview_datehelper_time_in_words_hour_about_single: около час |
|
100 |
actionview_datehelper_time_in_words_minute: 1 минута |
|
101 |
actionview_datehelper_time_in_words_minute_half: половин минута |
|
102 |
actionview_datehelper_time_in_words_minute_less_than: по-малко от минута |
|
103 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} минути" |
|
104 |
actionview_datehelper_time_in_words_minute_single: 1 минута |
|
105 |
actionview_datehelper_time_in_words_second_less_than: по-малко от секунда |
|
106 |
actionview_datehelper_time_in_words_second_less_than_plural: "по-малко от {{count}} секунди" |
|
107 | 95 |
actionview_instancetag_blank_option: Изберете |
108 | 96 |
|
109 | 97 |
general_text_No: 'Не' |
sandbox/rails-2.2/config/locales/ca.yml | ||
---|---|---|
92 | 92 |
not_same_project: "no pertany al mateix projecte" |
93 | 93 |
circular_dependency: "Aquesta relació crearia una dependència circular" |
94 | 94 |
|
95 |
actionview_datehelper_time_in_words_day: 1 dia |
|
96 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dies" |
|
97 |
actionview_datehelper_time_in_words_hour_about: aproximadament una hora |
|
98 |
actionview_datehelper_time_in_words_hour_about_plural: "aproximadament {{count}} hores" |
|
99 |
actionview_datehelper_time_in_words_hour_about_single: aproximadament una hora |
|
100 |
actionview_datehelper_time_in_words_minute: 1 minut |
|
101 |
actionview_datehelper_time_in_words_minute_half: mig minut |
|
102 |
actionview_datehelper_time_in_words_minute_less_than: "menys d'un minut" |
|
103 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minuts" |
|
104 |
actionview_datehelper_time_in_words_minute_single: 1 minut |
|
105 |
actionview_datehelper_time_in_words_second_less_than: "menys d'un segon" |
|
106 |
actionview_datehelper_time_in_words_second_less_than_plural: "menys de {{count}} segons" |
|
107 | 95 |
actionview_instancetag_blank_option: Seleccioneu |
108 | 96 |
|
109 | 97 |
general_text_No: 'No' |
sandbox/rails-2.2/config/locales/cs.yml | ||
---|---|---|
95 | 95 |
# CZ translation by Maxim Krušina | Massimo Filippi, s.r.o. | [email protected] |
96 | 96 |
# Based on original CZ translation by Jan Kadleček |
97 | 97 |
|
98 |
actionview_datehelper_time_in_words_day: 1 den |
|
99 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dny" |
|
100 |
actionview_datehelper_time_in_words_hour_about: asi hodinou |
|
101 |
actionview_datehelper_time_in_words_hour_about_plural: "asi {{count}} hodinami" |
|
102 |
actionview_datehelper_time_in_words_hour_about_single: asi hodinou |
|
103 |
actionview_datehelper_time_in_words_minute: 1 minutou |
|
104 |
actionview_datehelper_time_in_words_minute_half: půl minutou |
|
105 |
actionview_datehelper_time_in_words_minute_less_than: méně než minutou |
|
106 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minutami" |
|
107 |
actionview_datehelper_time_in_words_minute_single: 1 minutou |
|
108 |
actionview_datehelper_time_in_words_second_less_than: méně než sekundou |
|
109 |
actionview_datehelper_time_in_words_second_less_than_plural: "méně než {{count}} sekundami" |
|
110 | 98 |
actionview_instancetag_blank_option: Prosím vyberte |
111 | 99 |
|
112 | 100 |
general_text_No: 'Ne' |
sandbox/rails-2.2/config/locales/da.yml | ||
---|---|---|
122 | 122 |
other: "{{count}} fejl forhindrede denne {{model}} i at blive gemt" |
123 | 123 |
body: "Der var problemer med følgende felter:" |
124 | 124 |
|
125 |
actionview_datehelper_time_in_words_day: 1 dag |
|
126 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dage" |
|
127 |
actionview_datehelper_time_in_words_hour_about: cirka en time |
|
128 |
actionview_datehelper_time_in_words_hour_about_plural: "cirka {{count}} timer" |
|
129 |
actionview_datehelper_time_in_words_hour_about_single: cirka en time |
|
130 |
actionview_datehelper_time_in_words_minute: 1 minut |
|
131 |
actionview_datehelper_time_in_words_minute_half: et halvt minut |
|
132 |
actionview_datehelper_time_in_words_minute_less_than: mindre end et minut |
|
133 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minutter" |
|
134 |
actionview_datehelper_time_in_words_minute_single: 1 minut |
|
135 |
actionview_datehelper_time_in_words_second_less_than: mindre end et sekund |
|
136 |
actionview_datehelper_time_in_words_second_less_than_plural: "mindre end {{count}} sekunder" |
|
137 | 125 |
actionview_instancetag_blank_option: Vælg venligst |
138 | 126 |
|
139 | 127 |
general_text_No: 'Nej' |
sandbox/rails-2.2/config/locales/de.yml | ||
---|---|---|
122 | 122 |
circular_dependency: "Diese Beziehung würde eine zyklische Abhängigkeit erzeugen" |
123 | 123 |
models: |
124 | 124 |
|
125 |
actionview_datehelper_time_in_words_day: 1 Tag |
|
126 |
actionview_datehelper_time_in_words_day_plural: "{{count}} Tagen" |
|
127 |
actionview_datehelper_time_in_words_hour_about: ungefähr einer Stunde |
|
128 |
actionview_datehelper_time_in_words_hour_about_plural: "ungefähr {{count}} Stunden" |
|
129 |
actionview_datehelper_time_in_words_hour_about_single: ungefähr einer Stunde |
|
130 |
actionview_datehelper_time_in_words_minute: 1 Minute |
|
131 |
actionview_datehelper_time_in_words_minute_half: einer halben Minute |
|
132 |
actionview_datehelper_time_in_words_minute_less_than: weniger als einer Minute |
|
133 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} Minuten" |
|
134 |
actionview_datehelper_time_in_words_minute_single: 1 Minute |
|
135 |
actionview_datehelper_time_in_words_second_less_than: weniger als einer Sekunde |
|
136 |
actionview_datehelper_time_in_words_second_less_than_plural: "weniger als {{count}} Sekunden" |
|
137 | 125 |
actionview_instancetag_blank_option: Bitte auswählen |
138 | 126 |
|
139 | 127 |
general_text_No: 'Nein' |
sandbox/rails-2.2/config/locales/en.yml | ||
---|---|---|
92 | 92 |
not_same_project: "doesn't belong to the same project" |
93 | 93 |
circular_dependency: "This relation would create a circular dependency" |
94 | 94 |
|
95 |
|
|
96 |
actionview_datehelper_time_in_words_day: 1 day |
|
97 |
actionview_datehelper_time_in_words_day_plural: "{{count}} days" |
|
98 |
actionview_datehelper_time_in_words_hour_about: about an hour |
|
99 |
actionview_datehelper_time_in_words_hour_about_plural: "about {{count}} hours" |
|
100 |
actionview_datehelper_time_in_words_hour_about_single: about an hour |
|
101 |
actionview_datehelper_time_in_words_minute: 1 minute |
|
102 |
actionview_datehelper_time_in_words_minute_half: half a minute |
|
103 |
actionview_datehelper_time_in_words_minute_less_than: less than a minute |
|
104 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minutes" |
|
105 |
actionview_datehelper_time_in_words_minute_single: 1 minute |
|
106 |
actionview_datehelper_time_in_words_second_less_than: less than a second |
|
107 |
actionview_datehelper_time_in_words_second_less_than_plural: "less than {{count}} seconds" |
|
108 | 95 |
actionview_instancetag_blank_option: Please select |
109 | 96 |
|
110 | 97 |
general_text_No: 'No' |
sandbox/rails-2.2/config/locales/es.yml | ||
---|---|---|
157 | 157 |
array: |
158 | 158 |
sentence_connector: "y" |
159 | 159 |
|
160 |
actionview_datehelper_time_in_words_day: 1 día |
|
161 |
actionview_datehelper_time_in_words_day_plural: "{{count}} días" |
|
162 |
actionview_datehelper_time_in_words_hour_about: una hora aproximadamente |
|
163 |
actionview_datehelper_time_in_words_hour_about_plural: "aproximadamente {{count}} horas" |
|
164 |
actionview_datehelper_time_in_words_hour_about_single: una hora aproximadamente |
|
165 |
actionview_datehelper_time_in_words_minute: 1 minuto |
|
166 |
actionview_datehelper_time_in_words_minute_half: medio minuto |
|
167 |
actionview_datehelper_time_in_words_minute_less_than: menos de un minuto |
|
168 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minutos" |
|
169 |
actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
170 |
actionview_datehelper_time_in_words_second_less_than: menos de un segundo |
|
171 |
actionview_datehelper_time_in_words_second_less_than_plural: "menos de {{count}} segundos" |
|
172 | 160 |
actionview_instancetag_blank_option: Por favor seleccione |
173 | 161 |
|
174 | 162 |
button_activate: Activar |
sandbox/rails-2.2/config/locales/fi.yml | ||
---|---|---|
135 | 135 |
circular_dependency: "Tämä suhde loisi kehän." |
136 | 136 |
|
137 | 137 |
|
138 |
actionview_datehelper_time_in_words_day: 1 päivä |
|
139 |
actionview_datehelper_time_in_words_day_plural: "{{count}} päivää" |
|
140 |
actionview_datehelper_time_in_words_hour_about: noin tunti |
|
141 |
actionview_datehelper_time_in_words_hour_about_plural: "noin {{count}} tuntia" |
|
142 |
actionview_datehelper_time_in_words_hour_about_single: noin tunnin |
|
143 |
actionview_datehelper_time_in_words_minute: 1 minuutti |
|
144 |
actionview_datehelper_time_in_words_minute_half: puoli minuuttia |
|
145 |
actionview_datehelper_time_in_words_minute_less_than: vähemmän kuin minuuttia |
|
146 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minuuttia" |
|
147 |
actionview_datehelper_time_in_words_minute_single: 1 minuutti |
|
148 |
actionview_datehelper_time_in_words_second_less_than: vähemmän kuin sekuntin |
|
149 |
actionview_datehelper_time_in_words_second_less_than_plural: "vähemmän kuin {{count}} sekuntia" |
|
150 | 138 |
actionview_instancetag_blank_option: Valitse, ole hyvä |
151 | 139 |
|
152 | 140 |
general_text_No: 'Ei' |
sandbox/rails-2.2/config/locales/fr.yml | ||
---|---|---|
125 | 125 |
not_same_project: "n'appartient pas au même projet" |
126 | 126 |
circular_dependency: "Cette relation créerait une dépendance circulaire" |
127 | 127 |
|
128 |
actionview_datehelper_time_in_words_day: 1 jour |
|
129 |
actionview_datehelper_time_in_words_day_plural: "{{count}} jours" |
|
130 |
actionview_datehelper_time_in_words_hour_about: environ une heure |
|
131 |
actionview_datehelper_time_in_words_hour_about_plural: "environ {{count}} heures" |
|
132 |
actionview_datehelper_time_in_words_hour_about_single: environ une heure |
|
133 |
actionview_datehelper_time_in_words_minute: 1 minute |
|
134 |
actionview_datehelper_time_in_words_minute_half: 30 secondes |
|
135 |
actionview_datehelper_time_in_words_minute_less_than: moins d'une minute |
|
136 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minutes" |
|
137 |
actionview_datehelper_time_in_words_minute_single: 1 minute |
|
138 |
actionview_datehelper_time_in_words_second_less_than: moins d'une seconde |
|
139 |
actionview_datehelper_time_in_words_second_less_than_plural: "moins de {{count}} secondes" |
|
140 | 128 |
actionview_instancetag_blank_option: Choisir |
141 | 129 |
|
142 | 130 |
general_text_No: 'Non' |
sandbox/rails-2.2/config/locales/gl.yml | ||
---|---|---|
137 | 137 |
not_same_project: "non pertence ao mesmo proxecto" |
138 | 138 |
circular_dependency: "Esta relación podería crear unha dependencia circular" |
139 | 139 |
|
140 |
actionview_datehelper_time_in_words_day: 1 día |
|
141 |
actionview_datehelper_time_in_words_day_plural: "{{count}} días" |
|
142 |
actionview_datehelper_time_in_words_hour_about: unha hora aproximadamente |
|
143 |
actionview_datehelper_time_in_words_hour_about_plural: "aproximadamente {{count}} horas" |
|
144 |
actionview_datehelper_time_in_words_hour_about_single: unha hora aproximadamente |
|
145 |
actionview_datehelper_time_in_words_minute: 1 minuto |
|
146 |
actionview_datehelper_time_in_words_minute_half: medio minuto |
|
147 |
actionview_datehelper_time_in_words_minute_less_than: menos dun minuto |
|
148 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minutos" |
|
149 |
actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
150 |
actionview_datehelper_time_in_words_second_less_than: menos dun segundo |
|
151 |
actionview_datehelper_time_in_words_second_less_than_plural: "menos de {{count}} segundos" |
|
152 | 140 |
actionview_instancetag_blank_option: Por favor seleccione |
153 | 141 |
|
154 | 142 |
button_activate: Activar |
sandbox/rails-2.2/config/locales/he.yml | ||
---|---|---|
103 | 103 |
not_same_project: "לא שייך לאותו הפרויקט" |
104 | 104 |
circular_dependency: "הקשר הזה יצור תלות מעגלית" |
105 | 105 |
|
106 |
actionview_datehelper_time_in_words_day: יום 1 |
|
107 |
actionview_datehelper_time_in_words_day_plural: "{{count}} ימים" |
|
108 |
actionview_datehelper_time_in_words_hour_about: כשעה |
|
109 |
actionview_datehelper_time_in_words_hour_about_plural: "כ-{{count}} שעות" |
|
110 |
actionview_datehelper_time_in_words_hour_about_single: כשעה |
|
111 |
actionview_datehelper_time_in_words_minute: דקה 1 |
|
112 |
actionview_datehelper_time_in_words_minute_half: חצי דקה |
|
113 |
actionview_datehelper_time_in_words_minute_less_than: פחות מדקה |
|
114 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} דקות" |
|
115 |
actionview_datehelper_time_in_words_minute_single: דקה 1 |
|
116 |
actionview_datehelper_time_in_words_second_less_than: פחות משניה |
|
117 |
actionview_datehelper_time_in_words_second_less_than_plural: "פחות מ-{{count}} שניות" |
|
118 | 106 |
actionview_instancetag_blank_option: בחר בבקשה |
119 | 107 |
|
120 | 108 |
general_text_No: 'לא' |
sandbox/rails-2.2/config/locales/hu.yml | ||
---|---|---|
129 | 129 |
not_same_project: "nem azonos projekthez tartozik" |
130 | 130 |
circular_dependency: "Ez a kapcsolat egy körkörös függőséget eredményez" |
131 | 131 |
|
132 |
actionview_datehelper_time_in_words_day: 1 nap |
|
133 |
actionview_datehelper_time_in_words_day_plural: "{{count}} nap" |
|
134 |
actionview_datehelper_time_in_words_hour_about: kb. 1 óra |
|
135 |
actionview_datehelper_time_in_words_hour_about_plural: "kb. {{count}} óra" |
|
136 |
actionview_datehelper_time_in_words_hour_about_single: kb. 1 óra |
|
137 |
actionview_datehelper_time_in_words_minute: 1 perc |
|
138 |
actionview_datehelper_time_in_words_minute_half: fél perc |
|
139 |
actionview_datehelper_time_in_words_minute_less_than: kevesebb, mint 1 perc |
|
140 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} perc" |
|
141 |
actionview_datehelper_time_in_words_minute_single: 1 perc |
|
142 |
actionview_datehelper_time_in_words_second_less_than: kevesebb, mint 1 másodperc |
|
143 |
actionview_datehelper_time_in_words_second_less_than_plural: "kevesebb, mint {{count}} másodperc" |
|
144 | 132 |
actionview_instancetag_blank_option: Kérem válasszon |
145 | 133 |
|
146 | 134 |
general_text_No: 'Nem' |
sandbox/rails-2.2/config/locales/it.yml | ||
---|---|---|
106 | 106 |
not_same_project: "non appartiene allo stesso progetto" |
107 | 107 |
circular_dependency: "Questa relazione creerebbe una dipendenza circolare" |
108 | 108 |
|
109 |
actionview_datehelper_time_in_words_day: 1 giorno |
|
110 |
actionview_datehelper_time_in_words_day_plural: "{{count}} giorni" |
|
111 |
actionview_datehelper_time_in_words_hour_about: circa un'ora |
|
112 |
actionview_datehelper_time_in_words_hour_about_plural: "circa {{count}} ore" |
|
113 |
actionview_datehelper_time_in_words_hour_about_single: circa un'ora |
|
114 |
actionview_datehelper_time_in_words_minute: 1 minuto |
|
115 |
actionview_datehelper_time_in_words_minute_half: mezzo minuto |
|
116 |
actionview_datehelper_time_in_words_minute_less_than: meno di un minuto |
|
117 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minuti" |
|
118 |
actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
119 |
actionview_datehelper_time_in_words_second_less_than: meno di un secondo |
|
120 |
actionview_datehelper_time_in_words_second_less_than_plural: "meno di {{count}} secondi" |
|
121 | 109 |
actionview_instancetag_blank_option: Scegli |
122 | 110 |
|
123 | 111 |
general_text_No: 'No' |
sandbox/rails-2.2/config/locales/ja.yml | ||
---|---|---|
123 | 123 |
not_same_project: "同じプロジェクトに属していません" |
124 | 124 |
circular_dependency: "この関係では、循環依存になります" |
125 | 125 |
|
126 |
|
|
127 |
actionview_datehelper_time_in_words_day: 1日 |
|
128 |
actionview_datehelper_time_in_words_day_plural: "{{count}}日" |
|
129 |
actionview_datehelper_time_in_words_hour_about: 約1時間 |
|
130 |
actionview_datehelper_time_in_words_hour_about_plural: "約{{count}}時間" |
|
131 |
actionview_datehelper_time_in_words_hour_about_single: 約1時間 |
|
132 |
actionview_datehelper_time_in_words_minute: 1分 |
|
133 |
actionview_datehelper_time_in_words_minute_half: 約30秒 |
|
134 |
actionview_datehelper_time_in_words_minute_less_than: 1分以内 |
|
135 |
actionview_datehelper_time_in_words_minute_plural: "{{count}}分" |
|
136 |
actionview_datehelper_time_in_words_minute_single: 1分 |
|
137 |
actionview_datehelper_time_in_words_second_less_than: 1秒以内 |
|
138 |
actionview_datehelper_time_in_words_second_less_than_plural: "{{count}}秒以内" |
|
139 | 126 |
actionview_instancetag_blank_option: 選んでください |
140 | 127 |
|
141 | 128 |
general_text_No: 'いいえ' |
sandbox/rails-2.2/config/locales/ko.yml | ||
---|---|---|
154 | 154 |
not_same_project: "는 같은 프로젝트에 속해 있지 않습니다." |
155 | 155 |
circular_dependency: "이 관계는 순환 의존관계를 만들 수있습니다." |
156 | 156 |
|
157 |
actionview_datehelper_time_in_words_day: 하루 |
|
158 |
actionview_datehelper_time_in_words_day_plural: "{{count}} 일" |
|
159 |
actionview_datehelper_time_in_words_hour_about: 약 한 시간 |
|
160 |
actionview_datehelper_time_in_words_hour_about_plural: "약 {{count}} 시간" |
|
161 |
actionview_datehelper_time_in_words_hour_about_single: 약 한 시간 |
|
162 |
actionview_datehelper_time_in_words_minute: 1 분 |
|
163 |
actionview_datehelper_time_in_words_minute_half: 30초 |
|
164 |
actionview_datehelper_time_in_words_minute_less_than: 1분 이내 |
|
165 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} 분" |
|
166 |
actionview_datehelper_time_in_words_minute_single: 1 분 |
|
167 |
actionview_datehelper_time_in_words_second_less_than: 1초 이내 |
|
168 |
actionview_datehelper_time_in_words_second_less_than_plural: "{{count}} 초 이전" |
|
169 | 157 |
actionview_instancetag_blank_option: 선택하세요 |
170 | 158 |
|
171 | 159 |
general_text_No: '아니오' |
sandbox/rails-2.2/config/locales/lt.yml | ||
---|---|---|
133 | 133 |
last_word_connector: " ir " |
134 | 134 |
|
135 | 135 |
|
136 |
actionview_datehelper_time_in_words_day: 1 diena |
|
137 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dienų" |
|
138 |
actionview_datehelper_time_in_words_hour_about: apytiksliai valanda |
|
139 |
actionview_datehelper_time_in_words_hour_about_plural: "apie {{count}} valandas" |
|
140 |
actionview_datehelper_time_in_words_hour_about_single: apytiksliai valanda |
|
141 |
actionview_datehelper_time_in_words_minute: 1 minutė |
|
142 |
actionview_datehelper_time_in_words_minute_half: pusė minutės |
|
143 |
actionview_datehelper_time_in_words_minute_less_than: mažiau kaip minutė |
|
144 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minutės" |
|
145 |
actionview_datehelper_time_in_words_minute_single: 1 minutė |
|
146 |
actionview_datehelper_time_in_words_second_less_than: mažiau kaip sekundė |
|
147 |
actionview_datehelper_time_in_words_second_less_than_plural: "mažiau, negu {{count}} sekundės" |
|
148 | 136 |
actionview_instancetag_blank_option: prašom išrinkti |
149 | 137 |
|
150 | 138 |
general_text_No: 'Ne' |
sandbox/rails-2.2/config/locales/nl.yml | ||
---|---|---|
92 | 92 |
not_same_project: "hoort niet bij hetzelfde project" |
93 | 93 |
circular_dependency: "Deze relatie zou een circulaire afhankelijkheid tot gevolg hebben" |
94 | 94 |
|
95 |
actionview_datehelper_time_in_words_day: 1 dag |
|
96 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dagen" |
|
97 |
actionview_datehelper_time_in_words_hour_about: ongeveer een uur |
|
98 |
actionview_datehelper_time_in_words_hour_about_plural: "ongeveer {{count}} uur" |
|
99 |
actionview_datehelper_time_in_words_hour_about_single: ongeveer een uur |
|
100 |
actionview_datehelper_time_in_words_minute: 1 minuut |
|
101 |
actionview_datehelper_time_in_words_minute_half: een halve minuut |
|
102 |
actionview_datehelper_time_in_words_minute_less_than: minder dan een minuut |
|
103 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minuten" |
|
104 |
actionview_datehelper_time_in_words_minute_single: 1 minuut |
|
105 |
actionview_datehelper_time_in_words_second_less_than: minder dan een seconde |
|
106 |
actionview_datehelper_time_in_words_second_less_than_plural: "minder dan {{count}} seconden" |
|
107 | 95 |
actionview_instancetag_blank_option: Selecteer |
108 | 96 |
|
109 | 97 |
button_activate: Activeer |
sandbox/rails-2.2/config/locales/no.yml | ||
---|---|---|
97 | 97 |
circular_dependency: "Denne relasjonen ville lagd en sirkulær avhengighet" |
98 | 98 |
|
99 | 99 |
|
100 |
actionview_datehelper_time_in_words_day: 1 dag |
|
101 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dager" |
|
102 |
actionview_datehelper_time_in_words_hour_about: ca. en time |
|
103 |
actionview_datehelper_time_in_words_hour_about_plural: "ca. {{count}} timer" |
|
104 |
actionview_datehelper_time_in_words_hour_about_single: ca. en time |
|
105 |
actionview_datehelper_time_in_words_minute: 1 minutt |
|
106 |
actionview_datehelper_time_in_words_minute_half: et halvt minutt |
|
107 |
actionview_datehelper_time_in_words_minute_less_than: mindre enn et minutt |
|
108 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minutter" |
|
109 |
actionview_datehelper_time_in_words_minute_single: 1 minutt |
|
110 |
actionview_datehelper_time_in_words_second_less_than: mindre enn et sekund |
|
111 |
actionview_datehelper_time_in_words_second_less_than_plural: "mindre enn {{count}} sekunder" |
|
112 | 100 |
actionview_instancetag_blank_option: Vennligst velg |
113 | 101 |
|
114 | 102 |
general_text_No: 'Nei' |
sandbox/rails-2.2/config/locales/pl.yml | ||
---|---|---|
123 | 123 |
# Keep this line in order to avoid problems with Windows Notepad UTF-8 EF-BB-BFidea... |
124 | 124 |
# Best regards from Lublin@Poland :-) |
125 | 125 |
# PL translation by [email protected], |
126 |
actionview_datehelper_time_in_words_day: 1 dzień |
|
127 |
actionview_datehelper_time_in_words_day_plural234: "{{count}} dni" |
|
128 |
actionview_datehelper_time_in_words_day_plural5: "{{count}} dni" |
|
129 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dni" |
|
130 |
actionview_datehelper_time_in_words_hour_about: około godziny |
|
131 |
actionview_datehelper_time_in_words_hour_about_plural234: "około {{count}} godzin" |
|
132 |
actionview_datehelper_time_in_words_hour_about_plural5: "około {{count}} godzin" |
|
133 |
actionview_datehelper_time_in_words_hour_about_plural: "około {{count}} godzin" |
|
134 |
actionview_datehelper_time_in_words_hour_about_single: około godziny |
|
135 |
actionview_datehelper_time_in_words_minute: 1 minuta |
|
136 |
actionview_datehelper_time_in_words_minute_half: pół minuty |
|
137 |
actionview_datehelper_time_in_words_minute_less_than: mniej niż minuta |
|
138 |
actionview_datehelper_time_in_words_minute_plural234: "{{count}} minuty" |
|
139 |
actionview_datehelper_time_in_words_minute_plural5: "{{count}} minut" |
|
140 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minut" |
|
141 |
actionview_datehelper_time_in_words_minute_single: 1 minuta |
|
142 |
actionview_datehelper_time_in_words_second_less_than: mniej niż sekunda |
|
143 |
actionview_datehelper_time_in_words_second_less_than_plural234: "mniej niż {{count}} sekundy" |
|
144 |
actionview_datehelper_time_in_words_second_less_than_plural5: "mniej niż {{count}} sekund" |
|
145 |
actionview_datehelper_time_in_words_second_less_than_plural: "mniej niż {{count}} sekund" |
|
146 | 126 |
actionview_instancetag_blank_option: Proszę wybierz |
147 | 127 |
|
148 | 128 |
button_activate: Aktywuj |
sandbox/rails-2.2/config/locales/pt-BR.yml | ||
---|---|---|
130 | 130 |
not_same_project: "não pertence ao mesmo projeto" |
131 | 131 |
circular_dependency: "Esta relação geraria uma dependência circular" |
132 | 132 |
|
133 |
|
|
134 |
actionview_datehelper_time_in_words_day: 1 dia |
|
135 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dias" |
|
136 |
actionview_datehelper_time_in_words_hour_about: aproximadamente uma hora |
|
137 |
actionview_datehelper_time_in_words_hour_about_plural: "aproximadamente {{count}} horas" |
|
138 |
actionview_datehelper_time_in_words_hour_about_single: aproximadamente uma hora |
|
139 |
actionview_datehelper_time_in_words_minute: 1 minuto |
|
140 |
actionview_datehelper_time_in_words_minute_half: meio minuto |
|
141 |
actionview_datehelper_time_in_words_minute_less_than: menos de um minuto |
|
142 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minutos" |
|
143 |
actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
144 |
actionview_datehelper_time_in_words_second_less_than: menos de um segundo |
|
145 |
actionview_datehelper_time_in_words_second_less_than_plural: "menos de {{count}} segundos" |
|
146 | 133 |
actionview_instancetag_blank_option: Selecione |
147 | 134 |
|
148 | 135 |
general_text_No: 'Não' |
sandbox/rails-2.2/config/locales/pt.yml | ||
---|---|---|
115 | 115 |
circular_dependency: "Esta relação iria criar uma dependência circular" |
116 | 116 |
|
117 | 117 |
## Translated by: Pedro Araújo <[email protected]> |
118 |
actionview_datehelper_time_in_words_day: 1 dia |
|
119 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dias" |
|
120 |
actionview_datehelper_time_in_words_hour_about: cerca de uma hora |
|
121 |
actionview_datehelper_time_in_words_hour_about_plural: "cerca de {{count}} horas" |
|
122 |
actionview_datehelper_time_in_words_hour_about_single: cerca de uma hora |
|
123 |
actionview_datehelper_time_in_words_minute: 1 minuto |
|
124 |
actionview_datehelper_time_in_words_minute_half: meio minuto |
|
125 |
actionview_datehelper_time_in_words_minute_less_than: menos de um minuto |
|
126 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minutos" |
|
127 |
actionview_datehelper_time_in_words_minute_single: 1 minuto |
|
128 |
actionview_datehelper_time_in_words_second_less_than: menos de um segundo |
|
129 |
actionview_datehelper_time_in_words_second_less_than_plural: "menos de {{count}} segundos" |
|
130 | 118 |
actionview_instancetag_blank_option: Seleccione |
131 | 119 |
|
132 | 120 |
general_text_No: 'Não' |
sandbox/rails-2.2/config/locales/ro.yml | ||
---|---|---|
138 | 138 |
two_words_connector: " şi " |
139 | 139 |
last_word_connector: " şi " |
140 | 140 |
|
141 |
actionview_datehelper_time_in_words_day: 1 zi |
|
142 |
actionview_datehelper_time_in_words_day_plural: "{{count}} zile" |
|
143 |
actionview_datehelper_time_in_words_hour_about: aproximativ o ora |
|
144 |
actionview_datehelper_time_in_words_hour_about_plural: "aproximativ {{count}} ore" |
|
145 |
actionview_datehelper_time_in_words_hour_about_single: aproximativ o ora |
|
146 |
actionview_datehelper_time_in_words_minute: 1 minut |
|
147 |
actionview_datehelper_time_in_words_minute_half: 30 de secunde |
|
148 |
actionview_datehelper_time_in_words_minute_less_than: mai putin de un minut |
|
149 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minute" |
|
150 |
actionview_datehelper_time_in_words_minute_single: 1 minut |
|
151 |
actionview_datehelper_time_in_words_second_less_than: mai putin de o secunda |
|
152 |
actionview_datehelper_time_in_words_second_less_than_plural: "mai putin de {{count}} secunde" |
|
153 | 141 |
actionview_instancetag_blank_option: Va rog selectati |
154 | 142 |
|
155 | 143 |
general_text_No: 'Nu' |
sandbox/rails-2.2/config/locales/ru.yml | ||
---|---|---|
202 | 202 |
two_words_connector: " и " |
203 | 203 |
last_word_connector: " и " |
204 | 204 |
|
205 |
actionview_datehelper_time_in_words_day: "{{count}} день" |
|
206 |
actionview_datehelper_time_in_words_day_plural2: "{{count}} дня" |
|
207 |
actionview_datehelper_time_in_words_day_plural5: "{{count}} дней" |
|
208 |
actionview_datehelper_time_in_words_day_plural: "{{count}} дней" |
|
209 |
actionview_datehelper_time_in_words_hour_about_plural2: "около {{count}} часов" |
|
210 |
actionview_datehelper_time_in_words_hour_about_plural5: "около {{count}} часов" |
|
211 |
actionview_datehelper_time_in_words_hour_about_plural: "около {{count}} часов" |
|
212 |
actionview_datehelper_time_in_words_hour_about_single: около часа |
|
213 |
actionview_datehelper_time_in_words_hour_about: "около {{count}} часа" |
|
214 |
actionview_datehelper_time_in_words_minute: 1 минута |
|
215 |
actionview_datehelper_time_in_words_minute_half: полминуты |
|
216 |
actionview_datehelper_time_in_words_minute_less_than: менее минуты |
|
217 |
actionview_datehelper_time_in_words_minute_plural2: "{{count}} минуты" |
|
218 |
actionview_datehelper_time_in_words_minute_plural5: "{{count}} минут" |
|
219 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} минут" |
|
220 |
actionview_datehelper_time_in_words_minute_single: 1 минуту |
|
221 |
actionview_datehelper_time_in_words_second_less_than_plural2: "менее {{count}} секунд" |
|
222 |
actionview_datehelper_time_in_words_second_less_than_plural5: "менее {{count}} секунд" |
|
223 |
actionview_datehelper_time_in_words_second_less_than_plural: "менее {{count}} секунд" |
|
224 |
actionview_datehelper_time_in_words_second_less_than: менее секунды |
|
225 | 205 |
actionview_instancetag_blank_option: Выберите |
226 | 206 |
|
227 | 207 |
button_activate: Активировать |
sandbox/rails-2.2/config/locales/sk.yml | ||
---|---|---|
94 | 94 |
|
95 | 95 |
# SK translation by Stanislav Pach | [email protected] |
96 | 96 |
|
97 |
actionview_datehelper_time_in_words_day: 1 deň |
|
98 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dní/dňami" |
|
99 |
actionview_datehelper_time_in_words_hour_about: asi hodinou |
|
100 |
actionview_datehelper_time_in_words_hour_about_plural: "asi {{count}} hodinami" |
|
101 |
actionview_datehelper_time_in_words_hour_about_single: asi hodinou |
|
102 |
actionview_datehelper_time_in_words_minute: 1 minútou |
|
103 |
actionview_datehelper_time_in_words_minute_half: pol minútou |
|
104 |
actionview_datehelper_time_in_words_minute_less_than: menej ako minútou |
|
105 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minútami" |
|
106 |
actionview_datehelper_time_in_words_minute_single: 1 minútou |
|
107 |
actionview_datehelper_time_in_words_second_less_than: menej ako sekundou |
|
108 |
actionview_datehelper_time_in_words_second_less_than_plural: "menej ako {{count}} sekundami" |
|
109 | 97 |
actionview_instancetag_blank_option: Prosím vyberte |
110 | 98 |
|
111 | 99 |
general_text_No: 'Nie' |
sandbox/rails-2.2/config/locales/sl.yml | ||
---|---|---|
92 | 92 |
not_same_project: "ne pripada istemu projektu" |
93 | 93 |
circular_dependency: "Ta odnos bi povzročil krožno odvisnost" |
94 | 94 |
|
95 |
|
|
96 |
actionview_datehelper_time_in_words_day: 1 dan |
|
97 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dni" |
|
98 |
actionview_datehelper_time_in_words_hour_about: kakšno uro |
|
99 |
actionview_datehelper_time_in_words_hour_about_plural: "kakšnih {{count}} ur" |
|
100 |
actionview_datehelper_time_in_words_hour_about_single: kakšno uro |
|
101 |
actionview_datehelper_time_in_words_minute: 1 minuta |
|
102 |
actionview_datehelper_time_in_words_minute_half: pol minute |
|
103 |
actionview_datehelper_time_in_words_minute_less_than: manj kot minuta |
|
104 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minut" |
|
105 |
actionview_datehelper_time_in_words_minute_single: 1 minuta |
|
106 |
actionview_datehelper_time_in_words_second_less_than: manj kot sekunda |
|
107 |
actionview_datehelper_time_in_words_second_less_than_plural: "manj kot {{count}} sekund" |
|
108 | 95 |
actionview_instancetag_blank_option: Prosimo izberite |
109 | 96 |
|
110 | 97 |
general_text_No: 'Ne' |
sandbox/rails-2.2/config/locales/sr.yml | ||
---|---|---|
118 | 118 |
not_same_project: "ne pripada istom projektu" |
119 | 119 |
circular_dependency: "Ova relacija bi napravila kružnu zavisnost" |
120 | 120 |
|
121 |
|
|
122 |
actionview_datehelper_time_in_words_day: 1 dan |
|
123 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dana" |
|
124 |
actionview_datehelper_time_in_words_hour_about: oko sat vremena |
|
125 |
actionview_datehelper_time_in_words_hour_about_plural: "oko {{count}} sati" |
|
126 |
actionview_datehelper_time_in_words_hour_about_single: oko sat vremena |
|
127 |
actionview_datehelper_time_in_words_minute: 1 minut |
|
128 |
actionview_datehelper_time_in_words_minute_half: pola minuta |
|
129 |
actionview_datehelper_time_in_words_minute_less_than: manje od minut |
|
130 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minuta" |
|
131 |
actionview_datehelper_time_in_words_minute_single: 1 minut |
|
132 |
actionview_datehelper_time_in_words_second_less_than: manje od sekunde |
|
133 |
actionview_datehelper_time_in_words_second_less_than_plural: "manje od {{count}} sekundi" |
|
134 | 121 |
actionview_instancetag_blank_option: Molim izaberite |
135 | 122 |
|
136 | 123 |
general_text_No: 'Ne' |
sandbox/rails-2.2/config/locales/sv.yml | ||
---|---|---|
150 | 150 |
sentence_connector: "och" |
151 | 151 |
skip_last_comma: true |
152 | 152 |
|
153 |
|
|
154 |
actionview_datehelper_time_in_words_day: 1 dag |
|
155 |
actionview_datehelper_time_in_words_day_plural: "{{count}} dagar" |
|
156 |
actionview_datehelper_time_in_words_hour_about: cirka en timme |
|
157 |
actionview_datehelper_time_in_words_hour_about_plural: "cirka {{count}} timmar" |
|
158 |
actionview_datehelper_time_in_words_hour_about_single: cirka en timme |
|
159 |
actionview_datehelper_time_in_words_minute: 1 minut |
|
160 |
actionview_datehelper_time_in_words_minute_half: en halv minut |
|
161 |
actionview_datehelper_time_in_words_minute_less_than: mindre än en minut |
|
162 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} minuter" |
|
163 |
actionview_datehelper_time_in_words_minute_single: 1 minut |
|
164 |
actionview_datehelper_time_in_words_second_less_than: mindre än en sekund |
|
165 |
actionview_datehelper_time_in_words_second_less_than_plural: "mindre än {{count}} sekunder" |
|
166 | 153 |
actionview_instancetag_blank_option: Var god välj |
167 | 154 |
|
168 | 155 |
general_text_No: 'Nej' |
sandbox/rails-2.2/config/locales/th.yml | ||
---|---|---|
92 | 92 |
not_same_project: "ไม่ได้อยู่ในโครงการเดียวกัน" |
93 | 93 |
circular_dependency: "ความสัมพันธ์อ้างอิงเป็นวงกลม" |
94 | 94 |
|
95 |
|
|
96 |
actionview_datehelper_time_in_words_day: 1 วัน |
|
97 |
actionview_datehelper_time_in_words_day_plural: "{{count}} วัน" |
|
98 |
actionview_datehelper_time_in_words_hour_about: ประมาณ 1 ชั่วโมง |
|
99 |
actionview_datehelper_time_in_words_hour_about_plural: "ประมาณ {{count}} ชั่วโมง" |
|
100 |
actionview_datehelper_time_in_words_hour_about_single: ประมาณ 1 ชั่วโมง |
|
101 |
actionview_datehelper_time_in_words_minute: 1 นาที |
|
102 |
actionview_datehelper_time_in_words_minute_half: ครึ่งนาที |
|
103 |
actionview_datehelper_time_in_words_minute_less_than: ไม่ถึงนาที |
|
104 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} นาที" |
|
105 |
actionview_datehelper_time_in_words_minute_single: 1 นาที |
|
106 |
actionview_datehelper_time_in_words_second_less_than: ไม่ถึงวินาที |
|
107 |
actionview_datehelper_time_in_words_second_less_than_plural: "ไม่ถึง {{count}} วินาที" |
|
108 | 95 |
actionview_instancetag_blank_option: กรุณาเลือก |
109 | 96 |
|
110 | 97 |
general_text_No: 'ไม่' |
sandbox/rails-2.2/config/locales/tr.yml | ||
---|---|---|
131 | 131 |
circular_dependency: "Bu ilişki döngüsel bağımlılık meydana getirecektir" |
132 | 132 |
models: |
133 | 133 |
|
134 |
actionview_datehelper_time_in_words_day: 1 gün |
|
135 |
actionview_datehelper_time_in_words_day_plural: "{{count}} gün" |
|
136 |
actionview_datehelper_time_in_words_hour_about: yaklaşık 1 saat |
|
137 |
actionview_datehelper_time_in_words_hour_about_plural: "yaklaşık {{count}} saat" |
|
138 |
actionview_datehelper_time_in_words_hour_about_single: yaklaşık bir saat |
|
139 |
actionview_datehelper_time_in_words_minute: 1 dakika |
|
140 |
actionview_datehelper_time_in_words_minute_half: bir buçuk dakika |
|
141 |
actionview_datehelper_time_in_words_minute_less_than: bir dakikadan az |
|
142 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} dakika" |
|
143 |
actionview_datehelper_time_in_words_minute_single: 1 dakika |
|
144 |
actionview_datehelper_time_in_words_second_less_than: 1 saniyeden az |
|
145 |
actionview_datehelper_time_in_words_second_less_than_plural: "{{count}} saniyeden az" |
|
146 | 134 |
actionview_instancetag_blank_option: Lütfen Seçin |
147 | 135 |
|
148 | 136 |
general_text_No: 'Hayır' |
sandbox/rails-2.2/config/locales/uk.yml | ||
---|---|---|
92 | 92 |
not_same_project: "не відносяться до одного проекту" |
93 | 93 |
circular_dependency: "Такий зв'язок приведе до циклічної залежності" |
94 | 94 |
|
95 |
|
|
96 |
actionview_datehelper_time_in_words_day: 1 день |
|
97 |
actionview_datehelper_time_in_words_day_plural: "{{count}} днів(я)" |
|
98 |
actionview_datehelper_time_in_words_hour_about: близько години |
|
99 |
actionview_datehelper_time_in_words_hour_about_plural: "близько {{count}} годин(и)" |
|
100 |
actionview_datehelper_time_in_words_hour_about_single: близько години |
|
101 |
actionview_datehelper_time_in_words_minute: 1 хвилина |
|
102 |
actionview_datehelper_time_in_words_minute_half: півхвилини |
|
103 |
actionview_datehelper_time_in_words_minute_less_than: менше хвилини |
|
104 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} хвилин(и)" |
|
105 |
actionview_datehelper_time_in_words_minute_single: 1 хвилина |
|
106 |
actionview_datehelper_time_in_words_second_less_than: менше секунди |
|
107 |
actionview_datehelper_time_in_words_second_less_than_plural: "менше {{count}} секунд(и)" |
|
108 | 95 |
actionview_instancetag_blank_option: Оберіть |
109 | 96 |
|
110 | 97 |
general_text_No: 'Ні' |
sandbox/rails-2.2/config/locales/vi.yml | ||
---|---|---|
161 | 161 |
two_words_connector: " và " |
162 | 162 |
last_word_connector: ", và " |
163 | 163 |
|
164 |
actionview_datehelper_time_in_words_day: 1 ngày |
|
165 |
actionview_datehelper_time_in_words_day_plural: "{{count}} ngày" |
|
166 |
actionview_datehelper_time_in_words_hour_about: khoảng 1 giờ |
|
167 |
actionview_datehelper_time_in_words_hour_about_plural: "khoảng {{count}} giờ" |
|
168 |
actionview_datehelper_time_in_words_hour_about_single: khoảng 1 giờ |
|
169 |
actionview_datehelper_time_in_words_minute: 1 phút |
|
170 |
actionview_datehelper_time_in_words_minute_half: nửa phút |
|
171 |
actionview_datehelper_time_in_words_minute_less_than: dưới một phút |
|
172 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} phút" |
|
173 |
actionview_datehelper_time_in_words_minute_single: 1 phút |
|
174 |
actionview_datehelper_time_in_words_second_less_than: cách vài giây |
|
175 |
actionview_datehelper_time_in_words_second_less_than_plural: "cách {{count}} giấy" |
|
176 | 164 |
actionview_instancetag_blank_option: Vui lòng chọn |
177 | 165 |
|
178 | 166 |
general_text_No: 'Không' |
sandbox/rails-2.2/config/locales/zh-TW.yml | ||
---|---|---|
123 | 123 |
not_same_project: "不屬於同一個專案" |
124 | 124 |
circular_dependency: "這個關聯會導致環狀相依" |
125 | 125 |
|
126 |
actionview_datehelper_time_in_words_day: 1 天 |
|
127 |
actionview_datehelper_time_in_words_day_plural: "{{count}} 天" |
|
128 |
actionview_datehelper_time_in_words_hour_about: 約 1 小時 |
|
129 |
actionview_datehelper_time_in_words_hour_about_plural: "約 {{count}} 小時" |
|
130 |
actionview_datehelper_time_in_words_hour_about_single: 約 1 小時 |
|
131 |
actionview_datehelper_time_in_words_minute: 1 分鐘 |
|
132 |
actionview_datehelper_time_in_words_minute_half: 半分鐘 |
|
133 |
actionview_datehelper_time_in_words_minute_less_than: 小於 1 分鐘 |
|
134 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} 分鐘" |
|
135 |
actionview_datehelper_time_in_words_minute_single: 1 分鐘 |
|
136 |
actionview_datehelper_time_in_words_second_less_than: 小於 1 秒 |
|
137 |
actionview_datehelper_time_in_words_second_less_than_plural: "小於 {{count}} 秒" |
|
138 | 126 |
actionview_instancetag_blank_option: 請選擇 |
139 | 127 |
|
140 | 128 |
general_text_No: '否' |
sandbox/rails-2.2/config/locales/zh.yml | ||
---|---|---|
123 | 123 |
not_same_project: "不属于同一个项目" |
124 | 124 |
circular_dependency: "此关联将导致循环依赖" |
125 | 125 |
|
126 |
|
|
127 |
actionview_datehelper_time_in_words_day: 1 天 |
|
128 |
actionview_datehelper_time_in_words_day_plural: "{{count}} 天" |
|
129 |
actionview_datehelper_time_in_words_hour_about: 约 1 小时 |
|
130 |
actionview_datehelper_time_in_words_hour_about_plural: "约 {{count}} 小时" |
|
131 |
actionview_datehelper_time_in_words_hour_about_single: 约 1 小时 |
|
132 |
actionview_datehelper_time_in_words_minute: 1 分钟 |
|
133 |
actionview_datehelper_time_in_words_minute_half: 半分钟 |
|
134 |
actionview_datehelper_time_in_words_minute_less_than: 1 分钟以内 |
|
135 |
actionview_datehelper_time_in_words_minute_plural: "{{count}} 分钟" |
|
136 |
actionview_datehelper_time_in_words_minute_single: 1 分钟 |
|
137 |
actionview_datehelper_time_in_words_second_less_than: 1 秒以内 |
|
138 |
actionview_datehelper_time_in_words_second_less_than_plural: "{{count}} 秒以内" |
|
139 | 126 |
actionview_instancetag_blank_option: 请选择 |
140 | 127 |
|
141 | 128 |
general_text_No: '否' |
Also available in: Unified diff
Locales cleaning.