Allow users to set preferred locale in settings and provide basic date and time localization support (#1226)

* Add basic date and time localization

* Normalize translations

* Localize transaction dates

* Removed unsupported Rails locales
This commit was merged in pull request #1226.
This commit is contained in:
Zach Gollwitzer
2024-10-02 14:02:17 -04:00
committed by GitHub
parent 7fabca4679
commit ab40289eb4
130 changed files with 25190 additions and 10 deletions

View File

@@ -1,5 +1,5 @@
class ApplicationController < ActionController::Base
include AutoSync, Authentication, Invitable, SelfHostable, StoreLocation
include Localize, AutoSync, Authentication, Invitable, SelfHostable, StoreLocation
include Pagy::Backend
# Only allow modern browsers supporting webp images, web push, badges, import maps, CSS nesting, and CSS :has.

View File

@@ -0,0 +1,13 @@
module Localize
extend ActiveSupport::Concern
included do
around_action :switch_locale
end
private
def switch_locale(&action)
locale = Current.family.try(:locale) || I18n.default_locale
I18n.with_locale(locale, &action)
end
end

View File

@@ -21,6 +21,6 @@ class Settings::PreferencesController < SettingsController
private
def preference_params
params.require(:user).permit(family_attributes: [ :id, :currency ])
params.require(:user).permit(family_attributes: [ :id, :currency, :locale ])
end
end

View File

@@ -12,6 +12,8 @@ class Family < ApplicationRecord
has_many :merchants, dependent: :destroy
has_many :issues, through: :accounts
validates :locale, inclusion: { in: I18n.available_locales.map(&:to_s) }
def snapshot(period = Period.all)
query = accounts.active.joins(:balances)
.where("account_balances.currency = ?", self.currency)

View File

@@ -9,7 +9,11 @@
data: { action: "bulk-select#toggleGroupSelection" } %>
<% end %>
<%= tag.span "#{date.strftime('%b %d, %Y')} · #{entries.size}" %>
<p class="uppercase space-x-1.5">
<%= tag.span I18n.l(date, format: :long) %>
<span>·</span>
<%= tag.span entries.size %>
</p>
</div>
<%= totals_by_currency(collection: entries, money_method: :amount_money, negate: true) %>

View File

@@ -19,7 +19,7 @@
</div>
<span class="text-sm text-gray-500">
<%= entry.date.strftime("%A %d %B") %>
<%= I18n.l(entry.date, format: :long) %>
</span>
</header>

View File

@@ -12,6 +12,13 @@
currencies_for_select.map { |currency| [ "#{currency.name} (#{currency.iso_code})", currency.iso_code ] },
{ label: "Currency", selected: Current.family.currency },
{ data: { auto_submit_form_target: "auto" } } %>
<%= family_form.select :locale,
I18n.available_locales,
{ label: "Locale", selected: Current.family.locale },
{ data: { auto_submit_form_target: "auto" } } %>
<p class="text-xs italic pl-2 text-gray-500">Please note, we are still working on translations for various languages. Please see the <%= link_to "I18n issue", "https://github.com/maybe-finance/maybe/issues/1225", target: "_blank", class: "underline" %> for more information.</p>
<% end %>
<% end %>
</div>

View File

@@ -26,6 +26,9 @@ module Maybe
config.active_job.queue_adapter = :good_job
# TODO: This is here for incremental adoption of localization. This can be removed when all translations are implemented.
config.i18n.fallbacks = true
config.app_mode = (ENV["SELF_HOSTING_ENABLED"] == "true" ? "self_hosted" : "managed").inquiry
end
end

View File

@@ -1,4 +1,6 @@
base_locale: en
fallbacks:
- default
data:
read:
- config/locales/**/*%{locale}.yml
@@ -26,9 +28,16 @@ search:
ignore_unused:
- 'activerecord.attributes.*' # i18n-tasks does not detect these on forms, forms validations (https://github.com/glebm/i18n-tasks/blob/0b4b483c82664f26c5696fb0f6aa1297356e4683/templates/config/i18n-tasks.yml#L146)
- 'activerecord.models.*' # i18n-tasks does not detect use in dynamic model names (e.g. object.model_name.human)
- 'activerecord.errors.models*'
- 'activerecord.errors*'
- 'activemodel.errors.models.*'
- 'helpers.submit.*' # i18n-tasks does not detect used at forms
- 'helpers.label.*' # i18n-tasks does not detect used at forms
- 'accounts.show.sync_message_*' # messages generated in the sync ActiveJob
- 'address.attributes.*'
- 'date.*'
- 'time.*'
- 'datetime.*'
- 'number.*'
- 'errors.*'
- 'helpers.*'
- 'support.*'

View File

@@ -0,0 +1,213 @@
---
af:
activerecord:
errors:
messages:
record_invalid: 'Validering het misluk: %{errors}'
restrict_dependent_destroy:
has_many: Kan rekord nie skrap nie omdat afhanklike %{record} bestaan
has_one: Kan rekord nie skrap nie omdat 'n afhanklike %{record} bestaan
date:
abbr_day_names:
- Son
- Maan
- Dins
- Woe
- Don
- Vry
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- Mei
- Jun
- Jul
- Aug
- Sep
- Okt
- Nov
- Des
day_names:
- Sondag
- Maandag
- Dinsdag
- Woensdag
- Donderdag
- Vrydag
- Saterdag
formats:
default: "%Y-%m-%d"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- Januarie
- Februarie
- Maart
- April
- Mei
- Junie
- Julie
- Augustus
- September
- Oktober
- November
- Desember
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: ongeveer %{count} uur
other: ongeveer %{count} ure
about_x_months:
one: ongeveer %{count} maand
other: ongeveer %{count} maande
about_x_years:
one: ongeveer %{count} jaar
other: ongeveer %{count} jaar
almost_x_years:
one: sowat %{count} jaar
other: sowat %{count} jaar
half_a_minute: halfminuut
less_than_x_minutes:
one: minder as %{count} minuut
other: minder as %{count} minute
less_than_x_seconds:
one: minder as %{count} sekonde
other: minder as %{count} sekondes
over_x_years:
one: meer as %{count} jaar
other: meer as %{count} jaar
x_days:
one: "%{count} dag"
other: "%{count} days"
x_minutes:
one: "%{count} minuut"
other: "%{count} minute"
x_months:
one: "%{count} maand"
other: "%{count} maande"
x_seconds:
one: "%{count} sekonde"
other: "%{count} sekondes"
x_years:
one: "%{count} jaar"
other: "%{count} jare"
prompts:
day: Dag
hour: Uur
minute: Minuut
month: Maand
second: Sekondes
year: Jaar
errors:
format: "%{attribute} %{message}"
messages:
accepted: moet aanvaar word
blank: mag nie leeg wees nie
confirmation: pas nie by bevestiging nie
empty: mag nie leeg wees nie
equal_to: moet gelyk wees aan %{count}
even: moet ewe wees
exclusion: is bespreek
greater_than: moet meer wees as %{count}
greater_than_or_equal_to: moet meer of gelykstaande wees aan %{count}
inclusion: is nie by die lys ingesluit nie
invalid: is ongeldig
less_than: moet minder wees as %{count}
less_than_or_equal_to: moet minder of gelykstaande wees aan %{count}
model_invalid: 'Validering het misluk: %{errors}'
not_a_number: is nie 'n getal nie
not_an_integer: moet 'n heelgetal wees
odd: moet onewe wees
other_than: moet anders wees as %{count}
present: moet leeg wees
required: moet bestaan
taken: is reeds geneem
too_long:
one: is te lank (maksimum is %{count} karakter)
other: is te lank (maksimum is %{count} karakters)
too_short:
one: is te kort (minimum is %{count} karakter)
other: is te kort (minimum is %{count} karakters)
wrong_length:
one: is die verkeerde lengte (moet %{count} karakter wees)
other: is die verkeerde lengte (moet %{count} karakters wees)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} fout het verhoed dat hierdie %{model} gestoor kon word"
other: "%{count} foute het verhoed dat hierdie %{model} gestoor kon word"
helpers:
select:
prompt: Kies asseblief
submit:
create: Skep %{model}
submit: Stoor %{model}
update: Dateer %{model} op
number:
currency:
format:
delimiter: " "
format: "%u %n"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: R
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: miljard
million: miljoen
quadrillion: biljard
thousand: duisend
trillion: biljoen
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Greep
other: Grepe
gb: GG
kb: kG
mb: MG
tb: TG
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", en "
two_words_connector: " en "
words_connector: ", "
time:
am: vm
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: nm

View File

@@ -0,0 +1,278 @@
---
ar:
activerecord:
errors:
messages:
record_invalid: 'فشل التحقّق من: %{errors}'
restrict_dependent_destroy:
has_many: لا يمكن حذف السجل لوجود سجلات تعتمد عليه %{record}
has_one: لا يمكن حذف السجل لوجود سجل يعتمد عليه %{record}
date:
abbr_day_names:
- الأحد
- الإثنين
- الثّلاثاء
- الأربعاء
- الخميس
- الجمعة
- السّبت
abbr_month_names:
-
- يناير
- فبراير
- مارس
- أبريل
- مايو
- يونيو
- يوليو
- أغسطس
- سبتمبر
- أكتوبر
- نوفمبر
- ديسمبر
day_names:
- الأحد
- الإثنين
- الثّلاثاء
- الأربعاء
- الخميس
- الجمعة
- السّبت
formats:
default: "%d-%m-%Y"
long: "%e %B، %Y"
short: "%e %b"
month_names:
-
- يناير
- فبراير
- مارس
- أبريل
- مايو
- يونيو
- يوليو
- أغسطس
- سبتمبر
- أكتوبر
- نوفمبر
- ديسمبر
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
few: حوالي %{count} ساعات
many: حوالي %{count} ساعة
one: حوالي ساعة واحدة
other: حوالي %{count} ساعة
two: حوالي ساعتان
zero: حوالي صفر ساعات
about_x_months:
few: حوالي %{count} أشهر
many: حوالي %{count} شهر
one: حوالي شهر واحد
other: حوالي %{count} شهر
two: حوالي شهران
zero: حوالي صفر أشهر
about_x_years:
few: حوالي %{count} سنوات
many: حوالي %{count} سنة
one: حوالي سنة
other: حوالي %{count} سنة
two: حوالي سنتان
zero: حوالي صفر سنوات
almost_x_years:
few: ما يقرب من %{count} سنوات
many: ما يقرب من %{count} سنة
one: تقريبا سنة واحدة
other: ما يقرب من %{count} سنة
two: ما يقرب من سنتين
zero: ما يقرب من صفر سنوات
half_a_minute: نصف دقيقة
less_than_x_minutes:
few: أقل من %{count} دقائق
many: أقل من %{count} دقيقة
one: أقل من دقيقة
other: أقل من %{count} دقيقة
two: أقل من دقيقتان
zero: أقل من صفر دقائق
less_than_x_seconds:
few: أقل من %{count} ثوان
many: أقل من %{count} ثانية
one: أقل من ثانية
other: أقل من %{count} ثانية
two: أقل من ثانيتان
zero: أقل من صفر ثواني
over_x_years:
few: أكثر من %{count} سنوات
many: أكثر من %{count} سنة
one: أكثر من سنة
other: أكثر من %{count} سنة
two: أكثر من سنتين
zero: أكثر من صفر سنوات
x_days:
few: "%{count} أيام"
many: "%{count} يوم"
one: يوم واحد
other: "%{count} يوم"
two: يومان
zero: صفر أيام
x_minutes:
few: "%{count} دقائق"
many: "%{count} دقيقة"
one: دقيقة واحدة
other: "%{count} دقيقة"
two: دقيقتان
zero: صفر دقائق
x_months:
few: "%{count} أشهر"
many: "%{count} شهر"
one: شهر واحد
other: "%{count} شهر"
two: شهران
zero: صفر أشهر
x_seconds:
few: "%{count} ثوان"
many: "%{count} ثانية"
one: ثانية واحدة
other: "%{count} ثانية"
two: ثانيتان
zero: صفر ثواني
prompts:
day: اليوم
hour: ساعة
minute: دقيقة
month: الشهر
second: ثانية
year: السنة
errors:
format: "%{message}"
messages:
accepted: يجب أن تقبل %{attribute}
blank: لا يمكن أن يكون محتوى %{attribute} فارغاً
confirmation: محتوى %{attribute} لا يتوافق مع %{attribute}
empty: لا يمكن أن يكون محتوى %{attribute} فارغاً
equal_to: يجب أن يساوي طول %{attribute} %{count}
even: يجب أن يكون عدد %{attribute} زوجياً
exclusion: حقل %{attribute} محجوز
greater_than: يجب أن يكون عدد %{attribute} أكبر من %{count}
greater_than_or_equal_to: يجب أن يكون عدد %{attribute} أكبر أو يساوي %{count}
inclusion: "%{attribute} غير وارد في القائمة"
invalid: محتوى %{attribute} غير صالح
less_than: يجب أن يكون عدد %{attribute} أصغر من %{count}
less_than_or_equal_to: يجب أن يكون عدد %{attribute} أصغر أو يساوي %{count}
not_a_number: يجب أن يكون محتوى %{attribute} رقماً
not_an_integer: يجب أن يكون عدد %{attribute} عدد صحيحاً
odd: يجب أن يكون عدد %{attribute} عدداً فردياً
other_than:
few: طول %{attribute} يجب ألاّ يكون %{count} أحرف
many: طول %{attribute} يجب ألاّ يكون %{count} حرفاً
one: طول %{attribute} يجب ألاّ يكون حرفاً واحداً
other: طول %{attribute} يجب ألاّ يكون %{count} حرفاً
two: طول %{attribute} يجب ألاّ يكون حرفان
zero: طول %{attribute} يجب ألاّ يكون صفر حرف
present: يجب ترك حقل %{attribute} فارغاً
taken: حقل %{attribute} محجوز مسبقاً
too_long:
few: محتوى %{attribute} أطول من اللّازم (الحد الأقصى هو %{count} حروف)
many: محتوى %{attribute} أطول من اللّازم (الحد الأقصى هو %{count} حرف)
one: محتوى %{attribute} أطول من اللّازم (الحد الأقصى هو حرف واحد)
other: محتوى %{attribute} أطول من اللّازم (الحد الأقصى هو %{count} حرف)
two: محتوى %{attribute} أطول من اللّازم (الحد الأقصى هو حرفان)
zero: محتوى %{attribute} أطول من اللّازم (الحد الأقصى هو ولا حرف)
too_short:
few: محتوى %{attribute} أقصر من اللّازم (الحد الأدنى هو %{count} حروف)
many: محتوى %{attribute} أقصر من اللّازم (الحد الأدنى هو %{count} حرف)
one: محتوى %{attribute} أقصر من اللّازم (الحد الأدنى هو حرف واحد)
other: محتوى %{attribute} أقصر من اللّازم (الحد الأدنى هو %{count} حرف)
two: محتوى %{attribute} أقصر من اللّازم (الحد الأدنى هو حرفان)
zero: محتوى %{attribute} أقصر من اللّازم (الحد الأدنى هو ولا حرف)
wrong_length:
few: طول %{attribute} غير مطابق للحد المطلوب (يجب أن يكون %{count} أحرف)
many: طول %{attribute} غير مطابق للحد المطلوب (يجب أن يكون %{count} حرف)
one: طول %{attribute} غير مطابق للحد المطلوب (يجب أن يكون حرف واحد)
other: طول %{attribute} غير مطابق للحد المطلوب (يجب أن يكون %{count} حرف)
two: طول %{attribute} غير مطابق للحد المطلوب (يجب أن يكون حرفان)
zero: طول %{attribute} غير مطابق للحد المطلوب (يجب أن يكون ولا حرف)
template:
body: يُرجى التحقّق من الحقول التّالية:%{attribute}
header:
few: ليس بالامكان حفظ %{model} لسبب وجود %{count} أخطاء.
many: ليس بالامكان حفظ %{model} لسبب وجود %{count} خطأ.
one: ليس بالامكان حفظ %{model} لسبب وجود خطأ واحد.
other: ليس بالامكان حفظ %{model} لسبب وجود %{count} خطأ.
two: ليس بالامكان حفظ %{model} لسبب وجود خطئان.
zero: ليس بالامكان حفظ %{model} لسبب ولا خطأ.
helpers:
select:
prompt: يُرجى الاختيار
submit:
create: "%{model} إنشاء"
submit: "%{model} حِفظ"
update: "%{model} تحديث"
number:
currency:
format:
delimiter: ","
format: "%u %n"
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
unit: KWD
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: مليار
million: مليون
quadrillion: كدريليون
thousand: ألفّ
trillion: تريليون
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
few: Bytes
many: Bytes
one: Byte
other: Bytes
two: Bytes
zero: Bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " و "
two_words_connector: " و "
words_connector: " ، "
time:
am: صباحًا
formats:
default: "%a %d %b %Y %H:%M:%S %Z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: مساءً

View File

@@ -0,0 +1,203 @@
---
az:
activerecord:
errors:
messages:
record_invalid: 'Yoxlama uğursuz oldu: %{errors}'
restrict_dependent_destroy:
has_many: Əlaqəli %{record} yazılar olduğundan bu yazını silmək mümkün deyil
has_one: Əlaqəli %{record} yazı olduğundan bu yazını silmək mümkün deyil
date:
abbr_day_names:
- B.
- B.E.
- Ç.A.
- Ç.
- C.A.
- C.
- Ş.
abbr_month_names:
-
- Yan
- Fev
- Mar
- Apr
- May
- İyn
- İyl
- Avq
- Sen
- Okt
- Noy
- Dek
day_names:
- Bazar
- Bazar ertəsi
- Çərşənbə axşamı
- Çərşənbə
- Cümə axşamı
- Cümə
- Şənbə
formats:
default: "%d.%m.%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- Yanvar
- Fevral
- Mart
- Aprel
- May
- İyun
- İyul
- Avqust
- Sentyabr
- Oktyabr
- Noyabr
- Dekabr
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: təxminən %{count} saat
other: təxminən %{count} saat
about_x_months:
one: təxminən %{count} ay
other: təxminən %{count} ay
about_x_years:
one: təxminən %{count} il
other: təxminən %{count} il
almost_x_years:
one: təqribən %{count} il
other: təqribən %{count} il
half_a_minute: yarım dəqiqə
less_than_x_minutes:
one: "%{count} dəqiqədən az"
other: "%{count} dəqiqədən az"
less_than_x_seconds:
one: "%{count} saniyədən az"
other: "%{count} saniyədən az"
over_x_years:
one: "%{count} ildən çox"
other: "%{count} ildən çox"
x_days:
one: "%{count} gün"
other: "%{count} gün"
x_minutes:
one: "%{count} dəqiqə"
other: "%{count} dəqiqə"
x_months:
one: "%{count} ay"
other: "%{count} ay"
x_seconds:
one: "%{count} saniyə"
other: "%{count} saniyə"
prompts:
day: Gün
hour: Saat
minute: Dəqiqə
month: Ay
second: Saniyə
year: İl
errors:
format: "%{attribute} %{message}"
messages:
accepted: qəbul olunmalıdır
blank: boş ola bilməz
confirmation: təsdiqə uygun deyil
empty: boş ola bilməz
equal_to: "%{count}-ə bərabər olmalıdır"
even: cüt olmalıdır
exclusion: qorunur
greater_than: "%{count}-dən böyük olmalıdır"
greater_than_or_equal_to: böyük və ya %{count}-ə bərabər olmalıdır
inclusion: siyahiyə daxil deyil
invalid: yanlışdır
less_than: "%{count}-dən kiçik olmalıdır"
less_than_or_equal_to: kiçik və ya %{count}-ə bərabər olmalıdır
model_invalid: 'Yoxlama uğursuz oldu: %{errors}'
not_a_number: rəqəm deyil
not_an_integer: tam rəqəm olmalıdır
odd: tək olmalıdır
other_than: "%{count}-dən fərqli olmalıdır"
present: boş olmalıdır
required: mövcud olmalıdır
taken: artıq mövcuddur
too_long: çox uzundur (%{count} simvoldan çox olmalı deyil)
too_short: çox qısadır (%{count} simvoldan az olmalı deyil)
wrong_length: uzunluqu səhvdir (%{count} simvol olmalıdır)
template:
body: 'Aşağıdaki səhvlər üzə çıxdı:'
header:
one: "%{model} saxlanmadı: %{count} səhv"
other: "%{model} saxlanmadı: %{count} səhv"
helpers:
select:
prompt: Seçin
submit:
create: "%{model} yarat"
submit: "%{model} saxla"
update: "%{model} yenilə"
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: AZN
format:
delimiter: " "
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Milyard
million: Milyon
quadrillion: Kvadrilyon
thousand: Min
trillion: Trilyon
unit: ''
format:
delimiter: ''
precision: 1
significant: false
strip_insignificant_zeros: false
storage_units:
format: "%n %u"
units:
byte:
one: Bayt
other: Bayt
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " və "
two_words_connector: " və "
words_connector: ", "
time:
am: günortaya qədər
formats:
default: "%a, %d %b %Y, %H:%M:%S %z"
long: "%d %B %Y, %H:%M"
short: "%d %b, %H:%M"
pm: günortadan sonra

View File

@@ -0,0 +1,269 @@
---
be:
activerecord:
errors:
messages:
record_invalid: 'Памылкі валідацыі: %{errors}'
restrict_dependent_destroy:
has_many: Нельга выдаліць запіс, таму што існуюць залежнасці %{record}
has_one: Нельга выдаліць запіс, таму што існуе залежнасць %{record}
date:
abbr_day_names:
- Пан
- Аўт
- Сер
- Чцв
- Пят
- Суб
- Ндз
abbr_month_names:
-
- Сту
- Лют
- Сак
- Кра
- Тра
- Чэр
- Ліп
- Жні
- Вер
- Кас
- Ліс
- Сне
day_names:
- Нядзеля
- Панядзелак
- Аўторак
- Серада
- Чацвер
- Пятніца
- Субота
formats:
default: "%d.%m.%Y"
long: "%-d %B %Y"
short: "%-d %b"
month_names:
-
- Студзень
- Люты
- Сакавік
- Красавік
- Травень
- Чэрвень
- Ліпень
- Жнівень
- Верасень
- Кастрычнік
- Лістапад
- Снежань
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
few: каля %{count} гадзін
many: каля %{count} гадзін
one: каля %{count} гадзіны
other: каля %{count} гадзін
about_x_months:
few: каля %{count} месяцаў
many: каля %{count} месяцаў
one: каля %{count} месяца
other: каля %{count} месяцаў
about_x_years:
few: каля %{count} гадоў
many: каля %{count} гадоў
one: каля %{count} года
other: каля %{count} гадоў
almost_x_years:
few: амаль %{count} гады
many: амаль %{count} гадоў
one: амаль %{count} год
other: амаль %{count} гадоў
half_a_minute: палова хвіліны
less_than_x_minutes:
few: меней за %{count} хвіліны
many: меней за %{count} хвілін
one: меней за %{count} хвіліну
other: меней за %{count} хвіліны
less_than_x_seconds:
few: меней за %{count} секунды
many: меней за %{count} секунд
one: меней за %{count} секунду
other: меней за %{count} секунды
over_x_years:
few: болей за %{count} гады
many: болей за %{count} гадоў
one: болей за %{count} год
other: болей за %{count} года
x_days:
few: "%{count} дні"
many: "%{count} дзён"
one: "%{count} дзень"
other: "%{count} дня"
x_minutes:
few: "%{count} хвіліны"
many: "%{count} хвілін"
one: "%{count} хвіліна"
other: "%{count} хвіліны"
x_months:
few: "%{count} месяцы"
many: "%{count} месяцаў"
one: "%{count} месяц"
other: "%{count} месяца"
x_seconds:
few: "%{count} секунды"
many: "%{count} секунд"
one: "%{count} секунда"
other: "%{count} секунды"
x_years:
few: "%{count} гады"
many: "%{count} гадоў"
one: "%{count} год"
other: "%{count} года"
prompts:
day: Дзень
hour: Гадзіна
minute: Хвіліна
month: Месяц
second: Секунда
year: Год
errors:
format: "%{attribute} %{message}"
messages:
accepted: трэба прыняць
blank: не можа быць пустым
confirmation: не супадае з %{attribute}
empty: не можа быць пустым
equal_to: павінна быць роўным %{count}
even: павінна быць цотным
exclusion: мае зарэзерваванае значэнне
greater_than: павінна быць болей за %{count}
greater_than_or_equal_to: павінна быць болей ці роўным %{count}
inclusion: значэнне не уключана ў спіс
invalid: няправільнае значэнне
less_than: павінна быць меней за %{count}
less_than_or_equal_to: павінна быць меней ці роўным %{count}
model_invalid: 'Узніклі настпупныя памылкі: %{errors}'
not_a_number: гэта не лічба
not_an_integer: павінна быць цэлай лічбай
odd: павінна быць няцотным
other_than: павінна адрознівацца ад %{count}
present: павінна быць пустым
required: не можа адсутнічаць
taken: ўжо занята
too_long:
few: занадта доўгі (максімум %{count} сімвала)
many: занадта доўгі (максімум %{count} сімвалаў)
one: занадта доўгі (максімум %{count} сімвал)
other: занадта доўгі (максімум %{count} сімвалаў)
too_short:
few: занадта кароткі (мінімум %{count} сімвала)
many: занадта кароткі (мінімум %{count} сімвалаў)
one: занадта кароткі (мінімум %{count} сімвал)
other: занадта кароткі (мінімум %{count} сімвалаў)
wrong_length:
few: няправільная даўжыня (павінен быць %{count} сімвала)
many: няправільная даўжыня (павінны быць %{count} сімвалаў)
one: няправільная даўжыня (павінен быць %{count} сімвал)
other: няправільная даўжыня (павінны быць %{count} сімвалаў)
template:
body: 'Узніклі праблемы з наступнымі палямі:'
header:
few: не атрымалася захаваць %{model} з-за %{count} памылак
many: не атрымалася захаваць %{model} з-за %{count} памылак
one: не атрымалася захаваць %{model} з-за %{count} памылкі
other: не атрымалася захаваць %{model} з-за %{count} памылак
helpers:
select:
prompt: Калі ласка, абярыце
submit:
create: Стварыць %{model}
submit: Захаваць %{model}
update: Абнавіць %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: руб.
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
few: мільярда
many: мільярдаў
one: мільярд
other: мільярда
million:
few: мільёна
many: мільёнаў
one: мільён
other: мільёна
quadrillion:
few: квадрыльёна
many: квадрыльёнаў
one: квадрыльён
other: квадрыльёна
thousand:
few: тысячы
many: тысяч
one: тысяча
other: тысячы
trillion:
few: трыльёна
many: трыльёнаў
one: трыльён
other: трыльёна
unit: ''
format:
delimiter: ''
precision: 1
significant: false
strip_insignificant_zeros: false
storage_units:
format: "%n %u"
units:
byte:
few: байта
many: байтаў
one: байт
other: байта
eb: ЭБ
gb: ГБ
kb: КБ
mb: МБ
pb: ПБ
tb: ТБ
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " і "
two_words_connector: " і "
words_connector: ", "
time:
am: раніцы
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y, %H:%M"
short: "%d %b %H:%M"
pm: вечара

View File

@@ -0,0 +1,196 @@
---
bg:
activerecord:
errors:
messages:
record_invalid: 'имаше грешки: %{errors}'
date:
abbr_day_names:
- нед
- пон
- вт
- ср
- чет
- пет
- съб
abbr_month_names:
-
- ян.
- фев.
- март
- апр.
- май
- юни
- юли
- авг.
- сеп.
- окт.
- ноем.
- дек.
day_names:
- неделя
- понеделник
- вторник
- сряда
- четвъртък
- петък
- събота
formats:
default: "%d.%m.%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- януари
- февруари
- март
- април
- май
- юни
- юли
- август
- септември
- октомври
- ноември
- декември
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: около %{count} час
other: около %{count} часа
about_x_months:
one: около %{count} месец
other: около %{count} месеца
about_x_years:
one: около %{count} година
other: около %{count} години
almost_x_years:
one: почти %{count} година
other: почти %{count} години
half_a_minute: половин минута
less_than_x_minutes:
one: по-малко от %{count} минута
other: по-малко от %{count} минути
less_than_x_seconds:
one: по-малко от %{count} секунда
other: по-малко от %{count} секунди
over_x_years:
one: над %{count} година
other: над %{count} години
x_days:
one: "%{count} ден"
other: "%{count} дни"
x_minutes:
one: "%{count} минута"
other: "%{count} минути"
x_months:
one: "%{count} месец"
other: "%{count} месеца"
x_seconds:
one: "%{count} секунда"
other: "%{count} секунди"
prompts:
day: Ден
hour: Час
minute: Минута
month: Месец
second: Секунда
year: Година
errors:
format: "%{attribute} %{message}"
messages:
accepted: трябва да се потвърди
blank: не може да е без стойност
confirmation: не съответства на потвърждението
empty: не може да е празно
equal_to: трябва да има стойност, равна на %{count}
even: трябва да е нечетно
exclusion: съдържа предварително зададена стойност
greater_than: трябва да има стойност, по-голяма от %{count}
greater_than_or_equal_to: трябва да има стойност, по-голяма или равна на %{count}
inclusion: съдържа непредвидена стойност
invalid: съдържа невярна стойност
less_than: трябва да има стойност, по-малка от %{count}
less_than_or_equal_to: трябва да има стойност, по-малка или равна на %{count}
not_a_number: не е число
not_an_integer: не е цяло число
odd: трябва да е четно
taken: вече съществува
too_long: е прекаленo дълго (не може да е повече от %{count} символа)
too_short: е прекалено късо (не може да бъде по-малко от %{count} символа)
wrong_length: е с грешна дължина (трябва да е с дължина, равна на %{count} символа)
template:
body: 'Възникнаха проблеми със следните полета:'
header:
one: "%{model}: записът е неуспешен заради %{count} грешка"
other: "%{model}: записът е неуспешен заради %{count} грешки"
helpers:
select:
prompt: Моля отбележете
submit:
create: Създай %{model}
submit: Запази %{model}
update: Обнови %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: лв.
format:
delimiter: " "
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: милиарда
million: милиона
quadrillion: квадрилиона
thousand: хиляди
trillion: трилиона
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Байт
other: Байта
gb: ГБ
kb: КБ
mb: МБ
tb: ТБ
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " и "
two_words_connector: " и "
words_connector: ", "
time:
am: преди обяд
formats:
default: "%a, %d %b %Y, %H:%M:%S %z"
long: "%d %B %Y, %H:%M"
short: "%d %b, %H:%M"
pm: следобед

View File

@@ -0,0 +1,179 @@
---
bn:
date:
abbr_day_names:
- রবিবার
- সোমবার
- মঙ্গলবার
- বুধবার
- বৃহস্পতিবার
- শুক্রবার
- শনিবার
abbr_month_names:
-
- জানুয়ারি
- ফেব্রুয়ারি
- মার্চ
- এপ্রিল
- মে
- জুন
- জুলাই
- আগস্ট
- সেপ্টেম্বর
- অক্টোবর
- নভেম্বর
- ডিসেম্বর
day_names:
- রবিবার
- সোমবার
- মঙ্গলবার
- বুধবার
- বৃহস্পতিবার
- শুক্রবার
- শনিবার
formats:
default: "%e/%m/%Y"
long: "%e %B %Y"
short: "%e %b"
month_names:
-
- জানুয়ারি
- ফেব্রুয়ারি
- মার্চ
- এপ্রিল
- মে
- জুন
- জুলাই
- আগস্ট
- সেপ্টেম্বর
- অক্টোবর
- নভেম্বর
- ডিসেম্বর
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: প্রায় ১ ঘণ্টা
other: প্রায় %{count} ঘণ্টা
about_x_months:
one: প্রায় ১ মাস
other: প্রায় %{count} মাস
about_x_years:
one: প্রায় ১ বছর
other: প্রায় %{count} বছর
almost_x_years:
one: প্রায় ১ বছর
other: প্রায় %{count} বছর
half_a_minute: অর্ধ মিনিট
less_than_x_minutes:
one: মিনিটের কম
other: "%{count} মিনিটের কম"
less_than_x_seconds:
one: সেকেন্ডর কম
other: "%{count} সেকেন্ডের কম"
over_x_years:
one: বছরের বেশি
other: "%{count} বছরের বেশি"
x_days:
one: দিন
other: "%{count} দিন"
x_minutes:
one: মিনিট
other: "%{count} মিনিট"
x_months:
one: মাস
other: "%{count} মাস"
x_seconds:
one: সেকেন্ড
other: "%{count} সেকেন্ড"
prompts:
day: দিন
hour: ঘণ্টা
minute: মিনিট
month: মাস
second: সেকেন্ড
year: বছর
errors:
format: "%{attribute} %{message}"
messages:
accepted: গ্রাহ্য করতে হবে
blank: ফাঁকা রাখা যাবে না
confirmation: অনুমোদনের সঙ্গে মিলছে না
empty: খালি রাখা যাবে না
equal_to: "%{count} এর সঙ্গে সমান হতে হবে"
even: জোড় হতে হবে
exclusion: রিসার্ভ করা আছে
greater_than: "%{count} থেকে বড় হতে হবে"
greater_than_or_equal_to: "%{count} থেকে বড় অথবা তার সমান হতে হবে"
inclusion: তালিকায় অন্তর্ভুক্ত নয়
invalid: সঠিক নয়
less_than: "%{count} থেকে ছোটো হতে হবে"
less_than_or_equal_to: "%{count} থেকে ছোটো অথবা তার সমান হতে হবে"
not_a_number: নম্বর নয়
odd: বেজোড় হতে হবে
taken: আগেই নিয়ে নেওয়া হয়েছে
too_long: খুব বড়ো (সর্বোচ্চ %{count} অক্ষর)
too_short: খুব ছোটো (সর্বনিম্ন %{count} অক্ষর)
wrong_length: দৈর্ঘ্যটি সঠিক নয় (%{count} অক্ষর হতে হবে)
template:
body: 'এই ফিল্ডগুলোতে কিছু সমস্যা দেখা দিয়েছে:'
header:
one: ১টি ত্রুটির কারণে %{model} সংরক্ষণ করা সম্ভব হয়নি
other: "%{count}টি ত্রুটির কারণে %{model} সংরক্ষণ করা সম্ভব হয়নি"
number:
currency:
format:
delimiter: ","
format: "%u %n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "৳"
format:
delimiter: ","
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: বাইট
other: বাইট
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", এবং "
two_words_connector: " এবং "
words_connector: ", "
time:
am: am
formats:
default: "%A, %e %B %Y %H:%M:%S %z"
long: "%e %B %Y %H:%M"
short: "%e %b %H:%M"
pm: pm

View File

@@ -0,0 +1,248 @@
---
bs:
activerecord:
errors:
messages:
record_invalid: 'Validacija nije uspjela: %{errors}'
restrict_dependent_destroy:
has_many: Nije moguće izbrisati zapis jer postoje ovisni %{record}
has_one: Nije moguće izbrisati zapis jer postoji ovisan %{record}
date:
abbr_day_names:
- ned
- pon
- uto
- sri
- čet
- pet
- sub
abbr_month_names:
-
- jan
- feb
- mar
- apr
- maj
- jun
- jul
- aug
- sep
- okt
- nov
- dec
day_names:
- nedjelja
- ponedjeljak
- utorak
- srijeda
- četvrtak
- petak
- subota
formats:
default: "%d.%m.%Y."
long: "%e. %B %Y."
short: "%e. %b. %Y."
month_names:
-
- januar
- februar
- mart
- april
- maj
- juni
- juli
- august
- septembar
- oktobar
- novembar
- decembar
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
few: oko %{count} sata
many: oko %{count} sati
one: oko sat
other: oko %{count} sati
about_x_months:
few: oko %{count} mjeseca
many: oko %{count} mjeseci
one: oko mjesec
other: oko %{count} mjeseci
about_x_years:
few: oko %{count} godine
many: oko %{count} godina
one: oko godine
other: oko %{count} godina
almost_x_years:
few: skoro %{count} godine
many: skoro %{count} godina
one: skoro %{count} godina
other: skoro %{count} godina
half_a_minute: pola minute
less_than_x_minutes:
few: manje od %{count} minute
many: manje od %{count} minuta
one: manje od minute
other: manje od %{count} minuta
less_than_x_seconds:
few: manje od %{count} sekunde
many: manje od %{count} sekundi
one: manje od sekunde
other: manje od %{count} sekundi
over_x_years:
few: preko %{count} godine
many: preko %{count} godina
one: preko godine
other: preko %{count} godina
x_days:
few: "%{count} dana"
many: "%{count} dana"
one: "%{count} dan"
other: "%{count} dana"
x_minutes:
few: "%{count} minute"
many: "%{count} minuta"
one: "%{count} minut"
other: "%{count} minuta"
x_months:
few: "%{count} mjeseca"
many: "%{count} mjeseci"
one: "%{count} mjesec"
other: "%{count} mjeseci"
x_seconds:
few: "%{count} sekunde"
many: "%{count} sekundi"
one: "%{count} sekund"
other: "%{count} sekundi"
prompts:
day: dan
hour: sat
minute: minut
month: mjesec
second: sekundi
year: godina
errors:
format: "%{attribute} %{message}"
messages:
accepted: mora biti prihvaćeno
blank: ne smije biti prazno
confirmation: se ne poklapa sa potvrdom
empty: ne smije biti prazno
equal_to: mora biti %{count}
even: mora biti parno
exclusion: je rezervisano
greater_than: mora biti veće od %{count}
greater_than_or_equal_to: mora biti veće ili jednako %{count}
inclusion: nije uključeno u listu
invalid: nije validno
less_than: mora biti manje od %{count}
less_than_or_equal_to: mora biti manje ili jednako %{count}
not_a_number: nije broj
not_an_integer: mora biti cijeli broj
odd: mora biti neparno
other_than: mora biti različito od %{count}
present: mora biti prazno
taken: je već zauzet
too_long: je predugo (maksimalno je dozvoljeno %{count} znakova)
too_short: je prekratko (predviđeno je minimalno %{count} znakova)
wrong_length: je pogrešne dužine (trebalo bi biti tačno %{count} znakova)
template:
body: 'Desili su se problemi sa sljedećim poljima:'
header:
few: "%{count} greške su spriječile da se ovaj %{model} spremi"
many: "%{count} grešaka je spriječilo da se ovaj %{model} spremi"
one: "%{count} greška je spriječila da se ovaj %{model} spremi"
other: "%{count} grešaka je spriječilo da se ovaj %{model} spremi"
helpers:
select:
prompt: Molimo odaberite
submit:
create: Kreiraj %{model}
submit: Sačuvaj %{model}
update: Osvježi %{model}
number:
currency:
format:
delimiter: "."
format: "%n%u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: true
unit: KM
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: true
human:
decimal_units:
format: "%n %u"
units:
billion:
few: milijarde
many: milijardi
one: milijarda
other: milijardi
million:
few: miliona
many: miliona
one: milion
other: miliona
quadrillion:
few: bilijarde
many: bilijardi
one: bilijarda
other: bilijardi
thousand:
few: hiljade
many: hiljada
one: hiljada
other: hiljada
trillion:
few: biliona
many: biliona
one: bilion
other: biliona
unit: ''
format:
delimiter: ","
precision: 0
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
few: bajta
many: bajtova
one: bajt
other: bajtova
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ","
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " i "
two_words_connector: " i "
words_connector: ", "
time:
am: am
formats:
default: "%d.%m.%Y. %H:%M:%S"
long: "%d. %B %Y. - %H:%M:%S"
short: "%d. %b %Y. %H:%M"
pm: pm

View File

@@ -0,0 +1,223 @@
---
ca:
activerecord:
errors:
messages:
record_invalid: 'La validació ha fallat: %{errors}'
restrict_dependent_destroy:
has_many: No es pot eliminar el registre perquè existeixen %{record} dependents
has_one: No es pot eliminar el registre perquè existeix un %{record} dependent
date:
abbr_day_names:
- Dg
- Dl
- Dm
- Dc
- Dj
- Dv
- Ds
abbr_month_names:
-
- Gen
- Feb
- Mar
- Abr
- Mai
- Jun
- Jul
- Ago
- Set
- Oct
- Nov
- Des
day_names:
- Diumenge
- Dilluns
- Dimarts
- Dimecres
- Dijous
- Divendres
- Dissabte
formats:
default: "%d-%m-%Y"
long: "%d de %B de %Y"
short: "%d de %b"
month_names:
-
- Gener
- Febrer
- Març
- Abril
- Maig
- Juny
- Juliol
- Agost
- Setembre
- Octubre
- Novembre
- Desembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: aproximadament %{count} hora
other: aproximadament %{count} hores
about_x_months:
one: aproximadament %{count} mes
other: aproximadament %{count} mesos
about_x_years:
one: aproximadament %{count} any
other: aproximadament %{count} anys
almost_x_years:
one: quasi %{count} any
other: quasi %{count} anys
half_a_minute: mig minut
less_than_x_minutes:
one: menys d'%{count} minut
other: menys de %{count} minuts
less_than_x_seconds:
one: menys d'%{count} segon
other: menys de %{count} segons
over_x_years:
one: més d'%{count} any
other: més de %{count} anys
x_days:
one: "%{count} dia"
other: "%{count} dies"
x_minutes:
one: "%{count} minut"
other: "%{count} minuts"
x_months:
one: "%{count} mes"
other: "%{count} mesos"
x_seconds:
one: "%{count} segon"
other: "%{count} segons"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: dia
hour: hora
minute: minut
month: mes
second: segon
year: any
errors:
format: "%{attribute} %{message}"
messages:
accepted: ha de ser acceptat
blank: no pot estar en blanc
confirmation: no coincideix
empty: no pot estar buit
equal_to: ha de ser igual a %{count}
even: ha de ser parell
exclusion: està reservat
greater_than: ha de ser més gran que %{count}
greater_than_or_equal_to: ha de ser més gran o igual a %{count}
inclusion: no està inclós a la llista
invalid: no és vàlid
less_than: ha de ser menor que %{count}
less_than_or_equal_to: ha de ser menor o igual a %{count}
model_invalid: 'La validació ha fallat: %{errors}'
not_a_number: no és un número
not_an_integer: ha de ser un enter
odd: ha de ser senar
other_than: ha de ser diferent de %{count}
present: ha d'estar en blanc
required: ha d'existir
taken: no està disponible
too_long:
one: és massa llarg (%{count} caràcter màxim)
other: és massa llarg (%{count} caràcters màxim)
too_short:
one: és massa curt (%{count} caràcter mínim)
other: és massa curt (%{count} caràcters mínim)
wrong_length:
one: no té la longitud correcta (%{count} caràcter exactament)
other: no té la longitud correcta (%{count} caràcters exactament)
template:
body: 'Hi ha hagut problemes amb els següents camps:'
header:
one: No s'ha pogut desar aquest/a %{model} perquè hi ha %{count} error
other: No s'ha pogut desar aquest/a %{model} perquè hi ha hagut %{count} errors
helpers:
select:
prompt: Si us plau tria
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualitzar %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil milions
million:
one: milió
other: milions
quadrillion:
one: quadrilió
other: quadrilions
thousand:
one: miler
other: milers
trillion:
one: bilió
other: bilions
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n %"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", i "
two_words_connector: " i "
words_connector: ", "
time:
am: am
formats:
default: "%A, %d de %B de %Y %H:%M:%S %z"
long: "%d de %B de %Y %H:%M"
short: "%d de %b %H:%M"
pm: pm

View File

@@ -0,0 +1,218 @@
---
cs:
activerecord:
errors:
messages:
record_invalid: 'Validace je neúspešná: %{errors}'
restrict_dependent_destroy:
has_many: Nemůžu smazat položku protože existuje závislé/ý %{record}
has_one: Nemůžu smazat položku protože existuje závislá/ý/é %{record}
date:
abbr_day_names:
- Ne
- Po
- Út
- St
- Čt
-
- So
abbr_month_names:
-
- Led
- Úno
- Bře
- Dub
- Kvě
- Čvn
- Čvc
- Srp
- Zář
- Říj
- Lis
- Pro
day_names:
- Neděle
- Pondělí
- Úterý
- Středa
- Čtvrtek
- Pátek
- Sobota
formats:
default: "%d. %m. %Y"
long: "%d. %B %Y"
short: "%d %b"
month_names:
-
- Leden
- Únor
- Březen
- Duben
- Květen
- Červen
- Červenec
- Srpen
- Září
- Říjen
- Listopad
- Prosinec
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
few: asi %{count} hodinami
one: asi hodinou
other: asi %{count} hodinami
about_x_months:
few: asi %{count} měsíci
one: asi měsícem
other: asi %{count} měsíci
about_x_years:
few: asi %{count} roky
one: asi rokem
other: asi %{count} roky
almost_x_years:
few: téměř %{count} roky
one: téměř rokem
other: téměř %{count} roky
half_a_minute: půl minutou
less_than_x_minutes:
few: ani ne %{count} minutami
one: necelou minutou
other: ani ne %{count} minutami
less_than_x_seconds:
few: ani ne %{count} sekundami
one: necelou sekundou
other: ani ne %{count} sekundami
over_x_years:
few: více než %{count} roky
one: více než rokem
other: více než %{count} roky
x_days:
few: "%{count} dny"
one: 24 hodinami
other: "%{count} dny"
x_minutes:
few: "%{count} minutami"
one: minutou
other: "%{count} minutami"
x_months:
few: "%{count} měsíci"
one: měsícem
other: "%{count} měsíci"
x_seconds:
few: "%{count} sekundami"
one: sekundou
other: "%{count} sekundami"
prompts:
day: Den
hour: Hodina
minute: Minuta
month: Měsíc
second: Sekunda
year: Rok
errors:
format: "%{attribute} %{message}"
messages:
accepted: musí být potvrzeno
blank: je povinná položka
confirmation: nebylo potvrzeno
empty: nesmí být prázdný/á/é
equal_to: musí být rovno %{count}
even: musí být sudé číslo
exclusion: je vyhrazeno pro jiný účel
greater_than: musí být větší než %{count}
greater_than_or_equal_to: musí být větší nebo rovno %{count}
inclusion: není v seznamu povolených hodnot
invalid: není platná hodnota
less_than: musí být méně než %{count}
less_than_or_equal_to: musí být méně nebo rovno %{count}
not_a_number: není číslo
not_an_integer: musí být celé číslo
odd: musí být liché číslo
other_than: musí být rozdílný/á/é od %{count}
present: musí být prázdný/á/é
required: musí existovat
taken: již databáze obsahuje
too_long: je příliš dlouhý/á/é (max. %{count} znaků)
too_short: je příliš krátký/á/é (min. %{count} znaků)
wrong_length: nemá správnou délku (očekáváno %{count} znaků)
template:
body: 'Následující pole obsahují chybně vyplněné údaje: '
header:
few: Při ukládání objektu %{model} došlo ke %{count} chybám a nebylo možné
jej uložit
one: Při ukládání objektu %{model} došlo k chybám a nebylo jej možné uložit
other: Při ukládání objektu %{model} došlo ke %{count} chybám a nebylo možné
jej uložit
helpers:
select:
prompt: Prosím vyberte si
submit:
create: Vytvořit %{model}
submit: Uložit %{model}
update: Aktualizovat %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: Kč
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Miliarda
million: Milion
quadrillion: Biliarda
thousand: Tisíc
trillion: Bilion
unit: ''
format:
delimiter: ''
precision: 1
significant: false
strip_insignificant_zeros: false
storage_units:
format: "%n %u"
units:
byte:
few: B
one: B
other: B
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " a "
two_words_connector: " a "
words_connector: ", "
time:
am: dopoledne
formats:
default: "%a %e. %B %Y %H:%M %z"
long: "%A %e. %B %Y %H:%M"
short: "%e. %-m. %H:%M"
pm: odpoledne

View File

@@ -0,0 +1,265 @@
---
cy:
activerecord:
errors:
messages:
record_invalid: 'Wedi methu dilysu: %{errors}'
restrict_dependent_destroy:
has_many: Methu dileu cofnod oherwydd bod %{record} yn bodoli
has_one: Methu dileu cofnod oherwydd bod %{record} yn bodoli
date:
abbr_day_names:
- Sul
- Llun
- Maw
- Mer
- Iau
- Gwe
- Sad
abbr_month_names:
-
- Ion
- Chw
- Maw
- Ebr
- Mai
- Meh
- Gor
- Awst
- Med
- Hyd
- Tach
- Rha
day_names:
- Dydd Sul
- Dydd Llun
- Dydd Mawrth
- Dydd Mercher
- Dydd Iau
- Dydd Gwener
- Dydd Sadwrn
formats:
default: "%d-%m-%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- Ionawr
- Chwefror
- Mawrth
- Ebrill
- Mai
- Mehefin
- Gorffennaf
- Awst
- Medi
- Hydref
- Tachwedd
- Rhagfyr
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
few: tua %{count} awr
many: tua %{count} awr
one: tuag awr
other: tua %{count} awr
two: tua %{count} awr
zero: tua %{count} awr
about_x_months:
few: tua %{count} mis
many: tua %{count} mis
one: tua mis
other: tua %{count} mis
two: tua %{count} mis
zero: tua %{count} mis
about_x_years:
few: tua %{count} blynedd
many: tua %{count} blynedd
one: tua blwyddyn
other: tua %{count} blynedd
two: tua %{count} blynedd
zero: tua %{count} blynedd
almost_x_years:
few: bron yn %{count} blynedd
many: bron yn %{count} blynedd
one: bron yn flwyddyn
other: bron yn %{count} blynedd
two: bron yn %{count} blynedd
zero: bron yn %{count} blynedd
half_a_minute: hanner munud
less_than_x_minutes:
few: llai na %{count} munud
many: llai na %{count} munud
one: llai na munud
other: llai na %{count} munud
two: llai na %{count} munud
zero: llai na %{count} munud
less_than_x_seconds:
few: llai na %{count} eiliad
many: llai na %{count} eiliad
one: llai nag eiliad
other: llai na %{count} eiliad
two: llai na %{count} eiliad
zero: llai na %{count} eiliad
over_x_years:
few: dros %{count} blynedd
many: dros %{count} blynedd
one: dros flwyddyn
other: dros %{count} blynedd
two: dros %{count} blynedd
zero: dros %{count} blynedd
x_days:
few: "%{count} diwrnod"
many: "%{count} diwrnod"
one: 1 diwrnod
other: "%{count} diwrnod"
two: "%{count} diwrnod"
zero: "%{count} diwrnod"
x_minutes:
few: "%{count} o funudau"
many: "%{count} o funudau"
one: 1 munud
other: "%{count} o funudau"
two: "%{count} o funudau"
zero: "%{count} o funudau"
x_months:
few: "%{count} mis"
many: "%{count} mis"
one: 1 mis
other: "%{count} mis"
two: "%{count} mis"
zero: "%{count} mis"
x_seconds:
few: "%{count} o eiliadau"
many: "%{count} o eiliadau"
one: 1 eiliad
other: "%{count} o eiliadau"
two: "%{count} o eiliadau"
zero: "%{count} o eiliadau"
x_years:
few: "%{count} blwyddyn"
many: "%{count} blwyddyn"
one: 1 flwyddyn
other: "%{count} blwyddyn"
two: "%{count} blwyddyn"
zero: "%{count} blwyddyn"
prompts:
day: Diwrnod
hour: Awr
minute: Munud
month: Mis
second: Eiliad
year: Blwyddyn
errors:
format: "%{attribute} %{message}"
messages:
accepted: angen ei dderbyn
blank: methu bod yn wag
confirmation: heb fod yn gyfateb
empty: methu bod yn wag
equal_to: angen bod yn %{count}
even: rhaid bod yn eilrif
exclusion: wedi cadw
greater_than: angen bod yn fwy na %{count}
greater_than_or_equal_to: angen bod yr un maint neu fwy na %{count}
in: rhaid bod mewn %{count}
inclusion: heb fod yn y rhestr
invalid: heb fod yn nheilwng
less_than: angen bod yn llai na %{count}
less_than_or_equal_to: angen bod yr un maint neu lai na %{count}
model_invalid: 'Methodd y dilysu: %{errors}'
not_a_number: heb fod yn rhif
not_an_integer: heb fod yn rhif llawn
odd: rhaid bod yn odrif
other_than: rhaid bod yn wahanol na %{count}
present: rhaid bod yn wag
required: rhaid bodoli
taken: wedi'i gymryd yn barod
too_long: yn rhy hir (cewch %{count} llythyren ar y fwyaf)
too_short: yn rhy fyr (rhaid am o leiaf %{count} llythyren)
wrong_length: gyda maint anghywir o lythrennau (dylai fod yn %{count} llythyren)
template:
body: 'Cafwyd broblemau gyda''r meysydd canlynol:'
header:
few: Atalwyd y %{model} hwn rhag ei gadw gan %{count} nam
many: Atalwyd y %{model} hwn rhag ei gadw gan %{count} nam
one: Atalwyd y %{model} hwn rhag ei gadw gan 1 nam
other: Atalwyd y %{model} hwn rhag ei gadw gan %{count} nam
two: Atalwyd y %{model} hwn rhag ei gadw gan %{count} nam
zero: Atalwyd y %{model} hwn rhag ei gadw gan 0 nam
helpers:
select:
prompt: Dewiswch
submit:
create: Creu %{model}
submit: Cadw %{model}
update: Diweddaru %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "£"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Biliwn
million: Miliwn
quadrillion: Cwadriliwn
thousand: Mil
trillion: Triliwn
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
few: Bytes
many: Bytes
one: Byte
other: Bytes
two: Bytes
zero: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", a "
two_words_connector: " a "
words_connector: ", "
time:
am: yb
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: yh

View File

@@ -0,0 +1,222 @@
---
da:
activerecord:
errors:
messages:
record_invalid: 'Godkendelse gik galt: %{errors}'
restrict_dependent_destroy:
has_many: Kunne ikke slette posten fordi afhængige %{record} findes
has_one: Kunne ikke slette posten fordi en afhængig %{record} findes
date:
abbr_day_names:
- søn
- man
- tir
- ons
- tor
- fre
- lør
abbr_month_names:
-
- jan
- feb
- mar
- apr
- maj
- jun
- jul
- aug
- sep
- okt
- nov
- dec
day_names:
- søndag
- mandag
- tirsdag
- onsdag
- torsdag
- fredag
- lørdag
formats:
default: "%d.%m.%Y"
long: "%e. %B %Y"
short: "%e. %b %Y"
month_names:
-
- januar
- februar
- marts
- april
- maj
- juni
- juli
- august
- september
- oktober
- november
- december
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cirka en time
other: cirka %{count} timer
about_x_months:
one: cirka en måned
other: cirka %{count} måneder
about_x_years:
one: cirka et år
other: cirka %{count} år
almost_x_years:
one: næsten et år
other: næsten %{count} år
half_a_minute: et halvt minut
less_than_x_minutes:
one: mindre end et minut
other: mindre end %{count} minutter
less_than_x_seconds:
one: mindre end et sekund
other: mindre end %{count} sekunder
over_x_years:
one: mere end et år
other: mere end %{count} år
x_days:
one: en dag
other: "%{count} dage"
x_minutes:
one: et minut
other: "%{count} minutter"
x_months:
one: en måned
other: "%{count} måneder"
x_seconds:
one: et sekund
other: "%{count} sekunder"
x_years:
one: et år
other: "%{count} år"
prompts:
day: Dag
hour: Time
minute: Minut
month: Måned
second: Sekund
year: År
errors:
format: "%{attribute} %{message}"
messages:
accepted: skal accepteres
blank: skal udfyldes
confirmation: stemmer ikke overens med %{attribute}
empty: må ikke udelades
equal_to: skal være %{count}
even: skal være et lige tal
exclusion: er reserveret
greater_than: skal være større end %{count}
greater_than_or_equal_to: skal være større end eller lig med %{count}
inclusion: er ikke på listen
invalid: er ikke gyldig
less_than: skal være mindre end %{count}
less_than_or_equal_to: skal være mindre end eller lig med %{count}
model_invalid: 'Godkendelse gik galt: %{errors}'
not_a_number: er ikke et tal
not_an_integer: er ikke et heltal
odd: skal være et ulige tal
other_than: skal være forskellig fra %{count}
present: skal være tom
required: skal udfyldes
taken: er allerede brugt
too_long:
one: er for lang (højst %{count} tegn)
other: er for lang (højst %{count} tegn)
too_short:
one: er for kort (mindst %{count} tegn)
other: er for kort (mindst %{count} tegn)
wrong_length:
one: har forkert længde (skulle være %{count} tegn)
other: har forkert længde (skulle være %{count} tegn)
template:
body: 'Der var problemer med følgende felter:'
header:
one: En fejl forhindrede %{model} i at blive gemt
other: "%{count} fejl forhindrede %{model} i at blive gemt"
helpers:
select:
prompt: Vælg...
submit:
create: Opret %{model}
submit: Gem %{model}
update: Opdater %{model}
number:
currency:
format:
delimiter: "."
format: "%u %n"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: DKK
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: milliard
other: milliarder
million:
one: million
other: millioner
quadrillion:
one: Billiard
other: Billiarder
thousand: tusind
trillion:
one: billion
other: billioner
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: byte
other: bytes
gb: GB
kb: kB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n %"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " og "
two_words_connector: " og "
words_connector: ", "
time:
am: am
formats:
default: "%e. %B %Y, %H.%M"
long: "%A d. %e. %B %Y, %H.%M"
short: "%e. %b %Y, %H.%M"
pm: pm

View File

@@ -0,0 +1,222 @@
---
de-AT:
activerecord:
errors:
messages:
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
restrict_dependent_destroy:
has_many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
has_one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
existiert.
date:
abbr_day_names:
- So
- Mo
- Di
- Mi
- Do
- Fr
- Sa
abbr_month_names:
-
- Jän
- Feb
- Mär
- Apr
- Mai
- Jun
- Jul
- Aug
- Sep
- Okt
- Nov
- Dez
day_names:
- Sonntag
- Montag
- Dienstag
- Mittwoch
- Donnerstag
- Freitag
- Samstag
formats:
default: "%d.%m.%Y"
long: "%e. %B %Y"
short: "%e. %b"
month_names:
-
- Jänner
- Februar
- März
- April
- Mai
- Juni
- Juli
- August
- September
- Oktober
- November
- Dezember
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: etwa eine Stunde
other: etwa %{count} Stunden
about_x_months:
one: etwa ein Monat
other: etwa %{count} Monate
about_x_years:
one: etwa ein Jahr
other: etwa %{count} Jahre
almost_x_years:
one: fast ein Jahr
other: fast %{count} Jahre
half_a_minute: eine halbe Minute
less_than_x_minutes:
one: weniger als eine Minute
other: weniger als %{count} Minuten
less_than_x_seconds:
one: weniger als eine Sekunde
other: weniger als %{count} Sekunden
over_x_years:
one: mehr als ein Jahr
other: mehr als %{count} Jahre
x_days:
one: ein Tag
other: "%{count} Tage"
x_minutes:
one: eine Minute
other: "%{count} Minuten"
x_months:
one: ein Monat
other: "%{count} Monate"
x_seconds:
one: eine Sekunde
other: "%{count} Sekunden"
prompts:
day: Tag
hour: Stunde
minute: Minuten
month: Monat
second: Sekunden
year: Jahr
errors:
format: "%{attribute} %{message}"
messages:
accepted: muss akzeptiert werden
blank: muss ausgefüllt werden
confirmation: stimmt nicht mit %{attribute} überein
empty: muss ausgefüllt werden
equal_to: muss genau %{count} sein
even: muss gerade sein
exclusion: ist nicht verfügbar
greater_than: muss größer als %{count} sein
greater_than_or_equal_to: muss größer oder gleich %{count} sein
inclusion: ist kein gültiger Wert
invalid: ist nicht gültig
less_than: muss kleiner als %{count} sein
less_than_or_equal_to: muss kleiner oder gleich %{count} sein
model_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
not_a_number: ist keine Zahl
not_an_integer: muss ganzzahlig sein
odd: muss ungerade sein
other_than: darf nicht gleich %{count} sein
present: darf nicht ausgefüllt werden
required: muss ausgefüllt werden
taken: ist bereits vergeben
too_long:
one: ist zu lang (mehr als %{count} Zeichen)
other: ist zu lang (mehr als %{count} Zeichen)
too_short:
one: ist zu kurz (weniger als %{count} Zeichen)
other: ist zu kurz (weniger als %{count} Zeichen)
wrong_length:
one: hat die falsche Länge (muss genau %{count} Zeichen haben)
other: hat die falsche Länge (muss genau %{count} Zeichen haben)
template:
body: 'Bitte überprüfen Sie die folgenden Felder:'
header:
one: 'Konnte %{model} nicht speichern: ein Fehler.'
other: 'Konnte %{model} nicht speichern: %{count} Fehler.'
helpers:
select:
prompt: Bitte wählen
submit:
create: "%{model} erstellen"
submit: "%{model} speichern"
update: "%{model} aktualisieren"
number:
currency:
format:
delimiter: "."
format: "%u %n"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 2
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: Milliarde
other: Milliarden
million:
one: Million
other: Millionen
quadrillion:
one: Billiarde
other: Billiarden
thousand: Tausend
trillion:
one: Billion
other: Billionen
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " und "
two_words_connector: " und "
words_connector: ", "
time:
am: vormittags
formats:
default: "%A, %d. %B %Y, %H:%M Uhr"
long: "%A, %d. %B %Y, %H:%M Uhr"
short: "%d. %b, %H:%M Uhr"
pm: nachmittags

View File

@@ -0,0 +1,222 @@
---
de-CH:
activerecord:
errors:
messages:
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
restrict_dependent_destroy:
has_many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
has_one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
existiert.
date:
abbr_day_names:
- So
- Mo
- Di
- Mi
- Do
- Fr
- Sa
abbr_month_names:
-
- Jan
- Feb
- Mär
- Apr
- Mai
- Jun
- Jul
- Aug
- Sep
- Okt
- Nov
- Dez
day_names:
- Sonntag
- Montag
- Dienstag
- Mittwoch
- Donnerstag
- Freitag
- Samstag
formats:
default: "%d.%m.%Y"
long: "%e. %B %Y"
short: "%e. %b"
month_names:
-
- Januar
- Februar
- März
- April
- Mai
- Juni
- Juli
- August
- September
- Oktober
- November
- Dezember
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: etwa eine Stunde
other: etwa %{count} Stunden
about_x_months:
one: etwa ein Monat
other: etwa %{count} Monate
about_x_years:
one: etwa ein Jahr
other: etwa %{count} Jahre
almost_x_years:
one: fast ein Jahr
other: fast %{count} Jahre
half_a_minute: eine halbe Minute
less_than_x_minutes:
one: weniger als eine Minute
other: weniger als %{count} Minuten
less_than_x_seconds:
one: weniger als eine Sekunde
other: weniger als %{count} Sekunden
over_x_years:
one: mehr als ein Jahr
other: mehr als %{count} Jahre
x_days:
one: ein Tag
other: "%{count} Tage"
x_minutes:
one: eine Minute
other: "%{count} Minuten"
x_months:
one: ein Monat
other: "%{count} Monate"
x_seconds:
one: eine Sekunde
other: "%{count} Sekunden"
prompts:
day: Tag
hour: Stunde
minute: Minute
month: Monat
second: Sekunde
year: Jahr
errors:
format: "%{attribute} %{message}"
messages:
accepted: muss akzeptiert werden
blank: muss ausgefüllt werden
confirmation: stimmt nicht mit %{attribute} überein
empty: muss ausgefüllt werden
equal_to: muss genau %{count} sein
even: muss gerade sein
exclusion: ist nicht verfügbar
greater_than: muss grösser als %{count} sein
greater_than_or_equal_to: muss grösser oder gleich %{count} sein
inclusion: ist kein gültiger Wert
invalid: ist nicht gültig
less_than: muss kleiner als %{count} sein
less_than_or_equal_to: muss kleiner oder gleich %{count} sein
model_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
not_a_number: ist keine Zahl
not_an_integer: muss ganzzahlig sein
odd: muss ungerade sein
other_than: darf nicht gleich %{count} sein
present: darf nicht ausgefüllt werden
required: muss ausgefüllt werden
taken: ist bereits vergeben
too_long:
one: ist zu lang (mehr als %{count} Zeichen)
other: ist zu lang (mehr als %{count} Zeichen)
too_short:
one: ist zu kurz (weniger als %{count} Zeichen)
other: ist zu kurz (weniger als %{count} Zeichen)
wrong_length:
one: hat die falsche Länge (muss genau %{count} Zeichen haben)
other: hat die falsche Länge (muss genau %{count} Zeichen haben)
template:
body: 'Bitte überprüfen Sie die folgenden Felder:'
header:
one: 'Konnte %{model} nicht speichern: ein Fehler.'
other: 'Konnte %{model} nicht speichern: %{count} Fehler.'
helpers:
select:
prompt: Bitte wählen
submit:
create: "%{model} erstellen"
submit: "%{model} speichern"
update: "%{model} aktualisieren"
number:
currency:
format:
delimiter: "'"
format: "%u %n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: CHF
format:
delimiter: "'"
precision: 2
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: Milliarde
other: Milliarden
million:
one: Million
other: Millionen
quadrillion:
one: Billiarde
other: Billiarden
thousand: Tausend
trillion:
one: Billion
other: Billionen
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " und "
two_words_connector: " und "
words_connector: ", "
time:
am: vormittags
formats:
default: "%A, %d. %B %Y, %H:%M Uhr"
long: "%A, %d. %B %Y, %H:%M Uhr"
short: "%d. %b, %H:%M Uhr"
pm: nachmittags

View File

@@ -0,0 +1,222 @@
---
de-DE:
activerecord:
errors:
messages:
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
restrict_dependent_destroy:
has_many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
has_one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
existiert.
date:
abbr_day_names:
- So
- Mo
- Di
- Mi
- Do
- Fr
- Sa
abbr_month_names:
-
- Jan
- Feb
- Mär
- Apr
- Mai
- Jun
- Jul
- Aug
- Sep
- Okt
- Nov
- Dez
day_names:
- Sonntag
- Montag
- Dienstag
- Mittwoch
- Donnerstag
- Freitag
- Samstag
formats:
default: "%d.%m.%Y"
long: "%e. %B %Y"
short: "%e. %b"
month_names:
-
- Januar
- Februar
- März
- April
- Mai
- Juni
- Juli
- August
- September
- Oktober
- November
- Dezember
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: etwa eine Stunde
other: etwa %{count} Stunden
about_x_months:
one: etwa ein Monat
other: etwa %{count} Monate
about_x_years:
one: etwa ein Jahr
other: etwa %{count} Jahre
almost_x_years:
one: fast ein Jahr
other: fast %{count} Jahre
half_a_minute: eine halbe Minute
less_than_x_minutes:
one: weniger als eine Minute
other: weniger als %{count} Minuten
less_than_x_seconds:
one: weniger als eine Sekunde
other: weniger als %{count} Sekunden
over_x_years:
one: mehr als ein Jahr
other: mehr als %{count} Jahre
x_days:
one: ein Tag
other: "%{count} Tage"
x_minutes:
one: eine Minute
other: "%{count} Minuten"
x_months:
one: ein Monat
other: "%{count} Monate"
x_seconds:
one: eine Sekunde
other: "%{count} Sekunden"
prompts:
day: Tag
hour: Stunde
minute: Minute
month: Monat
second: Sekunde
year: Jahr
errors:
format: "%{attribute} %{message}"
messages:
accepted: muss akzeptiert werden
blank: muss ausgefüllt werden
confirmation: stimmt nicht mit %{attribute} überein
empty: muss ausgefüllt werden
equal_to: muss genau %{count} sein
even: muss gerade sein
exclusion: ist nicht verfügbar
greater_than: muss größer als %{count} sein
greater_than_or_equal_to: muss größer oder gleich %{count} sein
inclusion: ist kein gültiger Wert
invalid: ist nicht gültig
less_than: muss kleiner als %{count} sein
less_than_or_equal_to: muss kleiner oder gleich %{count} sein
model_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
not_a_number: ist keine Zahl
not_an_integer: muss ganzzahlig sein
odd: muss ungerade sein
other_than: darf nicht gleich %{count} sein
present: darf nicht ausgefüllt werden
required: muss ausgefüllt werden
taken: ist bereits vergeben
too_long:
one: ist zu lang (mehr als %{count} Zeichen)
other: ist zu lang (mehr als %{count} Zeichen)
too_short:
one: ist zu kurz (weniger als %{count} Zeichen)
other: ist zu kurz (weniger als %{count} Zeichen)
wrong_length:
one: hat die falsche Länge (muss genau %{count} Zeichen haben)
other: hat die falsche Länge (muss genau %{count} Zeichen haben)
template:
body: 'Bitte überprüfen Sie die folgenden Felder:'
header:
one: 'Konnte %{model} nicht speichern: ein Fehler.'
other: 'Konnte %{model} nicht speichern: %{count} Fehler.'
helpers:
select:
prompt: Bitte wählen
submit:
create: "%{model} erstellen"
submit: "%{model} speichern"
update: "%{model} aktualisieren"
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 2
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: Milliarde
other: Milliarden
million:
one: Million
other: Millionen
quadrillion:
one: Billiarde
other: Billiarden
thousand: Tausend
trillion:
one: Billion
other: Billionen
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n %"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " und "
two_words_connector: " und "
words_connector: ", "
time:
am: vormittags
formats:
default: "%A, %d. %B %Y, %H:%M Uhr"
long: "%A, %d. %B %Y, %H:%M Uhr"
short: "%d. %b, %H:%M Uhr"
pm: nachmittags

View File

@@ -0,0 +1,225 @@
---
de:
activerecord:
errors:
messages:
record_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
restrict_dependent_destroy:
has_many: Datensatz kann nicht gelöscht werden, da abhängige %{record} existieren.
has_one: Datensatz kann nicht gelöscht werden, da ein abhängiger %{record}-Datensatz
existiert.
date:
abbr_day_names:
- So
- Mo
- Di
- Mi
- Do
- Fr
- Sa
abbr_month_names:
-
- Jan
- Feb
- Mär
- Apr
- Mai
- Jun
- Jul
- Aug
- Sep
- Okt
- Nov
- Dez
day_names:
- Sonntag
- Montag
- Dienstag
- Mittwoch
- Donnerstag
- Freitag
- Samstag
formats:
default: "%d.%m.%Y"
long: "%e. %B %Y"
short: "%e. %b"
month_names:
-
- Januar
- Februar
- März
- April
- Mai
- Juni
- Juli
- August
- September
- Oktober
- November
- Dezember
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: etwa eine Stunde
other: etwa %{count} Stunden
about_x_months:
one: etwa ein Monat
other: etwa %{count} Monate
about_x_years:
one: etwa ein Jahr
other: etwa %{count} Jahre
almost_x_years:
one: fast ein Jahr
other: fast %{count} Jahre
half_a_minute: eine halbe Minute
less_than_x_minutes:
one: weniger als eine Minute
other: weniger als %{count} Minuten
less_than_x_seconds:
one: weniger als eine Sekunde
other: weniger als %{count} Sekunden
over_x_years:
one: mehr als ein Jahr
other: mehr als %{count} Jahre
x_days:
one: ein Tag
other: "%{count} Tage"
x_minutes:
one: eine Minute
other: "%{count} Minuten"
x_months:
one: ein Monat
other: "%{count} Monate"
x_seconds:
one: eine Sekunde
other: "%{count} Sekunden"
x_years:
one: ein Jahr
other: "%{count} Jahre"
prompts:
day: Tag
hour: Stunde
minute: Minute
month: Monat
second: Sekunde
year: Jahr
errors:
format: "%{attribute} %{message}"
messages:
accepted: muss akzeptiert werden
blank: muss ausgefüllt werden
confirmation: stimmt nicht mit %{attribute} überein
empty: muss ausgefüllt werden
equal_to: muss genau %{count} sein
even: muss gerade sein
exclusion: ist nicht verfügbar
greater_than: muss größer als %{count} sein
greater_than_or_equal_to: muss größer oder gleich %{count} sein
inclusion: ist kein gültiger Wert
invalid: ist nicht gültig
less_than: muss kleiner als %{count} sein
less_than_or_equal_to: muss kleiner oder gleich %{count} sein
model_invalid: 'Gültigkeitsprüfung ist fehlgeschlagen: %{errors}'
not_a_number: ist keine Zahl
not_an_integer: muss ganzzahlig sein
odd: muss ungerade sein
other_than: darf nicht gleich %{count} sein
present: darf nicht ausgefüllt werden
required: muss ausgefüllt werden
taken: ist bereits vergeben
too_long:
one: ist zu lang (mehr als %{count} Zeichen)
other: ist zu lang (mehr als %{count} Zeichen)
too_short:
one: ist zu kurz (weniger als %{count} Zeichen)
other: ist zu kurz (weniger als %{count} Zeichen)
wrong_length:
one: hat die falsche Länge (muss genau %{count} Zeichen haben)
other: hat die falsche Länge (muss genau %{count} Zeichen haben)
template:
body: 'Bitte überprüfen Sie die folgenden Felder:'
header:
one: 'Konnte %{model} nicht speichern: ein Fehler.'
other: 'Konnte %{model} nicht speichern: %{count} Fehler.'
helpers:
select:
prompt: Bitte wählen
submit:
create: "%{model} erstellen"
submit: "%{model} speichern"
update: "%{model} aktualisieren"
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 2
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: Milliarde
other: Milliarden
million:
one: Million
other: Millionen
quadrillion:
one: Billiarde
other: Billiarden
thousand: Tausend
trillion:
one: Billion
other: Billionen
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n %"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " und "
two_words_connector: " und "
words_connector: ", "
time:
am: vormittags
formats:
default: "%A, %d. %B %Y, %H:%M Uhr"
long: "%A, %d. %B %Y, %H:%M Uhr"
short: "%d. %b, %H:%M Uhr"
pm: nachmittags

View File

@@ -0,0 +1,213 @@
---
dz:
activerecord:
errors:
messages:
record_invalid: 'ཆ་འཇོག་འཐུས་ཤོར་ཡི་: %{errors}'
restrict_dependent_destroy:
has_many: ཡིག་ཐོ་ %{record} བརྟེན་ཏེ་ཡོད་པ་ལས་བཏོན་གཏང་མི་བཏུབ་
has_one: ཡིག་ཐོ་ %{record} བརྟེན་ཏེ་ཡོད་པ་ལས་བཏོན་གཏང་མི་བཏུབ་
date:
abbr_day_names:
- གཟའ་ཟླཝ
- གཟའ་མིག་དམར
- གཟའ་ལྷགཔ
- གཟའ་ཕུརཔ
- གཟའ་པ་སངས
- གཟའ་སྤེན་པ
- གཟའ་ཉིམ
abbr_month_names:
-
- ཟླཝ་དང་པ
- ཟླཝ་གཉིས་པ
- ཟླཝ་གསུམ་པ
- ཟླཝ་བཞི་པ
- ཟླཝ་ལྔ་པ
- ཟླཝ་དྲུག་པ
- ཟླཝ་བདུན་པ
- ཟླཝ་བརྒྱད་པ
- ཟླཝ་དགུ་པ
- ཟླཝ་བཅུ་པ
- ཟླཝ་བཅུ་གཅིག་པ
- ཟླཝ་བཅུ་གཉིས་པ
day_names:
- གཟའ་ཟླཝ
- གཟའ་མིག་དམར
- གཟའ་ལྷག་པ
- གཟའ་ཕུརཔ
- གཟའ་པ་སངས
- གཟའ་སྤེན་པ
- གཟའ་ཉི་མ
formats:
default: "%Y-%m-%d"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- ཟླཝ་དང་པ
- ཟླཝ་གཉིས་པ
- ཟླཝ་གསུམ་པ
- ཟླཝ་བཞི་པ
- ཟླཝ་ལྔ་པ
- ཟླཝ་དྲུག་པ
- ཟླཝ་བདུན་པ
- ཟླཝ་བརྒྱད་པ
- ཟླཝ་དགུ་པ
- ཟླཝ་བཅུ་པ
- ཟླཝ་བཅུ་གཅིག་པ
- ཟླཝ་བཅུ་གཉིས་པ
order:
- :ལོ
- :ཟླཝ
- :ཉིནམ
datetime:
distance_in_words:
about_x_hours:
one: ཆུ་ཚོད་ ༡ ་དེ་ཅིག
other: ཆུ་ཚོད་ %{count} དེ་ཅིག
about_x_months:
one: ཟླཝ་ ༡ ་དེ་ཅིག
other: ཟླཝ་ %{count} དེ་ཅིག
about_x_years:
one: ལོ་ ༡ ་དེ་ཅིག
other: ལོ་ %{count} དེ་ཅིག
almost_x_years: ལོ %{count} མ་ལྷགཔ་ཅིག
half_a_minute: སྐར་མ་ཕྱེད་ཀ
less_than_x_minutes:
one: སྐར་མ་ ༡ ་ལས་ཉུངམ
other: སྐར་མ %{count} ལས་ཉུངམ
less_than_x_seconds:
one: སྐར་ཆ་ ༡ ་ལས་ཉུངམ
other: སྐར་ཆ %{count} ལས་ཉུངམ
over_x_years:
one: ལོ་ ༡ ་ལྷག
other: ལོ་%{count}ལས་ལྷག
x_days:
one: ཉིནམ་གཅིག
other: ཉིནམ %{count}
x_minutes:
one: སྐར་མ་གཅིག
other: སྐར་མ %{count}
x_months:
one: ཟླཝ་གཅིག
other: ཟླཝ %{count}
x_seconds:
one: སྐར་ཆ་གཅིག
other: སྐར་ཆ %{count}
x_years:
one: ལོ་གཅིག
other: ལོ %{count}
prompts:
day: ཉིནམ
hour: ཆུ་ཚོད
minute: སྐར་མ
month: ཟླཝ
second: སྐར་ཆ
year: ལོ
errors:
format: "%{attribute} %{message}"
messages:
accepted: ངོས་ལན་འབད་དགོ
blank: སྟོང་པ་མི་བཏུབ
confirmation: "%{attribute} དང་ཅོག་འཐོད་མིན་འདུག"
empty: སྟོངམ་མི་བཏུབ
equal_to: "%{count} དང་འདྲ་མཉམ་དགོ"
even: འདྲན་འདྲ་དགོ
exclusion: ཟུར་གསོག
greater_than: "%{count} ལས་སྦོམ་དགོ"
greater_than_or_equal_to: "%{count} ལས་མང་སུ་ཡང་ན་འདྲན་འདྲ་དགོ"
inclusion: ཐོ་ཡིག་གི་གྲངས་སུ་མིན་འདུག
invalid: ཆ་མེད་ཨིན
less_than: "%{count} ལས་ཉུང་སུ་ཅིག་དགོ"
less_than_or_equal_to: "%{count} ལས་ཉུང་སུ་ཡང་ན་འདྲན་འདྲ་དགོ"
model_invalid: 'ཆ་འཇོག་འཐུས་ཤོར་ཡི: %{errors}'
not_a_number: ཨང་གྲངས་མེན
not_an_integer: ཧྲིལ་གྲངས་དགོ
odd: ཡ་ཨང་དགོ
other_than: "%{count} ལས་སོ་སོ་ཅིག་དགོ"
present: ས་སྟོང་བཞག་དགོ
required: དགོ་རང་དགོ
taken: ཧེ་མ་ལས་འབག་ཚར་ཡི
too_long:
one: ཡིག་འབྲུ་གནམ་མེད་ས་མེད་རིངམ་ཨིན་མེ་(ཡིག་འབྲུ་མཐོ་ཚད་གཅིག་་ཨིན)
other: ཡིག་འབྲུ་གནམ་མེད་ས་མེད་རིངམ་ཨིན་མེ་(ཡིག་འབྲུ་མཐོ་ཚད་ %{count} ཨིན)
too_short:
one: ཡིག་འབྲུ་གནམ་མེད་ས་མེད་ཐུང་སུ་ནུག་(ཡིག་འབྲུ་ཉུང་མཐའ་གཅིག་ཨིན)
other: ཡིག་འབྲུ་གནམ་མེད་ས་མེད་ཐུང་སུ་ནུག་(ཡིག་འབྲུ་ཉུང་མཐའ་ %{count} ཨིན)
wrong_length:
one: ཡིག་འབྲུ་འཛུལ་ནུག་(ཡིག་འབྲུ་གཅིག་ངེས་པར་དུ་དགོ)
other: ཡིག་འབྲུ་འཛུལ་ནུག་(ཡིག་འབྲུ་ %{count} ངེས་པར་དུ་དགོ)
template:
body: འོག་གི་ས་ཁོངས་ཚུ་ན་བཀའ་ངལ་འདུག
header:
one: འཛོལ་བ་ཅིག་གིས་ %{model} བསྡུ་བཞག་འབད་ནི་ལུ་བཀག་རྐྱབ་ཅིག
other: འཛོལ་བ་ %{count} ་གིས་ %{model} འདི་བསྡུ་བཞག་འབད་ནི་ལུ་བཀག་རྐྱབ་ཅིག
helpers:
select:
prompt: གདམ་ཁ་རྐྱབ
submit:
create: "%{model} གསར་སྤྲིན་འབད"
submit: "%{model} བསྡུ་བཞག་འབད"
update: "%{model} དུས་མཐུན་ཁ་གསོ་འབད"
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision:
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision:
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: ཐེར་འབུམ
million: ས་ཡ
quadrillion: Quadrillion
thousand: སྟོང་ཕྲག
trillion: ཁྲག་ཁྲིག་ཆེན་པོ
unit: ''
format:
delimiter: ''
precision:
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", དང "
two_words_connector: " དང "
words_connector: ", "
time:
am: དྲོ་པ་གི་ཆུ་ཚོད་་
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: ཕྱི་རུ་གི་ཆུ་ཚོད་

View File

@@ -0,0 +1,215 @@
---
el-CY:
activerecord:
errors:
messages:
record_invalid: 'Η επικύρωση απέτυχε: %{errors}'
restrict_dependent_destroy:
has_many: Η εγγραφή δεν μπορεί να διαγραφεί γιατί υπάρχουν εξαρτημένα %{record}
has_one: Η εγγραφή δεν μπορεί να διαγραφεί γιατί υπάρχει εξαρτημένο %{record}
date:
abbr_day_names:
- Κυρ
- Δευ
- Τρί
- Τετ
- Πέμ
- Παρ
- Σάβ
abbr_month_names:
-
- Ιαν
- Φεβ
- Μαρ
- Απρ
- Μαϊ
- Ιουν
- Ιουλ
- Αυγ
- Σεπ
- Οκτ
- Νοε
- Δεκ
day_names:
- Κυριακή
- Δευτέρα
- Τρίτη
- Τετάρτη
- Πέμπτη
- Παρασκευή
- Σάββατο
formats:
default: "%d/%m/%Y"
long: "%e %B %Y"
short: "%d %b"
month_names:
-
- Ιανουάριος
- Φεβρουάριος
- Μάρτιος
- Απρίλιος
- Μάιος
- Ιούνιος
- Ιούλιος
- Αύγουστος
- Σεπτέμβριος
- Οκτώβριος
- Νοέμβριος
- Δεκέμβριος
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: περίπου μία ώρα
other: περίπου %{count} ώρες
about_x_months:
one: περίπου ένα μήνα
other: περίπου %{count} μήνες
about_x_years:
one: περίπου ένα χρόνο
other: περίπου %{count} χρόνια
almost_x_years:
one: σχεδόν ένα χρόνο
other: σχεδόν %{count} χρόνια
half_a_minute: μισό λεπτό
less_than_x_minutes:
one: λιγότερο από ένα λεπτό
other: λιγότερο από %{count} λεπτά
less_than_x_seconds:
one: λιγότερο από ένα δευτερόλεπτο
other: λιγότερο από %{count} δευτερόλεπτα
over_x_years:
one: πάνω από ένα χρόνο
other: πάνω από %{count} χρόνια
x_days:
one: "%{count} μέρα"
other: "%{count} ημέρες"
x_minutes:
one: "%{count} λεπτό"
other: "%{count} λεπτά"
x_months:
one: "%{count} μήνα"
other: "%{count} μήνες"
x_seconds:
one: "%{count} δευτερόλεπτο"
other: "%{count} δευτερόλεπτα"
x_years:
one: "%{count} χρόνος"
other: "%{count} χρόνια"
prompts:
day: Ημέρα
hour: Ώρα
minute: Λεπτό
month: Μήνας
second: Δευτερόλεπτο
year: Έτος
errors:
format: "%{attribute} %{message}"
messages:
accepted: πρέπει να είναι αποδεκτό
blank: δεν πρέπει να είναι κενό
confirmation: δεν ταιριάζει με την επικύρωση
empty: δεν πρέπει να είναι άδειο
equal_to: πρέπει να είναι ίσο με %{count}
even: πρέπει να είναι άρτιος
exclusion: είναι δεσμευμένο
greater_than: πρέπει να είναι μεγαλύτερο από %{count}
greater_than_or_equal_to: πρέπει να είναι μεγαλύτερο ή ίσο με %{count}
inclusion: δεν συμπεριλαμβάνεται στη λίστα
invalid: είναι άκυρο
less_than: πρέπει να είναι λιγότερο από %{count}
less_than_or_equal_to: πρέπει να είναι λιγότερο ή ίσο με %{count}
model_invalid: 'Η επικύρωση απέτυχε: %{errors}'
not_a_number: δεν είναι αριθμός
not_an_integer: πρέπει να είναι ακέραιος αριθμός
odd: πρέπει να είναι περιττός
other_than: πρέπει να είναι διάφορο του %{count}
present: πρέπει να είναι κενό
required: πρέπει να υπάρχει
taken: το έχουν ήδη χρησιμοποιήσει
too_long:
one: είναι πολύ μεγάλο (το μέγιστο μήκος είναι %{count} χαρακτήρας)
other: είναι πολύ μεγάλο (το μέγιστο μήκος είναι %{count} χαρακτήρες)
too_short:
one: είναι πολύ μικρό (το ελάχιστο μήκος είναι %{count} χαρακτήρας)
other: είναι πολύ μικρό (το ελάχιστο μήκος είναι %{count} χαρακτήρες)
wrong_length:
one: έχει λανθασμένο μήκος (πρέπει να είναι %{count} χαρακτήρας)
other: έχει λανθασμένο μήκος (πρέπει να είναι %{count} χαρακτήρες)
template:
body: 'Υπήρξαν προβλήματα με τα ακόλουθα πεδία:'
header:
one: "%{count} λάθος εμπόδισε αυτό το %{model} να αποθηκευτεί."
other: "%{count} λάθη εμπόδισαν αυτό το %{model} να αποθηκευτεί."
helpers:
select:
prompt: Παρακαλώ επιλέξτε
submit:
create: Δημιουργήστε %{model}
submit: Αποθηκεύστε %{model}
update: Ενημερώστε %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: δισεκατομμύριο
million: εκατομμύριο
quadrillion: τετράκις εκατομμύριο
thousand: χίλια
trillion: τρισεκατομμύριο
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " και "
two_words_connector: " και "
words_connector: ", "
time:
am: π.μ.
formats:
default: "%d %B %Y %H:%M"
long: "%A %d %B %Y %H:%M:%S %Z"
short: "%d %b %H:%M"
pm: μ.μ.

View File

@@ -0,0 +1,215 @@
---
el:
activerecord:
errors:
messages:
record_invalid: 'Η επικύρωση απέτυχε: %{errors}'
restrict_dependent_destroy:
has_many: Η εγγραφή δεν μπορεί να διαγραφεί γιατί υπάρχουν εξαρτημένα %{record}
has_one: Η εγγραφή δεν μπορεί να διαγραφεί γιατί υπάρχει εξαρτημένο %{record}
date:
abbr_day_names:
- Κυρ
- Δευ
- Τρί
- Τετ
- Πέμ
- Παρ
- Σάβ
abbr_month_names:
-
- Ιαν
- Φεβ
- Μαρ
- Απρ
- Μαϊ
- Ιουν
- Ιουλ
- Αυγ
- Σεπ
- Οκτ
- Νοε
- Δεκ
day_names:
- Κυριακή
- Δευτέρα
- Τρίτη
- Τετάρτη
- Πέμπτη
- Παρασκευή
- Σάββατο
formats:
default: "%d/%m/%Y"
long: "%e %B %Y"
short: "%d %b"
month_names:
-
- Ιανουάριος
- Φεβρουάριος
- Μάρτιος
- Απρίλιος
- Μάιος
- Ιούνιος
- Ιούλιος
- Αύγουστος
- Σεπτέμβριος
- Οκτώβριος
- Νοέμβριος
- Δεκέμβριος
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: περίπου μία ώρα
other: περίπου %{count} ώρες
about_x_months:
one: περίπου ένα μήνα
other: περίπου %{count} μήνες
about_x_years:
one: περίπου ένα χρόνο
other: περίπου %{count} χρόνια
almost_x_years:
one: σχεδόν ένα χρόνο
other: σχεδόν %{count} χρόνια
half_a_minute: μισό λεπτό
less_than_x_minutes:
one: λιγότερο από ένα λεπτό
other: λιγότερο από %{count} λεπτά
less_than_x_seconds:
one: λιγότερο από ένα δευτερόλεπτο
other: λιγότερο από %{count} δευτερόλεπτα
over_x_years:
one: πάνω από ένα χρόνο
other: πάνω από %{count} χρόνια
x_days:
one: "%{count} μέρα"
other: "%{count} ημέρες"
x_minutes:
one: "%{count} λεπτό"
other: "%{count} λεπτά"
x_months:
one: "%{count} μήνα"
other: "%{count} μήνες"
x_seconds:
one: "%{count} δευτερόλεπτο"
other: "%{count} δευτερόλεπτα"
x_years:
one: "%{count} χρόνος"
other: "%{count} χρόνια"
prompts:
day: Ημέρα
hour: Ώρα
minute: Λεπτό
month: Μήνας
second: Δευτερόλεπτο
year: Έτος
errors:
format: "%{attribute} %{message}"
messages:
accepted: πρέπει να είναι αποδεκτό
blank: δεν πρέπει να είναι κενό
confirmation: δεν ταιριάζει με την επικύρωση
empty: δεν πρέπει να είναι άδειο
equal_to: πρέπει να είναι ίσο με %{count}
even: πρέπει να είναι άρτιος
exclusion: είναι δεσμευμένο
greater_than: πρέπει να είναι μεγαλύτερο από %{count}
greater_than_or_equal_to: πρέπει να είναι μεγαλύτερο ή ίσο με %{count}
inclusion: δεν συμπεριλαμβάνεται στη λίστα
invalid: είναι άκυρο
less_than: πρέπει να είναι λιγότερο από %{count}
less_than_or_equal_to: πρέπει να είναι λιγότερο ή ίσο με %{count}
model_invalid: 'Η επικύρωση απέτυχε: %{errors}'
not_a_number: δεν είναι αριθμός
not_an_integer: πρέπει να είναι ακέραιος αριθμός
odd: πρέπει να είναι περιττός
other_than: πρέπει να είναι διάφορο του %{count}
present: πρέπει να είναι κενό
required: πρέπει να υπάρχει
taken: το έχουν ήδη χρησιμοποιήσει
too_long:
one: είναι πολύ μεγάλο (το μέγιστο μήκος είναι %{count} χαρακτήρας)
other: είναι πολύ μεγάλο (το μέγιστο μήκος είναι %{count} χαρακτήρες)
too_short:
one: είναι πολύ μικρό (το ελάχιστο μήκος είναι %{count} χαρακτήρας)
other: είναι πολύ μικρό (το ελάχιστο μήκος είναι %{count} χαρακτήρες)
wrong_length:
one: έχει λανθασμένο μήκος (πρέπει να είναι %{count} χαρακτήρας)
other: έχει λανθασμένο μήκος (πρέπει να είναι %{count} χαρακτήρες)
template:
body: 'Υπήρξαν προβλήματα με τα ακόλουθα πεδία:'
header:
one: "%{count} λάθος εμπόδισε αυτό το %{model} να αποθηκευτεί."
other: "%{count} λάθη εμπόδισαν αυτό το %{model} να αποθηκευτεί."
helpers:
select:
prompt: Παρακαλώ επιλέξτε
submit:
create: Δημιουργήστε %{model}
submit: Αποθηκεύστε %{model}
update: Ενημερώστε %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: δισεκατομμύριο
million: εκατομμύριο
quadrillion: τετράκις εκατομμύριο
thousand: χίλια
trillion: τρισεκατομμύριο
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " και "
two_words_connector: " και "
words_connector: ", "
time:
am: π.μ.
formats:
default: "%d %B %Y %H:%M"
long: "%A %d %B %Y %H:%M:%S %Z"
short: "%d %b %H:%M"
pm: μ.μ.

View File

@@ -0,0 +1,215 @@
---
en-AU:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%d-%m-%Y"
long: "%d %B, %Y"
short: "%d %b"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Second
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million: Million
quadrillion: Quadrillion
thousand: Thousand
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B, %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,215 @@
---
en-CA:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%Y-%m-%d"
long: "%B %d, %Y"
short: "%d %b"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Second
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million: Million
quadrillion: Quadrillion
thousand: Thousand
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %I:%M:%S %p %Z"
long: "%B %d, %Y %I:%M %p"
short: "%d %b %I:%M %p"
pm: pm

View File

@@ -0,0 +1,215 @@
---
en-CY:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%d-%m-%Y"
long: "%d %B, %Y"
short: "%d %b"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Second
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million: Million
quadrillion: Quadrillion
thousand: Thousand
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B, %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,215 @@
---
en-GB:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%d-%m-%Y"
long: "%d %B, %Y"
short: "%d %b"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Second
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "£"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million: Million
quadrillion: Quadrillion
thousand: Thousand
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B, %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,215 @@
---
en-IE:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%d-%m-%Y"
long: "%d %B, %Y"
short: "%d %b"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Second
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million: Million
quadrillion: Quadrillion
thousand: Thousand
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B, %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,215 @@
---
en-IN:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%d-%m-%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Second
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "₹"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million: Million
quadrillion: Quadrillion
thousand: Thousand
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,215 @@
---
en-NZ:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%d-%m-%Y"
long: "%d %B, %Y"
short: "%d %b"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Second
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million: Million
quadrillion: Quadrillion
thousand: Thousand
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B, %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,213 @@
---
en-TT:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%Y-%m-%d"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Seconds
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: TT$
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million: Million
quadrillion: Quadrillion
thousand: Thousand
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,217 @@
---
en-US:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%m-%d-%Y"
long: "%B %d, %Y"
short: "%b %d"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :month
- :day
- :year
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Second
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
in: must be in %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision: 3
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million: Million
quadrillion: Quadrillion
thousand: Thousand
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %I:%M:%S %p %Z"
long: "%B %d, %Y %I:%M %p"
short: "%d %b %I:%M %p"
pm: pm

View File

@@ -0,0 +1,215 @@
---
en-ZA:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%Y-%m-%d"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Second
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
delimiter: " "
format: "%u %n"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: R
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million: Million
quadrillion: Quadrillion
thousand: Thousand
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,216 @@
---
en:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: Cannot delete record because dependent %{record} exist
has_one: Cannot delete record because a dependent %{record} exists
date:
abbr_day_names:
- Sun
- Mon
- Tue
- Wed
- Thu
- Fri
- Sat
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- Sunday
- Monday
- Tuesday
- Wednesday
- Thursday
- Friday
- Saturday
formats:
default: "%Y-%m-%d"
long: "%B %d, %Y"
short: "%b %d"
month_names:
-
- January
- February
- March
- April
- May
- June
- July
- August
- September
- October
- November
- December
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: about %{count} hour
other: about %{count} hours
about_x_months:
one: about %{count} month
other: about %{count} months
about_x_years:
one: about %{count} year
other: about %{count} years
almost_x_years:
one: almost %{count} year
other: almost %{count} years
half_a_minute: half a minute
less_than_x_minutes:
one: less than a minute
other: less than %{count} minutes
less_than_x_seconds:
one: less than %{count} second
other: less than %{count} seconds
over_x_years:
one: over %{count} year
other: over %{count} years
x_days:
one: "%{count} day"
other: "%{count} days"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} month"
other: "%{count} months"
x_seconds:
one: "%{count} second"
other: "%{count} seconds"
x_years:
one: "%{count} year"
other: "%{count} years"
prompts:
day: Day
hour: Hour
minute: Minute
month: Month
second: Second
year: Year
errors:
format: "%{attribute} %{message}"
messages:
accepted: must be accepted
blank: can't be blank
confirmation: doesn't match %{attribute}
empty: can't be empty
equal_to: must be equal to %{count}
even: must be even
exclusion: is reserved
greater_than: must be greater than %{count}
greater_than_or_equal_to: must be greater than or equal to %{count}
in: must be in %{count}
inclusion: is not included in the list
invalid: is invalid
less_than: must be less than %{count}
less_than_or_equal_to: must be less than or equal to %{count}
model_invalid: 'Validation failed: %{errors}'
not_a_number: is not a number
not_an_integer: must be an integer
odd: must be odd
other_than: must be other than %{count}
present: must be blank
required: must exist
taken: has already been taken
too_long:
one: is too long (maximum is %{count} character)
other: is too long (maximum is %{count} characters)
too_short:
one: is too short (minimum is %{count} character)
other: is too short (minimum is %{count} characters)
wrong_length:
one: is the wrong length (should be %{count} character)
other: is the wrong length (should be %{count} characters)
template:
body: 'There were problems with the following fields:'
header:
one: "%{count} error prohibited this %{model} from being saved"
other: "%{count} errors prohibited this %{model} from being saved"
helpers:
select:
prompt: Please select
submit:
create: Create %{model}
submit: Save %{model}
update: Update %{model}
number:
currency:
format:
significant: false
strip_insignificant_zeros: false
format:
delimiter: ","
precision: 3
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Billion
million:
one: Million
other: Million
quadrillion: Quadrillion
thousand: Thousand
trillion:
one: Trillion
other: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", and "
two_words_connector: " and "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%B %d, %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,198 @@
---
eo:
activerecord:
errors:
messages:
record_invalid: 'Validado malsukcesis: %{errors}'
date:
abbr_day_names:
- dim
- lun
- mar
- mer
- ĵaŭ
- ven
- sab
abbr_month_names:
-
- jan.
- feb.
- mar.
- apr.
- majo
- jun.
- jul.
- aŭg.
- sep.
- okt.
- nov.
- dec.
day_names:
- dimanĉo
- lundo
- mardo
- merkredo
- ĵaŭdo
- vendredo
- sabato
formats:
default: "%Y/%m/%d"
long: "%e %B %Y"
short: "%e %b"
month_names:
-
- januaro
- februaro
- marto
- aprilo
- majo
- junio
- julio
- aŭgusto
- septembro
- oktobro
- novembro
- decembro
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: ĉirkaŭ unu horo
other: ĉirkaŭ %{count} horoj
about_x_months:
one: ĉirkaŭ unu monato
other: ĉirkaŭ %{count} monatoj
about_x_years:
one: ĉirkaŭ uno jaro
other: ĉirkaŭ %{count} jaroj
almost_x_years:
one: preskaŭ unu jaro
other: preskaŭ %{count} jaroj
half_a_minute: duona minuto
less_than_x_minutes:
one: malpli ol unu minuto
other: malpli ol %{count} minutoj
zero: malpli ol unu minuto
less_than_x_seconds:
one: malpli ol unu sekundo
other: malpli ol %{count} sekundoj
zero: malpli ol unu sekundo
over_x_years:
one: pli ol unu jaro
other: pli ol %{count} jaroj
x_days:
one: "%{count} tago"
other: "%{count} tagoj"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutoj"
x_months:
one: "%{count} monato"
other: "%{count} monatoj"
x_seconds:
one: "%{count} sekundo"
other: "%{count} sekundoj"
prompts:
day: Tago
hour: Horo
minute: Minuto
month: Monato
second: Sekundo
year: Jaro
errors:
format: "%{attribute} %{message}"
messages:
accepted: devas esti akceptita
blank: devas esti kompletigita
confirmation: ne kongruas kun la konfirmo
empty: devas esti kompletigita
equal_to: devas egali %{count}
even: devas esti para
exclusion: ne estas disponebla
greater_than: devas superi %{count}
greater_than_or_equal_to: devas superi aŭ egali %{count}
inclusion: ne estas inkluzivita de la listo
invalid: estas nevalida
less_than: devas malsuperi %{count}
less_than_or_equal_to: devas malsuperi aŭ egali %{count}
not_a_number: ne estas nombro
not_an_integer: devas esti entjero
odd: devas esti nepara
taken: ne estas disponebla
too_long: estas tro longa (maksimume %{count} karekteroj)
too_short: estas tro mallonga (minimume %{count} karakteroj)
wrong_length: ne estas je ĝusta longo (devas enhavi %{count} karakterojn)
template:
body: 'Kontrolu la jenajn kampojn: '
header:
one: 'Ne eblas registri tiun %{model}: %{count} eraro'
other: 'Ne eblas registri tiun %{model}: %{count} eraroj'
helpers:
select:
prompt: Bonvolu elekti
submit:
create: Krei %{model}
submit: Registri tiun %{model}
update: Modifi tiun %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: " "
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: miliardo
million: miliono
quadrillion: miliono da miliardoj
thousand: mil
trillion: mil miliardoj
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: bitoko
other: bitokoj
gb: Gb
kb: kb
mb: Mb
tb: Tb
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " kaj "
two_words_connector: " kaj "
words_connector: ", "
time:
am: am
formats:
default: "%d %B %Y %H:%M:%S"
long: "%A %d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,222 @@
---
es-419:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un(a) %{record}
dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%A, %d de %B de %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cerca de %{count} hora
other: cerca de %{count} horas
about_x_months:
one: cerca de %{count} mes
other: cerca de %{count} meses
about_x_years:
one: cerca de %{count} año
other: cerca de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor o igual que %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: es inválido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor o igual que %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser un número non
other_than: debe ser diferente de %{count}
present: debe estar en blanco
required: debe existir
taken: ya ha sido tomado
too_long:
one: es demasiado largo (máximo %{count} carácter)
other: es demasiado largo (máximo %{count} caracteres)
too_short:
one: es demasiado corto (mínimo %{count} carácter)
other: es demasiado corto (mínimo %{count} caracteres)
wrong_length:
one: longitud errónea (debe ser de %{count} carácter)
other: longitud errónea (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: "%{model} no pudo guardarse debido a %{count} error"
other: "%{model} no pudo guardarse debido a %{count} errores"
helpers:
select:
prompt: Por favor selecciona
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "¤"
format:
delimiter: ","
precision: 2
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ","
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ","
format: "%n%"
precision:
format:
delimiter: ","
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
long: "%A, %d de %B de %Y a las %I:%M %p"
short: "%d de %b a las %H:%M hrs"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es-AR:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%A, %d de %B de %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cerca de %{count} hora
other: cerca de %{count} horas
about_x_months:
one: cerca de %{count} mes
other: cerca de %{count} meses
about_x_years:
one: cerca de %{count} año
other: cerca de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor o igual que %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: es inválido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor o igual que %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser un número impar
other_than: debe ser distinto de %{count}
present: debe estar en blanco
required: debe existir
taken: ya ha sido tomado
too_long:
one: es demasiado largo (máximo %{count} carácter)
other: es demasiado largo (máximo %{count} caracteres)
too_short:
one: es demasiado corto (mínimo %{count} carácter)
other: es demasiado corto (mínimo %{count} caracteres)
wrong_length:
one: longitud errónea (debe ser de %{count} carácter)
other: longitud errónea (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: "%{model} no pudo guardarse debido a %{count} error"
other: "%{model} no pudo guardarse debido a %{count} errores"
helpers:
select:
prompt: Por favor selecciona
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: "."
format: "%u%n"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: "."
precision: 2
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ","
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ","
format: "%n%"
precision:
format:
delimiter: ","
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
long: "%A, %d de %B de %Y a las %I:%M %p"
short: "%d de %b a las %H:%M hrs"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es-CL:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%A %d de %B de %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: alrededor de %{count} hora
other: alrededor de %{count} horas
about_x_months:
one: alrededor de %{count} mes
other: alrededor de %{count} meses
about_x_years:
one: alrededor de %{count} año
other: alrededor de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor que o igual a %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: no es válido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor que o igual a %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser impar
other_than: debe ser distinto de %{count}
present: debe estar en blanco
required: debe existir
taken: ya está en uso
too_long:
one: es demasiado largo (%{count} carácter máximo)
other: es demasiado largo (%{count} caracteres máximo)
too_short:
one: es demasiado corto (%{count} carácter mínimo)
other: es demasiado corto (%{count} caracteres mínimo)
wrong_length:
one: no tiene la longitud correcta (%{count} carácter exacto)
other: no tiene la longitud correcta (%{count} caracteres exactos)
template:
body: 'Se encontraron problemas con los siguientes campos:'
header:
one: No se pudo guardar este/a %{model} porque se encontró %{count} error
other: No se pudo guardar este/a %{model} porque se encontraron %{count} errores
helpers:
select:
prompt: Por favor seleccione
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: "."
format: "%u %n"
precision: 0
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: "."
precision: 3
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%A, %d de %B de %Y %H:%M:%S %z"
long: "%A %d de %B de %Y %H:%M"
short: "%d de %b %H:%M"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es-CO:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%A, %d de %B de %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cerca de %{count} hora
other: cerca de %{count} horas
about_x_months:
one: cerca de %{count} mes
other: cerca de %{count} meses
about_x_years:
one: cerca de %{count} año
other: cerca de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor o igual que %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: es inválido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor o igual que %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser un número impar
other_than: debe ser distinto de %{count}
present: debe estar en blanco
required: debe existir
taken: ya ha sido tomado
too_long:
one: es demasiado largo (máximo %{count} carácter)
other: es demasiado largo (máximo %{count} caracteres)
too_short:
one: es demasiado corto (mínimo %{count} carácter)
other: es demasiado corto (mínimo %{count} caracteres)
wrong_length:
one: longitud errónea (debe ser de %{count} carácter)
other: longitud errónea (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: "%{model} no pudo guardarse debido a %{count} error"
other: "%{model} no pudo guardarse debido a %{count} errores"
helpers:
select:
prompt: Por favor selecciona
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: "."
format: "%u%n"
precision: 0
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: "."
precision: 2
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
long: "%A, %d de %B de %Y a las %I:%M %p"
short: "%d de %b a las %H:%M hrs"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es-CR:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%A, %d de %B de %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cerca de %{count} hora
other: cerca de %{count} horas
about_x_months:
one: cerca de %{count} mes
other: cerca de %{count} meses
about_x_years:
one: cerca de %{count} año
other: cerca de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor o igual que %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: es inválido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor o igual que %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser un número impar
other_than: debe ser distinto de %{count}
present: debe estar en blanco
required: debe existir
taken: ya ha sido utilizado
too_long:
one: es demasiado largo (máximo %{count} carácter)
other: es demasiado largo (máximo %{count} caracteres)
too_short:
one: es demasiado corto (mínimo %{count} carácter)
other: es demasiado corto (mínimo %{count} caracteres)
wrong_length:
one: longitud errónea (debe ser de %{count} carácter)
other: longitud errónea (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: "%{model} no pudo guardarse debido a %{count} error"
other: "%{model} no pudo guardarse debido a %{count} errores"
helpers:
select:
prompt: Por favor seleccione
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 0
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "¢"
format:
delimiter: ","
precision: 2
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ","
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ","
format: "%n%"
precision:
format:
delimiter: ","
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
long: "%A, %d de %B de %Y a las %I:%M %p"
short: "%d de %b a las %H:%M hrs"
pm: pm

View File

@@ -0,0 +1,222 @@
---
es-EC:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un(a) %{record}
dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%-d/%m/%Y"
long: "%A, %-d de %B de %Y"
short: "%-d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cerca de %{count} hora
other: cerca de %{count} horas
about_x_months:
one: cerca de %{count} mes
other: cerca de %{count} meses
about_x_years:
one: cerca de %{count} año
other: cerca de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor que o igual a %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: no es válido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor que o igual a %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser un número impar
other_than: debe ser diferente de %{count}
present: debe estar en blanco
required: debe existir
taken: ya está en uso
too_long:
one: es demasiado largo (máximo %{count} carácter)
other: es demasiado largo (máximo %{count} caracteres)
too_short:
one: es demasiado corto (mínimo %{count} carácter)
other: es demasiado corto (mínimo %{count} caracteres)
wrong_length:
one: no tiene la longitud correcta (debe ser de %{count} carácter)
other: no tiene la longitud correcta (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: No se pudo guardar este/a %{model} porque se encontró %{count} error
other: No se pudo guardar este/a %{model} porque se encontraron %{count} errores
helpers:
select:
prompt: Por favor seleccione
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision: 3
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%A, %-d de %B de %Y a las %-I:%M:%S %p %Z"
long: "%-d de %B de %Y a las %-I:%M %p"
short: "%-d %b %-I:%M %p"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es-ES:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%d de %B de %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: alrededor de %{count} hora
other: alrededor de %{count} horas
about_x_months:
one: alrededor de %{count} mes
other: alrededor de %{count} meses
about_x_years:
one: alrededor de %{count} año
other: alrededor de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor que o igual a %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: no es válido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor que o igual a %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser impar
other_than: debe ser distinto de %{count}
present: debe estar en blanco
required: debe existir
taken: ya está en uso
too_long:
one: es demasiado largo (%{count} carácter máximo)
other: es demasiado largo (%{count} caracteres máximo)
too_short:
one: es demasiado corto (%{count} carácter mínimo)
other: es demasiado corto (%{count} caracteres mínimo)
wrong_length:
one: no tiene la longitud correcta (%{count} carácter exactos)
other: no tiene la longitud correcta (%{count} caracteres exactos)
template:
body: 'Se encontraron problemas con los siguientes campos:'
header:
one: No se pudo guardar este/a %{model} porque se encontró %{count} error
other: No se pudo guardar este/a %{model} porque se encontraron %{count} errores
helpers:
select:
prompt: Por favor seleccione
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 3
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n %"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%A, %d de %B de %Y %H:%M:%S %z"
long: "%d de %B de %Y %H:%M"
short: "%d de %b %H:%M"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es-MX:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: El registro no puede ser eliminado pues existen %{record} dependientes
has_one: El registro no puede ser eliminado pues existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%A, %d de %B de %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cerca de %{count} hora
other: cerca de %{count} horas
about_x_months:
one: cerca de %{count} mes
other: cerca de %{count} meses
about_x_years:
one: cerca de %{count} año
other: cerca de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor o igual que %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: es inválido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor o igual que %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser un número non
other_than: debe ser diferente a %{count}
present: debe estar en blanco
required: debe existir
taken: ya ha sido tomado
too_long:
one: es demasiado largo (máximo %{count} carácter)
other: es demasiado largo (máximo %{count} caracteres)
too_short:
one: es demasiado corto (mínimo %{count} carácter)
other: es demasiado corto (mínimo %{count} caracteres)
wrong_length:
one: longitud errónea (debe ser de %{count} carácter)
other: longitud errónea (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: "%{model} no pudo guardarse debido a %{count} error"
other: "%{model} no pudo guardarse debido a %{count} errores"
helpers:
select:
prompt: Por favor selecciona
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision: 2
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ","
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ","
format: "%n%"
precision:
format:
delimiter: ","
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
long: "%A, %d de %B de %Y a las %I:%M %p"
short: "%d de %b a las %H:%M hrs"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es-NI:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%A, %d de %B de %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cerca de %{count} hora
other: cerca de %{count} horas
about_x_months:
one: cerca de %{count} mes
other: cerca de %{count} meses
about_x_years:
one: cerca de %{count} año
other: cerca de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor o igual que %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: es inválido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor o igual que %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser un número impar
other_than: debe ser distinto de %{count}
present: debe estar en blanco
required: debe existir
taken: ya ha sido utilizado
too_long:
one: es demasiado largo (máximo %{count} carácter)
other: es demasiado largo (máximo %{count} caracteres)
too_short:
one: es demasiado corto (mínimo %{count} carácter)
other: es demasiado corto (mínimo %{count} caracteres)
wrong_length:
one: longitud errónea (debe ser de %{count} carácter)
other: longitud errónea (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: "%{model} no pudo guardarse debido a %{count} error"
other: "%{model} no pudo guardarse debido a %{count} errores"
helpers:
select:
prompt: Por favor seleccione
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 0
separator: "."
significant: false
strip_insignificant_zeros: false
unit: C$
format:
delimiter: ","
precision: 2
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ","
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ","
format: "%n%"
precision:
format:
delimiter: ","
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
long: "%A, %d de %B de %Y a las %I:%M %p"
short: "%d de %b a las %H:%M hrs"
pm: pm

View File

@@ -0,0 +1,223 @@
---
es-PA:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un(a) %{record}
dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%-d/%-m/%Y"
long: "%A, %-d de %B de %Y"
short: "%-d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: alrededor de %{count} hora
other: alrededor de %{count} horas
about_x_months:
one: alrededor de %{count} mes
other: alrededor de %{count} meses
about_x_years:
one: alrededor de %{count} año
other: alrededor de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado(a)
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío(a)
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado(a)
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor que o igual a %{count}
in: debe estar en %{count}
inclusion: no está incluido(a) en la lista
invalid: no es válido(a)
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor que o igual a %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un número entero
odd: debe ser un número impar
other_than: debe ser diferente de %{count}
present: debe estar en blanco
required: debe existir
taken: ya está en uso
too_long:
one: es demasiado largo(a) (máximo %{count} carácter)
other: es demasiado largo(a) (máximo %{count} caracteres)
too_short:
one: es demasiado corto(a) (mínimo %{count} carácter)
other: es demasiado corto(a) (mínimo %{count} caracteres)
wrong_length:
one: no tiene la longitud correcta (debe ser de %{count} carácter)
other: no tiene la longitud correcta (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: No se pudo guardar este(a) %{model} porque se encontró %{count} error
other: No se pudo guardar este(a) %{model} porque se encontraron %{count}
errores
helpers:
select:
prompt: Por favor seleccione
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: B/.
format:
delimiter: ","
precision: 3
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%A, %-d de %B de %Y a las %-I:%M:%S %p %Z"
long: "%-d de %B de %Y a las %-I:%M %p"
short: "%-d %b %-I:%M %p"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es-PE:
activerecord:
errors:
messages:
record_invalid: 'Falla de validación: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%A, %d de %B del %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cerca de %{count} hora
other: cerca de %{count} horas
about_x_months:
one: cerca de %{count} mes
other: cerca de %{count} meses
about_x_years:
one: cerca de %{count} año
other: cerca de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor o igual que %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: es inválido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor o igual que %{count}
model_invalid: 'Falla de validación: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser un número non
other_than: debe ser distinto de %{count}
present: debe estar en blanco
required: debe existir
taken: ya ha sido tomado
too_long:
one: es demasiado largo (máximo %{count} carácter)
other: es demasiado largo (máximo %{count} caracteres)
too_short:
one: es demasiado corto (mínimo %{count} carácter)
other: es demasiado corto (mínimo %{count} caracteres)
wrong_length:
one: longitud errónea (debe ser de %{count} carácter)
other: longitud errónea (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: "%{model} no pudo guardarse debido a %{count} error"
other: "%{model} no pudo guardarse debido a %{count} errores"
helpers:
select:
prompt: Por favor seleccione
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: S/
format:
delimiter: ","
precision: 2
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ","
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ","
format: "%n%"
precision:
format:
delimiter: ","
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d de %b del %Y a las %H:%M:%S %Z"
long: "%A, %d de %B del %Y a las %I:%M %p"
short: "%d de %b a las %H:%M hrs"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es-US:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%A, %d de %B de %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cerca de %{count} hora
other: cerca de %{count} horas
about_x_months:
one: cerca de %{count} mes
other: cerca de %{count} meses
about_x_years:
one: cerca de %{count} año
other: cerca de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor o igual que %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: es inválido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor o igual que %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser un número non
other_than: debe ser distinto de %{count}
present: debe estar en blanco
required: debe existir
taken: ya ha sido tomado
too_long:
one: es demasiado largo (máximo %{count} carácter)
other: es demasiado largo (máximo %{count} caracteres)
too_short:
one: es demasiado corto (mínimo %{count} carácter)
other: es demasiado corto (mínimo %{count} caracteres)
wrong_length:
one: longitud errónea (debe ser de %{count} carácter)
other: longitud errónea (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: "%{model} no pudo guardarse debido a %{count} error"
other: "%{model} no pudo guardarse debido a %{count} errores"
helpers:
select:
prompt: Por favor selecciona
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision: 2
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ","
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ","
format: "%n%"
precision:
format:
delimiter: ","
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d de %b de %Y a las %H:%M:%S %Z"
long: "%A, %d de %B de %Y a las %I:%M %p"
short: "%d de %b a las %H:%M hrs"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es-VE:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%d/%m/%Y"
long: "%A, %d de %B de %Y"
short: "%d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: cerca de %{count} hora
other: cerca de %{count} horas
about_x_months:
one: cerca de %{count} mes
other: cerca de %{count} meses
about_x_years:
one: cerca de %{count} año
other: cerca de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser un número par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor o igual que %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: no es válido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor o igual que %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser un número impar
other_than: debe ser distinto de %{count}
present: debe estar en blanco
required: debe existir
taken: ya está en uso
too_long:
one: es demasiado largo (máximo %{count} carácter)
other: es demasiado largo (máximo %{count} caracteres)
too_short:
one: es demasiado corto (mínimo %{count} carácter)
other: es demasiado corto (mínimo %{count} caracteres)
wrong_length:
one: longitud errónea (debe ser de %{count} carácter)
other: longitud errónea (debe ser de %{count} caracteres)
template:
body: 'Revise que los siguientes campos sean válidos:'
header:
one: "%{model} no pudo guardarse debido a %{count} error"
other: "%{model} no pudo guardarse debido a %{count} errores"
helpers:
select:
prompt: Por favor selecciona
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: "."
format: "%u%n"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: Bs.
format:
delimiter: "."
precision: 2
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: "."
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ","
format: "%n%"
precision:
format:
delimiter: ","
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d de %b de %Y a las %H:%M:%S%p %Z"
long: "%A, %d de %B de %Y a las %I:%M%p"
short: "%d de %b a las %H:%M%p"
pm: pm

View File

@@ -0,0 +1,221 @@
---
es:
activerecord:
errors:
messages:
record_invalid: 'La validación falló: %{errors}'
restrict_dependent_destroy:
has_many: No se puede eliminar el registro porque existen %{record} dependientes
has_one: No se puede eliminar el registro porque existe un %{record} dependiente
date:
abbr_day_names:
- dom
- lun
- mar
- mié
- jue
- vie
- sáb
abbr_month_names:
-
- ene
- feb
- mar
- abr
- may
- jun
- jul
- ago
- sep
- oct
- nov
- dic
day_names:
- domingo
- lunes
- martes
- miércoles
- jueves
- viernes
- sábado
formats:
default: "%-d/%-m/%Y"
long: "%-d de %B de %Y"
short: "%-d de %b"
month_names:
-
- enero
- febrero
- marzo
- abril
- mayo
- junio
- julio
- agosto
- septiembre
- octubre
- noviembre
- diciembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: alrededor de %{count} hora
other: alrededor de %{count} horas
about_x_months:
one: alrededor de %{count} mes
other: alrededor de %{count} meses
about_x_years:
one: alrededor de %{count} año
other: alrededor de %{count} años
almost_x_years:
one: casi %{count} año
other: casi %{count} años
half_a_minute: medio minuto
less_than_x_minutes:
one: menos de %{count} minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: más de %{count} año
other: más de %{count} años
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} año"
other: "%{count} años"
prompts:
day: Día
hour: Hora
minute: Minuto
month: Mes
second: Segundo
year: Año
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: no puede estar en blanco
confirmation: no coincide
empty: no puede estar vacío
equal_to: debe ser igual a %{count}
even: debe ser par
exclusion: está reservado
greater_than: debe ser mayor que %{count}
greater_than_or_equal_to: debe ser mayor que o igual a %{count}
in: debe estar en %{count}
inclusion: no está incluido en la lista
invalid: no es válido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor que o igual a %{count}
model_invalid: 'La validación falló: %{errors}'
not_a_number: no es un número
not_an_integer: debe ser un entero
odd: debe ser impar
other_than: debe ser distinto de %{count}
present: debe estar en blanco
required: debe existir
taken: ya está en uso
too_long:
one: es demasiado largo (%{count} carácter máximo)
other: es demasiado largo (%{count} caracteres máximo)
too_short:
one: es demasiado corto (%{count} carácter mínimo)
other: es demasiado corto (%{count} caracteres mínimo)
wrong_length:
one: no tiene la longitud correcta (%{count} carácter exactos)
other: no tiene la longitud correcta (%{count} caracteres exactos)
template:
body: 'Se encontraron problemas con los siguientes campos:'
header:
one: No se pudo guardar este/a %{model} porque se encontró %{count} error
other: No se pudo guardar este/a %{model} porque se encontraron %{count} errores
helpers:
select:
prompt: Por favor seleccione
submit:
create: Crear %{model}
submit: Guardar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 3
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: mil millones
million:
one: millón
other: millones
quadrillion: mil billones
thousand: mil
trillion:
one: billón
other: billones
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n %"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " y "
two_words_connector: " y "
words_connector: ", "
time:
am: am
formats:
default: "%A, %-d de %B de %Y %H:%M:%S %z"
long: "%-d de %B de %Y %H:%M"
short: "%-d de %b %H:%M"
pm: pm

View File

@@ -0,0 +1,207 @@
---
et:
activerecord:
errors:
messages:
record_invalid: 'Valideerimine ebaõnnestus: %{errors}'
restrict_dependent_destroy:
has_many: Ei saa kirjet kustutada kuna sõltuvad %{record} on olemas
has_one: Ei saa kirjet kustutada kuna sõltuv %{record} on olemas
date:
abbr_day_names:
- P
- E
- T
- K
- N
- R
- L
abbr_month_names:
-
- jaan.
- veebr.
- märts
- apr.
- mai
- juuni
- juuli
- aug.
- sept.
- okt.
- nov.
- dets.
day_names:
- pühapäev
- esmaspäev
- teisipäev
- kolmapäev
- neljapäev
- reede
- laupäev
formats:
default: "%d.%m.%Y"
long: "%d. %B %Y"
short: "%d.%m.%y"
month_names:
-
- jaanuar
- veebruar
- märts
- aprill
- mai
- juuni
- juuli
- august
- september
- oktoober
- november
- detsember
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: umbes %{count} tund
other: umbes %{count} tundi
about_x_months:
one: umbes %{count} kuu
other: umbes %{count} kuud
about_x_years:
one: umbes %{count} aasta
other: umbes %{count} aastat
almost_x_years:
one: peaaegu üks aasta
other: peaaegu %{count} aastat
half_a_minute: pool minutit
less_than_x_minutes:
one: vähem kui %{count} minut
other: vähem kui %{count} minutit
less_than_x_seconds:
one: vähem kui %{count} sekund
other: vähem kui %{count} sekundit
over_x_years:
one: üle %{count} aasta
other: üle %{count} aasta
x_days:
one: "%{count} päev"
other: "%{count} päeva"
x_minutes:
one: "%{count} minut"
other: "%{count} minutit"
x_months:
one: "%{count} kuu"
other: "%{count} kuud"
x_seconds:
one: "%{count} sekund"
other: "%{count} sekundit"
x_years:
one: "%{count} aasta"
other: "%{count} aastat"
prompts:
day: Päev
hour: Tunde
minute: Minutit
month: Kuu
second: Sekundit
year: Aasta
errors:
format: "%{attribute} %{message}"
messages:
accepted: peab olema heaks kiidetud
blank: on täitmata
confirmation: ei vasta kinnitusele
empty: on tühi
equal_to: peab olema võrdne arvuga %{count}
even: peab olema paarisarv
exclusion: on reserveeritud
greater_than: peab olema suurem kui %{count}
greater_than_or_equal_to: peab olema suurem või võrdne arvuga %{count}
inclusion: ei leidu nimekirjas
invalid: ei ole korrektne
less_than: peab olema vähem kui %{count}
less_than_or_equal_to: peab olema vähem või võrdne arvuga %{count}
model_invalid: 'Valideerimine ebaõnnestus: %{errors}'
not_a_number: ei ole number
not_an_integer: peab olema täisarv
odd: peab olema paaritu arv
other_than: peab olema midagi muud kui %{count}
present: peab olema täitmata
required: peab olemas olema
taken: on juba võetud
too_long: on liiga pikk (maksimum on %{count} tähemärki)
too_short: on liiga lühike (miinimum on %{count} tähemärki)
wrong_length: on vale pikkusega (peab olema %{count} tähemärki)
template:
body: 'Probleeme ilmnes järgmiste väljadega:'
header:
one: Üks viga takistas objekti %{model} salvestamist
other: "%{count} viga takistasid objekti %{model} salvestamist"
helpers:
select:
prompt: Palun vali
submit:
create: Loo uus %{model}
submit: Salvesta %{model}
update: Uuenda objekti %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: " "
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: miljard
million: miljon
quadrillion: kvadriljon
thousand: tuhat
trillion: triljon
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: bait
other: baiti
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " ja "
two_words_connector: " ja "
words_connector: ", "
time:
am: enne lõunat
formats:
default: "%d. %B %Y, %H:%M"
long: "%a, %d. %b %Y, %H:%M:%S %z"
short: "%d.%m.%y, %H:%M"
pm: pärast lõunat

View File

@@ -0,0 +1,210 @@
---
eu:
activerecord:
errors:
messages:
record_invalid: 'Balioztatze arazoa: %{errors}'
restrict_dependent_destroy:
has_many: Ezin da erregistroa ezabat menpeko %{record}ak daudelako
has_one: Ezin da erregistroa ezabatu menpeko %{record} bat dagoelako
date:
abbr_day_names:
- Igan
- Astel
- Astear
- Asteaz
- Oste
- Osti
- Lar
abbr_month_names:
-
- Urt
- Ots
- Mar
- Api
- Mai
- Eka
- Uzt
- Abu
- Ira
- Urr
- Aza
- Aben
day_names:
- Igandea
- Astelehena
- Asteartea
- Asteazkena
- Osteguna
- Ostirala
- Larunbata
formats:
default: "%Y/%m/%e"
long: "%Y(e)ko %Bk %e"
short: "%b %e"
month_names:
-
- Urtarrila
- Otsaila
- Martxoa
- Apirila
- Maiatza
- Ekaina
- Uztaila
- Abuztua
- Iraila
- Urria
- Azaroa
- Abendua
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: ordu bat inguru
other: "%{count} ordu inguru"
about_x_months:
one: hilabete bat inguru
other: "%{count} hilabete inguru"
about_x_years:
one: urte bat inguru
other: "%{count} urte inguru"
almost_x_years:
one: ia urte bat
other: ia %{count} urte
half_a_minute: minutu erdi
less_than_x_minutes:
one: "%{count} minutu bat baino gutxiago"
other: "%{count} minutu baino gutxiago"
less_than_x_seconds:
one: segundu bat baino gutxiago
other: "%{count} segundu baino gutxiago"
over_x_years:
one: urte bat baino gehiago
other: "%{count} urte baino gehiago"
x_days:
one: egun bat
other: "%{count} egun"
x_minutes:
one: minutu bat
other: "%{count} minutu"
x_months:
one: hilabete bat
other: "%{count} hilabete"
x_seconds:
one: segundu bat
other: "%{count} segundu"
prompts:
day: Egun
hour: Ordu
minute: Minutu
month: Hilabete
second: Segundu
year: Urte
errors:
format: "%{attribute} %{message}"
messages:
accepted: onartuta izan behar da
blank: ezin da zuriz utzi
confirmation: ez dator bat konfirmazioarekin
empty: ezin da hutsik egon
equal_to: "%{count} izan behar da"
even: bikoitia izan behar du
exclusion: erreserbatuta dago
greater_than: "%{count} baino handiagoa izan behar da"
greater_than_or_equal_to: "%{count} baino handiago edo berdin izan behar da"
inclusion: ez da zerrendako aukera bat
invalid: ez da zuzena
less_than: "%{count} baino txikiago izan behar da"
less_than_or_equal_to: "%{count} baino txikiago edo berdin izan behar da"
model_invalid: 'Baieztatzeak huts egin du: %{errors}'
not_a_number: ez da zenbaki bat
not_an_integer: zenbaki osoa izan behar da
odd: bakoitia izan behar du
other_than: "%{count}ren ezberdina izan behar du"
present: zuriz egon behar da
required: egon behar du
taken: hartuta dago
too_long:
one: luzeegia da (karaktere %{count} gehienez)
other: luzeegia da (%{count} karaktere gehienez)
too_short:
one: laburregia da (karaktere %{count} gutxienez)
other: laburregia da (%{count} karaktere gutxienez)
wrong_length:
one: ez du luzeera zuzena (karaktere %{count} izan behar ditu)
other: ez du luzeera zuzena (%{count} karaktere izan behar ditu)
template:
body: 'Arazoak egon dira ondoko eremuekin:'
header:
one: Errore batek ezinezkoa egin du %{model} hau gordetzea
other: "%{count} errorek ezinezkoa egiten dute %{model} hau gordetzea"
helpers:
select:
prompt: Mesedez, aukeratu
submit:
create: "%{model}a eratu"
submit: "%{model}a gorde"
update: "%{model}a eguneratu"
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Mila milioi
million: Milioi
quadrillion: Kuatrilioi
thousand: Mila
trillion: Trilioi
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Byte
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n %"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " eta "
two_words_connector: " eta "
words_connector: ", "
time:
am: am
formats:
default: "%A, %Y(e)ko %Bren %e %H:%M:%S %z"
long: "%Y(e)ko %Bren %e, %H:%M"
short: "%b %e, %H:%M"
pm: pm

View File

@@ -0,0 +1,207 @@
---
fa:
activerecord:
errors:
messages:
record_invalid: رکورد نامعتبر است %{errors}
restrict_dependent_destroy:
has_many: نمی توان رکورد را حذف کرد بخاطر اینکه %{record} وابسته وجود دارد
has_one: نمی توان رکورد را حذف کرد بخاطر اینکه یک %{record} وابسته وجود
دارد
date:
abbr_day_names:
- ی
- د
- س
- چ
- پ
- ج
- ش
abbr_month_names:
-
- ژانویه
- فوریه
- مارس
- آوریل
- مه
- ژوئن
- ژوئیه
- اوت
- سپتامبر
- اکتبر
- نوامبر
- دسامبر
day_names:
- یکشنبه
- دوشنبه
- سه‌شنبه
- چهارشنبه
- پنج‌شنبه
- جمعه
- شنبه
formats:
default: "%Y/%m/%d"
long: "%e %B %Y"
short: "%m/%d"
month_names:
-
- ژانویه
- فوریه
- مارس
- آوریل
- مه
- ژوئن
- ژوئیه
- اوت
- سپتامبر
- اکتبر
- نوامبر
- دسامبر
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: حدود یک ساعت
other: حدود %{count} ساعت
about_x_months:
one: حدود یک ماه
other: حدود %{count} ماه
about_x_years:
one: حدود یک سال
other: حدود %{count} سال
almost_x_years:
one: حدود یک سال
other: حدود %{count} سال
half_a_minute: نیم دقیقه
less_than_x_minutes:
one: کمتر از یک دقیقه
other: کمتر از %{count} دقیقه
less_than_x_seconds:
one: یک ثانیه
other: کمتر از %{count} ثانیه
over_x_years:
one: بیش از یک سال
other: بیش از %{count} سال
x_days:
one: یک روز
other: "%{count} روز"
x_minutes:
one: یک دقیقه
other: "%{count} دقیقه"
x_months:
one: یک ماه
other: "%{count} ماه"
x_seconds:
one: یک ثانیه
other: "%{count} ثانیه"
x_years:
one: "%{count} سال"
other: "%{count} سال"
prompts:
day: روز
hour: ساعت
minute: دقیقه
month: ماه
second: ثانیه
year: سال
errors:
format: "%{attribute} %{message}"
messages:
accepted: باید پذیرفته شود
blank: نباید خالی باشد
confirmation: با تایید نمی‌خواند
empty: نمی‌تواند خالی باشد
equal_to: باید برابر %{count} باشد
even: باید زوج باشد
exclusion: رزرو است
greater_than: باید بزرگتر از %{count} باشد
greater_than_or_equal_to: باید بزرگتر یا برابر %{count} باشد
inclusion: در لیست موجود نیست
invalid: نامعتبر است
less_than: باید کمتر از %{count} باشد
less_than_or_equal_to: باید کمتر یا برابر %{count} باشد
model_invalid: رکورد نامعتبر است %{errors}
not_a_number: عدد نیست
not_an_integer: عدد صحیح نیست
odd: باید فرد باشد
other_than: باید غیر از %{count} باشد
present: باید خالی باشد
required: باید وجود داشته باشد
taken: پیشتر گرفته شده
too_long: بلند است (حداکثر %{count} کاراکتر)
too_short: کوتاه است (حداقل %{count} کاراکتر)
wrong_length: نااندازه است (باید %{count} کاراکتر باشد)
template:
body: 'موارد زیر مشکل داشت:'
header:
one: "%{count} خطا جلوی ذخیره این %{model} را گرفت"
other: "%{count} خطا جلوی ذخیره این %{model} را گرفت"
helpers:
select:
prompt: لطفا انتخاب کنید
submit:
create: ایجاد %{model}
submit: ذخیره‌ی %{model}
update: بروز رسانی %{model}
number:
currency:
format:
delimiter: "٬"
format: "%n %u"
precision: 0
separator: "٫"
significant: false
strip_insignificant_zeros: false
unit: "﷼"
format:
delimiter: "٬"
precision: 2
separator: "٫"
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: میلیارد
million: میلیون
quadrillion: کادریلیون
thousand: هزار
trillion: تریلیون
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: بایت
other: بایت
gb: گیگابایت
kb: کیلوبایت
mb: مگابایت
tb: ترابایت
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " و "
two_words_connector: " و "
words_connector: "، "
time:
am: قبل از ظهر
formats:
default: "%A، %e %B %Y، ساعت %H:%M:%S (%Z)"
long: "%e %B %Y، ساعت %H:%M"
short: "%e %B، ساعت %H:%M"
pm: بعد از ظهر

View File

@@ -0,0 +1,211 @@
---
fi:
activerecord:
errors:
messages:
record_invalid: 'Validointi epäonnistui: %{errors}'
restrict_dependent_destroy:
has_many: Ei voida poistaa mallia koska tästä riippuvaisia %{record} löytyy
has_one: Ei voida poistaa mallia koska tästä riippuvainen %{record} löytyy
date:
abbr_day_names:
- su
- ma
- ti
- ke
- to
- pe
- la
abbr_month_names:
-
- tammi
- helmi
- maalis
- huhti
- touko
- kesä
- heinä
- elo
- syys
- loka
- marras
- joulu
day_names:
- sunnuntai
- maanantai
- tiistai
- keskiviikko
- torstai
- perjantai
- lauantai
formats:
default: "%-d.%-m.%Y"
long: "%d. %Bta %Y"
short: "%d. %b"
month_names:
-
- tammikuu
- helmikuu
- maaliskuu
- huhtikuu
- toukokuu
- kesäkuu
- heinäkuu
- elokuu
- syyskuu
- lokakuu
- marraskuu
- joulukuu
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: noin tunti
other: noin %{count} tuntia
about_x_months:
one: noin kuukausi
other: noin %{count} kuukautta
about_x_years:
one: vuosi
other: noin %{count} vuotta
almost_x_years:
one: melkein yksi vuosi
other: melkein %{count} vuotta
half_a_minute: puoli minuuttia
less_than_x_minutes:
one: alle minuutti
other: alle %{count} minuuttia
less_than_x_seconds:
one: alle sekunti
other: alle %{count} sekuntia
over_x_years:
one: yli vuosi
other: yli %{count} vuotta
x_days:
one: päivä
other: "%{count} päivää"
x_minutes:
one: minuutti
other: "%{count} minuuttia"
x_months:
one: kuukausi
other: "%{count} kuukautta"
x_seconds:
one: sekunti
other: "%{count} sekuntia"
x_years:
one: vuosi
other: "%{count} vuotta"
prompts:
day: Päivä
hour: Tunti
minute: Minuutti
month: Kuukausi
second: Sekunti
year: Vuosi
errors:
format: "%{attribute} %{message}"
messages:
accepted: täytyy olla hyväksytty
blank: ei voi olla tyhjä
confirmation: ei vastaa varmennusta
empty: ei voi olla tyhjä
equal_to: täytyy olla yhtä suuri kuin %{count}
even: täytyy olla parillinen
exclusion: on varattu
greater_than: täytyy olla suurempi kuin %{count}
greater_than_or_equal_to: täytyy olla suurempi tai yhtä suuri kuin %{count}
inclusion: ei löydy listasta
invalid: on virheellinen
less_than: täytyy olla pienempi kuin %{count}
less_than_or_equal_to: täytyy olla pienempi tai yhtä suuri kuin %{count}
model_invalid: 'Validointi epäonnistui: %{errors}'
not_a_number: ei ole luku
not_an_integer: täytyy olla kokonaisluku
odd: täytyy olla pariton
present: täytyy olla sisällötön
required: täytyy olla
taken: on jo käytössä
too_long:
one: on liian pitkä (saa olla enintään %{count} merkki)
other: on liian pitkä (saa olla enintään %{count} merkkiä)
too_short:
one: on liian lyhyt (oltava vähintään %{count} merkki)
other: on liian lyhyt (oltava vähintään %{count} merkkiä)
wrong_length:
one: on väärän pituinen (täytyy olla täsmälleen %{count} merkki)
other: on väärän pituinen (täytyy olla täsmälleen %{count} merkkiä)
template:
body: 'Seuraavat kentät aiheuttivat ongelmia:'
header:
one: Virhe syötteessä esti mallin %{model} tallentamisen
other: "%{count} virhettä esti mallin %{model} tallentamisen"
helpers:
select:
prompt: Valitse
submit:
create: Luo %{model}
submit: Tallenna %{model}
update: Päivitä %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: " "
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: miljardia
million: miljoonaa
quadrillion: tuhatta biljoonaa
thousand: tuhatta
trillion: biljoonaa
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: tavu
other: tavua
gb: Gt
kb: kt
mb: Mt
tb: Tt
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " ja "
two_words_connector: " ja "
words_connector: ", "
time:
am: aamupäivä
formats:
default: "%A %e. %Bta %Y %H:%M:%S %z"
long: "%e. %Bta %Y %H.%M"
short: "%e.%m. %H.%M"
pm: iltapäivä

View File

@@ -0,0 +1,221 @@
---
fr-CA:
activerecord:
errors:
messages:
record_invalid: 'La validation a échoué : %{errors}'
restrict_dependent_destroy:
has_many: Vous ne pouvez pas supprimer l'enregistrement parce que les %{record}
dépendants existent
has_one: Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record}
dépendant(e) existe
date:
abbr_day_names:
- dim
- lun
- mar
- mer
- jeu
- ven
- sam
abbr_month_names:
-
- jan.
- fév.
- mars
- avr.
- mai
- juin
- juil.
- août
- sept.
- oct.
- nov.
- déc.
day_names:
- dimanche
- lundi
- mardi
- mercredi
- jeudi
- vendredi
- samedi
formats:
default: "%Y-%m-%d"
long: "%d %B %Y"
short: "%y-%m-%d"
month_names:
-
- janvier
- février
- mars
- avril
- mai
- juin
- juillet
- août
- septembre
- octobre
- novembre
- décembre
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: environ une heure
other: environ %{count} heures
about_x_months:
one: environ un mois
other: environ %{count} mois
about_x_years:
one: environ un an
other: environ %{count} ans
almost_x_years:
one: presque un an
other: presque %{count} ans
half_a_minute: une demi-minute
less_than_x_minutes:
one: moins d'une minute
other: moins de %{count} minutes
zero: moins d'une minute
less_than_x_seconds:
one: moins d'une seconde
other: moins de %{count} secondes
zero: moins d'une seconde
over_x_years:
one: plus d'un an
other: plus de %{count} ans
x_days:
one: "%{count} jour"
other: "%{count} jours"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} mois"
other: "%{count} mois"
x_seconds:
one: "%{count} seconde"
other: "%{count} secondes"
x_years:
one: "%{count} an"
other: "%{count} ans"
prompts:
day: Jour
hour: Heure
minute: Minute
month: Mois
second: Seconde
year: Année
errors:
format: "%{attribute} %{message}"
messages:
accepted: doit être accepté(e)
blank: doit être rempli(e)
confirmation: ne concorde pas avec %{attribute}
empty: doit être rempli(e)
equal_to: doit être égal à %{count}
even: doit être pair
exclusion: n'est pas disponible
greater_than: doit être supérieur à %{count}
greater_than_or_equal_to: doit être supérieur ou égal à %{count}
in: doit être dans l'intervalle %{count}
inclusion: n'est pas inclus(e) dans la liste
invalid: n'est pas valide
less_than: doit être inférieur à %{count}
less_than_or_equal_to: doit être inférieur ou égal à %{count}
model_invalid: 'Validation échouée : %{errors}'
not_a_number: n'est pas un nombre
not_an_integer: doit être un nombre entier
odd: doit être impair
other_than: doit être différent de %{count}
present: doit être vide
required: doit exister
taken: n'est pas disponible
too_long:
one: est trop long (pas plus d'un caractère)
other: est trop long (pas plus de %{count} caractères)
too_short:
one: est trop court (au moins un caractère)
other: est trop court (au moins %{count} caractères)
wrong_length:
one: ne fait pas la bonne longueur (doit comporter un seul caractère)
other: ne fait pas la bonne longueur (doit comporter %{count} caractères)
template:
body: 'Veuillez vérifier les champs suivants : '
header:
one: 'Impossible d''enregistrer ce(tte) %{model} : %{count} erreur'
other: 'Impossible d''enregistrer ce(tte) %{model} : %{count} erreurs'
helpers:
select:
prompt: Veuillez sélectionner
submit:
create: Créer un(e) %{model}
submit: Enregistrer ce(tte) %{model}
update: Modifier ce(tte) %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: " "
precision: 3
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: milliard
million: million
quadrillion: million de milliards
thousand: millier
trillion: billion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: octet
other: octets
eb: Eo
gb: Go
kb: ko
mb: Mo
pb: Po
tb: To
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " et "
two_words_connector: " et "
words_connector: ", "
time:
am: am
formats:
default: "%d %B %Y %H h %M min %S s"
long: "%A %d %B %Y %H h %M"
short: "%d %b %H h %M"
pm: pm

View File

@@ -0,0 +1,221 @@
---
fr-CH:
activerecord:
errors:
messages:
record_invalid: 'La validation a échoué : %{errors}'
restrict_dependent_destroy:
has_many: Vous ne pouvez pas supprimer l'enregistrement parce que les %{record}
dépendants existent
has_one: Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record}
dépendant(e) existe
date:
abbr_day_names:
- dim
- lun
- mar
- mer
- jeu
- ven
- sam
abbr_month_names:
-
- jan.
- fév.
- mars
- avr.
- mai
- juin
- juil.
- août
- sept.
- oct.
- nov.
- déc.
day_names:
- dimanche
- lundi
- mardi
- mercredi
- jeudi
- vendredi
- samedi
formats:
default: "%d.%m.%Y"
long: "%-d %B %Y"
short: "%-d %b"
month_names:
-
- janvier
- février
- mars
- avril
- mai
- juin
- juillet
- août
- septembre
- octobre
- novembre
- décembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: environ une heure
other: environ %{count} heures
about_x_months:
one: environ un mois
other: environ %{count} mois
about_x_years:
one: environ un an
other: environ %{count} ans
almost_x_years:
one: presque un an
other: presque %{count} ans
half_a_minute: une demi-minute
less_than_x_minutes:
one: moins d'une minute
other: moins de %{count} minutes
zero: moins d'une minute
less_than_x_seconds:
one: moins d'une seconde
other: moins de %{count} secondes
zero: moins d'une seconde
over_x_years:
one: plus d'un an
other: plus de %{count} ans
x_days:
one: "%{count} jour"
other: "%{count} jours"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} mois"
other: "%{count} mois"
x_seconds:
one: "%{count} seconde"
other: "%{count} secondes"
x_years:
one: "%{count} an"
other: "%{count} ans"
prompts:
day: Jour
hour: Heure
minute: Minute
month: Mois
second: Seconde
year: Année
errors:
format: "%{attribute} %{message}"
messages:
accepted: doit être accepté(e)
blank: doit être rempli(e)
confirmation: ne concorde pas avec %{attribute}
empty: doit être rempli(e)
equal_to: doit être égal à %{count}
even: doit être pair
exclusion: n'est pas disponible
greater_than: doit être supérieur à %{count}
greater_than_or_equal_to: doit être supérieur ou égal à %{count}
in: doit être dans l'intervalle %{count}
inclusion: n'est pas inclus(e) dans la liste
invalid: n'est pas valide
less_than: doit être inférieur à %{count}
less_than_or_equal_to: doit être inférieur ou égal à %{count}
model_invalid: 'Validation échouée : %{errors}'
not_a_number: n'est pas un nombre
not_an_integer: doit être un nombre entier
odd: doit être impair
other_than: doit être différent de %{count}
present: doit être vide
required: doit exister
taken: n'est pas disponible
too_long:
one: est trop long (pas plus d'un caractère)
other: est trop long (pas plus de %{count} caractères)
too_short:
one: est trop court (au moins un caractère)
other: est trop court (au moins %{count} caractères)
wrong_length:
one: ne fait pas la bonne longueur (doit comporter un seul caractère)
other: ne fait pas la bonne longueur (doit comporter %{count} caractères)
template:
body: 'Veuillez vérifier les champs suivants : '
header:
one: 'Impossible d''enregistrer ce(tte) %{model} : %{count} erreur'
other: 'Impossible d''enregistrer ce(tte) %{model} : %{count} erreurs'
helpers:
select:
prompt: Veuillez sélectionner
submit:
create: Créer un(e) %{model}
submit: Enregistrer ce(tte) %{model}
update: Modifier ce(tte) %{model}
number:
currency:
format:
delimiter: "'"
format: "%n %u"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: sFr.
format:
delimiter: "'"
precision: 3
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: milliard
million: million
quadrillion: million de milliards
thousand: millier
trillion: billion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: octet
other: octets
eb: Eo
gb: Go
kb: ko
mb: Mo
pb: Po
tb: To
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " et "
two_words_connector: " et "
words_connector: ", "
time:
am: am
formats:
default: "%d. %B %Y %H h %M"
long: "%A, %d %B %Y %H h %M min %S s %Z"
short: "%d %b %H h %M"
pm: pm

View File

@@ -0,0 +1,221 @@
---
fr-FR:
activerecord:
errors:
messages:
record_invalid: 'La validation a échoué : %{errors}'
restrict_dependent_destroy:
has_many: Vous ne pouvez pas supprimer l'enregistrement parce que les %{record}
dépendants existent
has_one: Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record}
dépendant(e) existe
date:
abbr_day_names:
- dim
- lun
- mar
- mer
- jeu
- ven
- sam
abbr_month_names:
-
- jan.
- fév.
- mars
- avr.
- mai
- juin
- juil.
- août
- sept.
- oct.
- nov.
- déc.
day_names:
- dimanche
- lundi
- mardi
- mercredi
- jeudi
- vendredi
- samedi
formats:
default: "%d/%m/%Y"
long: "%-d %B %Y"
short: "%-d %b"
month_names:
-
- janvier
- février
- mars
- avril
- mai
- juin
- juillet
- août
- septembre
- octobre
- novembre
- décembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: environ une heure
other: environ %{count} heures
about_x_months:
one: environ un mois
other: environ %{count} mois
about_x_years:
one: environ un an
other: environ %{count} ans
almost_x_years:
one: presque un an
other: presque %{count} ans
half_a_minute: une demi-minute
less_than_x_minutes:
one: moins d'une minute
other: moins de %{count} minutes
zero: moins d'une minute
less_than_x_seconds:
one: moins d'une seconde
other: moins de %{count} secondes
zero: moins d'une seconde
over_x_years:
one: plus d'un an
other: plus de %{count} ans
x_days:
one: "%{count} jour"
other: "%{count} jours"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} mois"
other: "%{count} mois"
x_seconds:
one: "%{count} seconde"
other: "%{count} secondes"
x_years:
one: "%{count} an"
other: "%{count} ans"
prompts:
day: Jour
hour: Heure
minute: Minute
month: Mois
second: Seconde
year: Année
errors:
format: "%{attribute} %{message}"
messages:
accepted: doit être accepté(e)
blank: doit être rempli(e)
confirmation: ne concorde pas avec %{attribute}
empty: doit être rempli(e)
equal_to: doit être égal à %{count}
even: doit être pair
exclusion: n'est pas disponible
greater_than: doit être supérieur à %{count}
greater_than_or_equal_to: doit être supérieur ou égal à %{count}
in: doit être dans l'intervalle %{count}
inclusion: n'est pas inclus(e) dans la liste
invalid: n'est pas valide
less_than: doit être inférieur à %{count}
less_than_or_equal_to: doit être inférieur ou égal à %{count}
model_invalid: 'Validation échouée : %{errors}'
not_a_number: n'est pas un nombre
not_an_integer: doit être un nombre entier
odd: doit être impair
other_than: doit être différent de %{count}
present: doit être vide
required: doit exister
taken: n'est pas disponible
too_long:
one: est trop long (pas plus d'un caractère)
other: est trop long (pas plus de %{count} caractères)
too_short:
one: est trop court (au moins un caractère)
other: est trop court (au moins %{count} caractères)
wrong_length:
one: ne fait pas la bonne longueur (doit comporter un seul caractère)
other: ne fait pas la bonne longueur (doit comporter %{count} caractères)
template:
body: 'Veuillez vérifier les champs suivants : '
header:
one: 'Impossible d''enregistrer ce(tte) %{model} : %{count} erreur'
other: 'Impossible d''enregistrer ce(tte) %{model} : %{count} erreurs'
helpers:
select:
prompt: Veuillez sélectionner
submit:
create: Créer un(e) %{model}
submit: Enregistrer ce(tte) %{model}
update: Modifier ce(tte) %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: " "
precision: 3
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: milliard
million: million
quadrillion: million de milliards
thousand: millier
trillion: billion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: octet
other: octets
eb: Eo
gb: Go
kb: ko
mb: Mo
pb: Po
tb: To
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " et "
two_words_connector: " et "
words_connector: ", "
time:
am: am
formats:
default: "%d %B %Y %Hh %Mmin %Ss"
long: "%A %d %B %Y %Hh%M"
short: "%d %b %Hh%M"
pm: pm

View File

@@ -0,0 +1,221 @@
---
fr:
activerecord:
errors:
messages:
record_invalid: 'La validation a échoué : %{errors}'
restrict_dependent_destroy:
has_many: Vous ne pouvez pas supprimer l'enregistrement parce que les %{record}
dépendants existent
has_one: Vous ne pouvez pas supprimer l'enregistrement car un(e) %{record}
dépendant(e) existe
date:
abbr_day_names:
- dim
- lun
- mar
- mer
- jeu
- ven
- sam
abbr_month_names:
-
- jan.
- fév.
- mars
- avr.
- mai
- juin
- juil.
- août
- sept.
- oct.
- nov.
- déc.
day_names:
- dimanche
- lundi
- mardi
- mercredi
- jeudi
- vendredi
- samedi
formats:
default: "%d/%m/%Y"
long: "%-d %B %Y"
short: "%-d %b"
month_names:
-
- janvier
- février
- mars
- avril
- mai
- juin
- juillet
- août
- septembre
- octobre
- novembre
- décembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: environ une heure
other: environ %{count} heures
about_x_months:
one: environ un mois
other: environ %{count} mois
about_x_years:
one: environ un an
other: environ %{count} ans
almost_x_years:
one: presque un an
other: presque %{count} ans
half_a_minute: une demiminute
less_than_x_minutes:
one: moins d'une minute
other: moins de %{count} minutes
zero: moins d'une minute
less_than_x_seconds:
one: moins d'une seconde
other: moins de %{count} secondes
zero: moins d'une seconde
over_x_years:
one: plus d'un an
other: plus de %{count} ans
x_days:
one: "%{count} jour"
other: "%{count} jours"
x_minutes:
one: "%{count} minute"
other: "%{count} minutes"
x_months:
one: "%{count} mois"
other: "%{count} mois"
x_seconds:
one: "%{count} seconde"
other: "%{count} secondes"
x_years:
one: "%{count} an"
other: "%{count} ans"
prompts:
day: Jour
hour: Heure
minute: Minute
month: Mois
second: Seconde
year: Année
errors:
format: "%{attribute} %{message}"
messages:
accepted: doit être accepté(e)
blank: doit être rempli(e)
confirmation: ne concorde pas avec %{attribute}
empty: doit être rempli(e)
equal_to: doit être égal à %{count}
even: doit être pair
exclusion: n'est pas disponible
greater_than: doit être supérieur à %{count}
greater_than_or_equal_to: doit être supérieur ou égal à %{count}
in: doit être dans l'intervalle %{count}
inclusion: n'est pas inclus(e) dans la liste
invalid: n'est pas valide
less_than: doit être inférieur à %{count}
less_than_or_equal_to: doit être inférieur ou égal à %{count}
model_invalid: 'Validation échouée : %{errors}'
not_a_number: n'est pas un nombre
not_an_integer: doit être un nombre entier
odd: doit être impair
other_than: doit être différent de %{count}
present: doit être vide
required: doit exister
taken: est déjà utilisé(e)
too_long:
one: est trop long (pas plus d'un caractère)
other: est trop long (pas plus de %{count} caractères)
too_short:
one: est trop court (au moins un caractère)
other: est trop court (au moins %{count} caractères)
wrong_length:
one: ne fait pas la bonne longueur (doit comporter un seul caractère)
other: ne fait pas la bonne longueur (doit comporter %{count} caractères)
template:
body: 'Veuillez vérifier les champs suivants : '
header:
one: 'Impossible d''enregistrer ce(tte) %{model} : %{count} erreur'
other: 'Impossible d''enregistrer ce(tte) %{model} : %{count} erreurs'
helpers:
select:
prompt: Veuillez sélectionner
submit:
create: Créer un(e) %{model}
submit: Enregistrer ce(tte) %{model}
update: Modifier ce(tte) %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: " "
precision: 3
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: milliard
million: million
quadrillion: million de milliards
thousand: millier
trillion: billion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: octet
other: octets
eb: Eo
gb: Go
kb: ko
mb: Mo
pb: Po
tb: To
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " et "
two_words_connector: " et "
words_connector: ", "
time:
am: am
formats:
default: "%d %B %Y %Hh %Mmin %Ss"
long: "%A %d %B %Y %Hh%M"
short: "%d %b %Hh%M"
pm: pm

View File

@@ -0,0 +1,216 @@
---
fy:
activerecord:
errors:
messages:
record_invalid: 'Falidaasje mislearre: %{errors}'
restrict_dependent_destroy:
has_many: Kin de registraasje net wiskje om't der %{record} ôfhinklik binne
has_one: Kin de registraasje net wiskje om't der in %{record} ôfhinklik
is
date:
abbr_day_names:
- si
- mo
- ti
- wo
- to
- fr
- so
abbr_month_names:
-
- jan
- feb
- mrt
- apr
- mai
- jun
- jul
- aug
- sep
- okt
- nov
- des
day_names:
- snein
- moandei
- tiisdei
- woansdei
- tongersdei
- freed
- sneon
formats:
default: "%d-%m-%Y"
long: "%e %B %Y"
short: "%e %b"
month_names:
-
- jannewaris
- febrewaris
- maart
- april
- maaie
- juny
- july
- augustus
- septimber
- oktober
- novimber
- desimber
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: likernôch 1 oere
other: likernôch %{count} oeren
about_x_months:
one: likernôch 1 moanne
other: likernôch %{count} moannen
about_x_years:
one: likernôch 1 jier
other: likernôch %{count} jier
almost_x_years:
one: hast 1 jier
other: hast %{count} jier
half_a_minute: in heale minút
less_than_x_minutes:
one: minder as in minút
other: minder as %{count} minuten
less_than_x_seconds:
one: minder as 1 sekonde
other: minder as %{count} sekonden
over_x_years:
one: mear as 1 jier
other: mear as %{count} jier
x_days:
one: 1 dei
other: "%{count} dagen"
x_minutes:
one: 1 minút
other: "%{count} minuten"
x_months:
one: 1 moanne
other: "%{count} moannen"
x_seconds:
one: 1 sekonde
other: "%{count} sekonden"
x_years:
one: 1 jier
other: "%{count} jier"
prompts:
day: dei
hour: oere
minute: minút
month: moanne
second: sekonde
year: jier
errors:
format: "%{attribute} %{message}"
messages:
accepted: moat akseptearre wurde
blank: kin net blanko wêze
confirmation: komt net oerien mei %{attribute}
empty: kin net leech wêze
equal_to: moat lyk wêze oan %{count}
even: moat even wêze
exclusion: is reservearre
greater_than: moat grutter wêze as %{count}
greater_than_or_equal_to: moat grutter wêze as, of lyk oan %{count}
inclusion: stiet net yn 'e list
invalid: is ûnjildich
less_than: moat lytser wêze as %{count}
less_than_or_equal_to: moat lytser wêze as, of lyk oan %{count}
model_invalid: 'Falidaasje mislearre: %{errors}'
not_a_number: is gjin getal
not_an_integer: moat in hiel getal wêze
odd: moat ûneven wêze
other_than: moat oars wêze as %{count}
present: moat blanko wêze
required: moat der wêze
taken: is al ynnommen
too_long:
one: is te lang (maksimum is 1 teken)
other: is te lang (maksimum is %{count} tekens)
too_short:
one: is te koart (minimum is 1 teken)
other: is te koart (minimum is %{count} tekens)
wrong_length:
one: hat de ferkearde lingte (moat 1 teken wêze)
other: hat de ferkearde lingte (moat %{count} tekens wêze)
template:
body: 'Der binne problemen mei de neikommende fjilden:'
header:
one: 1 flater behinderet it fêstlizzen fan %{model}
other: "%{count} flaters behinderje it fêstlizzen fan %{model}"
helpers:
select:
prompt: Meitsje in kar
submit:
create: "%{model} oanmeitsje"
submit: "%{model} fêstlizze"
update: "%{model} bywurkje"
number:
currency:
format:
delimiter: "."
format: "%u %n"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: miljard
million: miljoen
quadrillion: biljard
thousand: tûzen
trillion: biljoen
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: byte
other: bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " en "
two_words_connector: " en "
words_connector: ", "
time:
am: fm.
formats:
default: "%a %e %b %Y %H.%M:%S %z"
long: "%e %B %Y om %H.%M oere"
short: "%e %b, %H.%M o."
pm: nm.

View File

@@ -0,0 +1,256 @@
---
gd:
activerecord:
errors:
messages:
record_invalid: 'Dhfhàillig leis an dearbhadh: %{errors}'
restrict_dependent_destroy:
has_many: Cha b urrainn dhuinn an reacord a sguabadh às on a tha %{record}
ann a tha an eisimeil air
has_one: Cha b urrainn dhuinn an reacord a sguabadh às on a tha %{record}
ann a tha an eisimeil air
date:
abbr_day_names:
- DiD
- DiL
- DiM
- DiC
- Dia
- Dih
- DiS
abbr_month_names:
-
- Faoi
- Gearr
- Màrt
- Gibl
- Cèit
- Ògmh
- Iuch
- Lùna
- Sult
- Dàmh
- Samh
- Dùbh
day_names:
- DiDòmhnaich
- DiLuain
- DiMàirt
- DiCiadain
- DiarDaoin
- DihAoine
- DiSathairne
formats:
default: "%Y-%m-%d"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- Am Faoilleach
- An Gearran
- Am Màrt
- An Giblean
- An Cèitean
- An t-Ògmhios
- An t-Iuchar
- An Lùnastal
- An t-Sultain
- An Dàmhair
- An t-Samhain
- An Dùbhlachd
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
few: mu %{count} uairean a thìde
one: mu %{count} uair a thìde
other: mu %{count} uair a thìde
two: mu %{count} uair a thìde
about_x_months:
few: mu %{count} mìosan
one: mu %{count} mhìos
other: mu %{count} mìos
two: mu %{count} mhìos
about_x_years:
few: mu %{count} bliadhnaichean
one: mu %{count} bhliadhna
other: mu %{count} bliadhna
two: mu %{count} bhliadhna
almost_x_years:
few: cha mhòr %{count} bliadhnaichean
one: cha mhòr %{count} bhliadhna
other: cha mhòr %{count} bliadhna
two: cha mhòr %{count} bhliadhna
half_a_minute: leth-mhionaid
less_than_x_minutes:
few: nas lugha na %{count} mionaidean
one: nas lugha na mionaid
other: nas lugha na %{count} mionaid
two: nas lugha na %{count} mhionaid
less_than_x_seconds:
few: nas lugha na %{count} diogan
one: nas lugha na %{count} diog
other: nas lugha na %{count} diog
two: nas lugha na %{count} dhiog
over_x_years:
few: còrr is %{count} bliadhnaichean
one: còrr is %{count} bhliadhna
other: còrr is %{count} bliadhna
two: còrr is %{count} bhliadhna
x_days:
few: "%{count} làithean"
one: "%{count} latha"
other: "%{count} latha"
two: "%{count} latha"
x_minutes:
few: "%{count} mionaidean"
one: "%{count} mhionaid"
other: "%{count} mionaid"
two: "%{count} mhionaid"
x_months:
few: "%{count} mìosan"
one: "%{count} mhìos"
other: "%{count} mìos"
two: "%{count} mhìos"
x_seconds:
few: "%{count} diogan"
one: "%{count} diog"
other: "%{count} diog"
two: "%{count} dhiog"
x_years:
few: "%{count} bliadhnaichean"
one: "%{count} bhliadhna"
other: "%{count} bliadhna"
two: "%{count} bhliadhna"
prompts:
day: Latha
hour: Uair a thìde
minute: Mionaid
month: Mìos
second: Diog
year: Bliadhna
errors:
format: "%{attribute}: %{message}"
messages:
accepted: feumach air aontachadh
blank: chan fhaod seo a bhith bàn
confirmation: chan eil e na mhaids dha %{attribute}
empty: chan fhaod seo a bhith falamh
equal_to: feumaidh seo a bhith co-ionnan ri %{count}
even: feumaidh seo a bhith na àireamh chothrom
exclusion: tha seo glèidhte
greater_than: feumaidh seo a bhith nas motha na %{count}
greater_than_or_equal_to: feumaidh seo a bhith nas motha na no co-ionann ri
%{count}
in: feumaidh seo a bhith am broinn %{count}
inclusion: chan eil seo am broinn na liosta
invalid: chan eil seo dligheach
less_than: feumaidh seo a bhith nas lugha na %{count}
less_than_or_equal_to: feumaidh seo a bhith nas lugha na no co-ionann ri %{count}
model_invalid: 'Dhfhàillig leis an dearbhadh: %{errors}'
not_a_number: chan eil seo na àireamh
not_an_integer: feumaidh seo a bhith na àireamh shlàn
odd: feumaidh seo a bhith na àireamh chòrr
other_than: chan fhaod seo a bhith %{count}
present: feumaidh seo a bhith bàn
required: feumaidh seo a bhith ann
taken: tha seo aig rud eile mu thràth
too_long:
few: tha seo ro fhada (tha %{count} caractaran ceadaichte air a char as motha)
one: tha seo ro fhada (tha %{count} charactar ceadaichte air a char as motha)
other: tha seo ro fhada (tha %{count} caractar ceadaichte air a char as motha)
two: tha seo ro fhada (tha %{count} charactar ceadaichte air a char as motha)
too_short:
few: tha seo ro ghoirid (tha %{count} caractaran ceadaichte air a char as
lugha)
one: tha seo ro ghoirid (tha %{count} charactar ceadaichte air a char as lugha)
other: tha seo ro ghoirid (tha %{count} caractar ceadaichte air a char as
lugha)
two: tha seo ro ghoirid (tha %{count} charactar ceadaichte air a char as lugha)
wrong_length:
few: chan eil an fhaide mar bu chòir (bu chòir dha a bhith %{count} caractaran)
one: chan eil an fhaide mar bu chòir (bu chòir dha a bhith %{count} charactar)
other: chan eil an fhaide mar bu chòir (bu chòir dha a bhith %{count} caractar)
two: chan eil an fhaide mar bu chòir (bu chòir dha a bhith %{count} charactar)
template:
body: 'Bha duilgheadasan ann leis na raointean seo:'
header:
few: Dhadhbharaich %{count} mearachdan nach gabh a %{model} seo a shàbhaladh
one: Dhadhbharaich %{count} mhearachd nach gabh a %{model} seo a shàbhaladh
other: Dhadhbharaich %{count} mearachd nach gabh a %{model} seo a shàbhaladh
two: Dhadhbharaich %{count} mhearachd nach gabh a %{model} seo a shàbhaladh
helpers:
select:
prompt: Tagh
submit:
create: Cruthaich %{model}
submit: Sàbhail %{model}
update: Ùraich %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "£"
format:
delimiter: ","
precision: 3
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: billean
million: millean
quadrillion: quadrillean
thousand: mìle
trillion: trillean
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
few: baidhtean
one: bhaidht
other: baidht
two: bhaidht
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " agus "
two_words_connector: " agus "
words_connector: ", "
time:
am: m
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %b %Y, %H:%M"
short: "%d %b %H:%M"
pm: f

View File

@@ -0,0 +1,172 @@
---
gl:
date:
abbr_day_names:
- Dom
- Lun
- Mar
- Mer
- Xov
- Ven
- Sab
abbr_month_names:
-
- Xan
- Feb
- Mar
- Abr
- Mai
- Xuñ
- Xul
- Ago
- Set
- Out
- Nov
- Dec
day_names:
- Domingo
- Luns
- Martes
- Mércores
- Xoves
- Venres
- Sábado
formats:
default: "%e/%m/%Y"
long: "%A %e de %B de %Y"
short: "%e %b"
month_names:
-
- Xaneiro
- Febreiro
- Marzo
- Abril
- Maio
- Xuño
- Xullo
- Agosto
- Setembro
- Outubro
- Novembro
- Decembro
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: aproximadamente unha hora
other: "%{count} horas"
about_x_months:
one: aproximadamente %{count} mes
other: "%{count} meses"
about_x_years:
one: aproximadamente %{count} ano
other: "%{count} anos"
half_a_minute: medio minuto
less_than_x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
zero: menos dun minuto
less_than_x_seconds:
few: poucos segundos
one: "%{count} segundo"
other: "%{count} segundos"
zero: menos dun segundo
over_x_years:
one: máis dun ano
other: "%{count} anos"
x_days:
one: "%{count} día"
other: "%{count} días"
x_minutes:
one: "%{count} minuto"
other: "%{count} minuto"
x_months:
one: "%{count} mes"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
errors:
format: "%{attribute} %{message}"
messages:
accepted: debe ser aceptado
blank: non pode estar en branco
confirmation: non coincide coa confirmación
empty: non pode estar baleiro
equal_to: debe ser igual a %{count}
even: debe ser impar
exclusion: xa existe
greater_than: debe ser maior que %{count}
greater_than_or_equal_to: debe ser maior ou igual que %{count}
inclusion: non está incluído na lista
invalid: non é válido
less_than: debe ser menor que %{count}
less_than_or_equal_to: debe ser menor ou igual que %{count}
not_a_number: non é un número
odd: debe ser par
taken: non está dispoñible
too_long: é demasiado longo (non máis de %{count} carácteres)
too_short: é demasiado curto (non menos de %{count} carácteres)
wrong_length: non ten a lonxitude correcta (debe ser de %{count} carácteres)
template:
body: 'Atopáronse os seguintes problemas:'
header:
one: "%{count} erro evitou que se puidese gardar o %{model}"
other: "%{count} erros evitaron que se puidese gardar o %{model}"
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " e "
two_words_connector: " e "
words_connector: ", "
time:
am: am
formats:
default: "%A, %e de %B de %Y ás %H:%M"
long: "%A %e de %B de %Y ás %H:%M"
short: "%e/%m, %H:%M"
pm: pm

View File

@@ -0,0 +1,198 @@
---
he:
activerecord:
errors:
messages:
record_invalid: 'האימות נכשל: %{errors}'
date:
abbr_day_names:
- א
- ב
- ג
- ד
- ה
- ו
- ש
abbr_month_names:
-
- ינו
- פבר
- מרץ
- אפר
- מאי
- יונ
- יול
- אוג
- ספט
- אוק
- נוב
- דצמ
day_names:
- ראשון
- שני
- שלישי
- רביעי
- חמישי
- שישי
- שבת
formats:
default: "%d-%m-%Y"
long: "%e ב%B, %Y"
short: "%e %b"
month_names:
-
- ינואר
- פברואר
- מרץ
- אפריל
- מאי
- יוני
- יולי
- אוגוסט
- ספטמבר
- אוקטובר
- נובמבר
- דצמבר
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: בערך שעה אחת
other: בערך %{count} שעות
about_x_months:
one: בערך חודש אחד
other: בערך %{count} חודשים
about_x_years:
one: בערך שנה אחת
other: בערך %{count} שנים
almost_x_years:
one: כמעט שנה
other: כמעט %{count} שנים
half_a_minute: חצי דקה
less_than_x_minutes:
one: פחות מדקה אחת
other: פחות מ- %{count} דקות
zero: פחות מדקה אחת
less_than_x_seconds:
one: פחות משניה אחת
other: פחות מ- %{count} שניות
zero: פחות משניה אחת
over_x_years:
one: מעל שנה אחת
other: מעל %{count} שנים
x_days:
one: יום אחד
other: "%{count} ימים"
x_minutes:
one: דקה אחת
other: "%{count} דקות"
x_months:
one: חודש אחד
other: "%{count} חודשים"
x_seconds:
one: שניה אחת
other: "%{count} שניות"
prompts:
day: יום
hour: שעה
minute: דקה
month: חודש
second: שניות
year: שנה
errors:
format: "%{attribute} %{message}"
messages:
accepted: חייב באישור
blank: לא יכול להיות ריק
confirmation: לא תואם לאישורו
empty: לא יכול להיות ריק
equal_to: חייב להיות שווה ל- %{count}
even: חייב להיות זוגי
exclusion: לא זמין
greater_than: חייב להיות גדול מ- %{count}
greater_than_or_equal_to: חייב להיות גדול או שווה ל- %{count}
inclusion: לא נכלל ברשימה
invalid: לא תקין
less_than: חייב להיות קטן מ- %{count}
less_than_or_equal_to: חייב להיות קטן או שווה ל- %{count}
not_a_number: חייב להיות מספר
not_an_integer: חייב להיות מספר שלם
odd: חייב להיות אי זוגי
taken: כבר בשימוש
too_long: ארוך מדי (יותר מ- %{count} תווים)
too_short: קצר מדי (פחות מ- %{count} תווים)
wrong_length: לא באורך הנכון (חייב להיות %{count} תווים)
template:
body: 'אנא בדוק את השדות הבאים:'
header:
one: 'לא ניתן לשמור את ה%{model}: שגיאה אחת'
other: 'לא ניתן לשמור את ה%{model}: %{count} שגיאות.'
helpers:
select:
prompt: נא לבחור
submit:
create: יצירת %{model}
submit: שמור %{model}
update: עדכון %{model}
number:
currency:
format:
delimiter: ","
format: "%n %u"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "₪"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: מיליארד
million: מיליון
quadrillion: קודריליון
thousand: אלף
trillion: טריליון
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: בייט
other: בתים
gb: ג'יגה-בייט
kb: קילו-בייט
mb: מגה-בייט
tb: טרה-בייט
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " ו"
two_words_connector: " ו"
words_connector: ", "
time:
am: am
formats:
default: "%a %d %b %H:%M:%S %Z %Y"
long: "%d ב%B, %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,196 @@
---
hi-IN:
activerecord:
errors:
messages:
record_invalid: 'सत्यापन विफल: %{errors}'
date:
abbr_day_names:
- रवि
- सोम
- मंगल
- बुध
- गुरु
- शुक्र
- शनि
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- रविवार
- सोमवार
- मंगलवार
- बुधवार
- गुरुवार
- शुक्रवार
- शनिवार
formats:
default: "%d-%m-%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- जनवरी
- फरवरी
- मार्च
- अप्रैल
- मई
- जून
- जुलाई
- अगस्त
- सितंबर
- अक्टूबर
- नवंबर
- दिसंबर
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: लग - भग एक घंटा
other: लग - भग %{count} घंटा
about_x_months:
one: लग - भग %{count} महीना
other: लग - भग %{count} महीना
about_x_years:
one: लग - भग %{count} साल
other: लग - भग %{count} साल
almost_x_years:
one: लग - भग एक साल
other: लग - भग %{count} साल
half_a_minute: एक आधा मिनट
less_than_x_minutes:
one: एक मिनट से कम
other: "%{count} मिनट से कम"
less_than_x_seconds:
one: एक सेकंड से कम
other: "%{count} सेकंड से कम"
over_x_years:
one: एक साल के ऊपर
other: "%{count} साल के ऊपर"
x_days:
one: एक दिन
other: "%{count} दिन"
x_minutes:
one: एक मिनट
other: "%{count} मिनट"
x_months:
one: एक महीना
other: "%{count} महीना"
x_seconds:
one: एक सेकंड
other: "%{count} सेकंड"
prompts:
day: दिन
hour: घंटा
minute: क्षण
month: माह
second: सेकंड
year: वर्ष
errors:
format: "%{attribute} %{message}"
messages:
accepted: होना स्वीकार किया जाना आवश्यक
blank: खाली नहीं किया जा सकता
confirmation: पुष्टिकरण मेल नहीं खाता
empty: खाली नहीं किया जा सकता
equal_to: "%{count} के लिए बराबर होना चाहिए"
even: सम होना चाहिए
exclusion: आरक्षित है
greater_than: "%{count} से अधिक होना चाहिए"
greater_than_or_equal_to: "%{count} से बड़ा या बराबर होना आवश्यक है"
inclusion: सूची में शामिल नहीं है
invalid: अवैध है
less_than: "%{count} से कम होना चाहिए"
less_than_or_equal_to: "%{count} से कम या बराबर होना आवश्यक है"
not_a_number: कोई संख्या नहीं है
not_an_integer: एक पूर्णांक होना चाहिए
odd: विषम होना चाहिए
taken: पहले ही ले लिया गया है
too_long: बहुत लंबा है (अधिकतम %{count} अक्षरों है)
too_short: बहुत छोटा है (न्यूनतम %{count} अक्षरों है)
wrong_length: गलत लंबाई है (%{count} वर्ण वाले होने चाहिए)
template:
body: 'वहाँ निम्नलिखित क्षेत्रों के साथ समस्याओं रहे थे:'
header:
one: एक त्रुटि सहेजे जाने से इस %{model} को निषिद्ध
other: "%{count} त्रुटियों को सहेजे जाने से इस %{model} निषिद्ध"
helpers:
select:
prompt: कृपया चुनें
submit:
create: बनाएँ %{model}
submit: सहेजें %{model}
update: अद्यतन %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "₹"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: अरब
million: मिल्लिओंन
quadrillion: करोड़ शंख
thousand: हज़ार
trillion: खरब
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", और "
two_words_connector: " और "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,196 @@
---
hi:
activerecord:
errors:
messages:
record_invalid: 'सत्यापन विफल: %{errors}'
date:
abbr_day_names:
- रवि
- सोम
- मंगल
- बुध
- गुरु
- शुक्र
- शनि
abbr_month_names:
-
- जन
- फर
- मार्च
- अप्रै
- मई
- जून
- जुला
- अग
- सितं
- अक्टू
- नवं
- दिस
day_names:
- रविवार
- सोमवार
- मंगलवार
- बुधवार
- गुरुवार
- शुक्रवार
- शनिवार
formats:
default: "%d-%m-%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- जनवरी
- फरवरी
- मार्च
- अप्रैल
- मई
- जून
- जुलाई
- अगस्त
- सितंबर
- अक्टूबर
- नवंबर
- दिसंबर
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: लगभग एक घंटा
other: लगभग %{count} घंटा
about_x_months:
one: लगभग %{count} महीना
other: लगभग %{count} महीना
about_x_years:
one: लगभग %{count} साल
other: लगभग %{count} साल
almost_x_years:
one: लगभग एक साल
other: लगभग %{count} साल
half_a_minute: एक आधा मिनट
less_than_x_minutes:
one: एक मिनट से कम
other: "%{count} मिनट से कम"
less_than_x_seconds:
one: एक सेकेंड से कम
other: "%{count} सेकेंड से कम"
over_x_years:
one: एक साल के ऊपर
other: "%{count} साल से अधिक"
x_days:
one: एक दिन
other: "%{count} दिन"
x_minutes:
one: एक मिनट
other: "%{count} मिनट"
x_months:
one: एक महीना
other: "%{count} महीना"
x_seconds:
one: एक सेकेंड
other: "%{count} सेकेंड"
prompts:
day: दिन
hour: घंटा
minute: मिनट
month: माह
second: सेकेंड
year: वर्ष
errors:
format: "%{attribute} %{message}"
messages:
accepted: स्वीकार किया जाना जरूरी
blank: खाली नहीं रह सकता है
confirmation: पुष्टिकरण मेल नहीं खाता
empty: रिक्त नहीं रह सकता है
equal_to: "%{count} के लिए बराबर होना चाहिए"
even: सम होना चाहिए
exclusion: आरक्षित है
greater_than: "%{count} से अधिक होना चाहिए"
greater_than_or_equal_to: "%{count} से बड़ा या बराबर होना आवश्यक है"
inclusion: सूची में शामिल नहीं है
invalid: अवैध है
less_than: "%{count} से कम होना चाहिए"
less_than_or_equal_to: "%{count} से कम या बराबर होना आवश्यक है"
not_a_number: कोई संख्या नहीं है
not_an_integer: एक पूर्णांक होना चाहिए
odd: विसम होना चाहिए
taken: पहले ही ले लिया गया है
too_long: अत्यधिक लंबा है (अधिकतम %{count} वर्ण हैं)
too_short: अत्यधिक छोटा है (न्यूनतम %{count} वर्ण हैं)
wrong_length: गलत लंबाई है (%{count} वर्ण युक्त होना चाहिए)
template:
body: 'निम्नलिखित क्षेत्रों के साथ समस्या थी:'
header:
one: इस %{model} को सहेजे जाना एक त्रुटि के कारण नहीं हुआ
other: इस %{model} को सहेजे जाना %{count} त्रुटि के कारण नहीं हुआ
helpers:
select:
prompt: कृपया चुनें
submit:
create: "%{model} बनाएँ"
submit: "%{model} सौंपें"
update: "%{model} अद्यतन"
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "₹"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: अरब
million: दस करोड़
quadrillion: करोड़ शंख
thousand: हज़ार
trillion: खरब
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", और "
two_words_connector: " और "
words_connector: ", "
time:
am: पूर्वाह्न
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: अपराह्न

View File

@@ -0,0 +1,249 @@
---
hr:
activerecord:
errors:
messages:
record_invalid: 'Validacija nije uspjela: %{errors}'
restrict_dependent_destroy:
has_many: Nije moguće izbrisati zapis jer postoje ovisni %{record}
has_one: Nije moguće izbrisati zapis jer postoji ovisan %{record}
date:
abbr_day_names:
- ned.
- pon.
- uto.
- sri.
- čet.
- pet.
- sub.
abbr_month_names:
-
- sij.
- velj.
- ožu.
- tra.
- svi.
- lip.
- srp.
- kol.
- ruj.
- lis.
- stu.
- pro.
day_names:
- nedjelja
- ponedjeljak
- utorak
- srijeda
- četvrtak
- petak
- subota
formats:
default: "%d.%m.%Y."
long: "%e. %B %Y."
short: "%e.%-m."
month_names:
-
- siječnja
- veljače
- ožujka
- travnja
- svibnja
- lipnja
- srpnja
- kolovoza
- rujna
- listopada
- studenoga
- prosinca
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
few: oko %{count} sata
many: oko %{count} sati
one: oko %{count} sat
other: oko %{count} sati
about_x_months:
few: oko %{count} mjeseca
many: oko %{count} mjeseci
one: oko %{count} mjesec
other: oko %{count} mjeseci
about_x_years:
few: oko %{count} godine
many: oko %{count} godina
one: oko %{count} godine
other: oko %{count} godina
almost_x_years:
few: skoro %{count} godine
many: skoro %{count} godina
one: skoro %{count} godina
other: skoro %{count} godina
half_a_minute: pola minute
less_than_x_minutes:
few: manje od %{count} minute
many: manje od %{count} minuta
one: manje od %{count} minute
other: manje od %{count} minuta
less_than_x_seconds:
few: manje od %{count} sekunde
many: manje od %{count} sekundi
one: manje od %{count} sekunde
other: manje od %{count} sekundi
over_x_years:
few: preko %{count} godine
many: preko %{count} godina
one: preko %{count} godine
other: preko %{count} godina
x_days:
few: "%{count} dana"
many: "%{count} dana"
one: "%{count} dan"
other: "%{count} dana"
x_minutes:
few: "%{count} minute"
many: "%{count} minuta"
one: "%{count} minuta"
other: "%{count} minuta"
x_months:
few: "%{count} mjeseca"
many: "%{count} mjeseci"
one: "%{count} mjesec"
other: "%{count} mjeseci"
x_seconds:
few: "%{count} sekunde"
many: "%{count} sekundi"
one: "%{count} sekunda"
other: "%{count} sekundi"
x_years:
few: "%{count} godine"
many: "%{count} godina"
one: "%{count} godina"
other: "%{count} godina"
prompts:
day: Dan
hour: Sat
minute: Minuta
month: Mjesec
second: Sekunde
year: Godina
errors:
format: "%{attribute} %{message}"
messages:
accepted: mora biti prihvaćen
blank: ne smije biti prazan
confirmation: se ne slaže sa svojom potvrdom
empty: ne smije biti prazan
equal_to: mora biti jednak %{count}
even: mora biti paran
exclusion: je rezerviran
greater_than: mora biti veći od %{count}
greater_than_or_equal_to: mora biti veći ili jednak %{count}
inclusion: nije u listi
invalid: nije ispravan
less_than: mora biti manji od %{count}
less_than_or_equal_to: mora biti manji ili jednak %{count}
model_invalid: 'Validacija nije uspjela: %{errors}'
not_a_number: nije broj
not_an_integer: nije cijeli broj
odd: mora biti neparan
other_than: mora biti različit od %{count}
present: mora biti prazan
required: mora biti unesen
taken: je već zauzet
too_long:
few: je predugačak (maksimum je %{count} znaka)
many: je predugačak (maksimum je %{count} znakova)
one: je predugačak (maksimum je %{count} znak)
other: je predugačak (maksimum je %{count} znakova)
too_short:
few: je prekratak (minimum je %{count} znaka)
many: je prekratak (minimum je %{count} znakova)
one: je prekratak (minimum je %{count} znak)
other: je prekratak (minimum je %{count} znakova)
wrong_length:
few: nije odgovarajuće duljine (treba biti %{count} znaka)
many: nije odgovarajuće duljine (treba biti %{count} znakova)
one: nije odgovarajuće duljine (treba biti %{count} znak)
other: nije odgovarajuće duljine (treba biti %{count} znakova)
template:
body: 'Sljedeća polja su neispravno popunjena:'
header:
few: "%{count} greške su spriječile da se spremi %{model}"
many: "%{count} grešaka je spriječilo da se spremi %{model}"
one: "%{count} greška je spriječila da se spremi %{model}"
other: "%{count} grešaka je spriječilo da se spremi %{model}"
helpers:
select:
prompt: Izaberite
submit:
create: Stvori %{model}
submit: Spremi %{model}
update: Izmijeni %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: kn
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: milijarda
million: milijun
quadrillion: bilijarda
thousand: tisuća
trillion: bilijun
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
few: bajta
many: bajtova
one: bajt
other: bajtova
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " i "
two_words_connector: " i "
words_connector: ", "
time:
am: AM
formats:
default: "%d.%m.%Y. %H:%M:%S"
long: "%e. %B %Y. %H:%M"
short: "%e.%-m. %k:%M"
pm: PM

View File

@@ -0,0 +1,196 @@
---
hu:
activerecord:
errors:
messages:
record_invalid: Sikertelen validálás %{errors}
date:
abbr_day_names:
- v.
- h.
- k.
- sze.
- cs.
- p.
- szo.
abbr_month_names:
-
- jan.
- febr.
- márc.
- ápr.
- máj.
- jún.
- júl.
- aug.
- szept.
- okt.
- nov.
- dec.
day_names:
- vasárnap
- hétfő
- kedd
- szerda
- csütörtök
- péntek
- szombat
formats:
default: "%Y.%m.%d."
long: "%Y. %B %e."
short: "%b %e."
month_names:
-
- január
- február
- március
- április
- május
- június
- július
- augusztus
- szeptember
- október
- november
- december
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: kb. %{count} órája
other: kb. %{count} órája
about_x_months:
one: kb. %{count} hónapja
other: kb. %{count} hónapja
about_x_years:
one: kb. %{count} éve
other: kb. %{count} éve
almost_x_years:
one: majdnem %{count} éve
other: majdnem %{count} éve
half_a_minute: fél perce
less_than_x_minutes:
one: kevesebb, mint %{count} perce
other: kevesebb, mint %{count} perce
less_than_x_seconds:
one: kevesebb, mint %{count} másodperce
other: kevesebb, mint %{count} másodperce
over_x_years:
one: több, mint %{count} éve
other: több, mint %{count} éve
x_days:
one: "%{count} napja"
other: "%{count} napja"
x_minutes:
one: "%{count} perce"
other: "%{count} perce"
x_months:
one: "%{count} hónapja"
other: "%{count} hónapja"
x_seconds:
one: "%{count} másodperce"
other: "%{count} másodperce"
prompts:
day: Nap
hour: Óra
minute: Perc
month: Hónap
second: Másodperc
year: Év
errors:
format: "%{attribute} %{message}"
messages:
accepted: nincs elfogadva
blank: nincs megadva
confirmation: nem egyezik
empty: nincs megadva
equal_to: pontosan %{count} kell legyen
even: páros kell legyen
exclusion: nem elérhető
greater_than: nagyobb kell legyen, mint %{count}
greater_than_or_equal_to: legalább %{count} kell legyen
inclusion: nincs a listában
invalid: nem megfelelő
less_than: kevesebb, mint %{count} kell legyen
less_than_or_equal_to: legfeljebb %{count} lehet
not_a_number: nem szám
not_an_integer: egész számnak kell lennie
odd: páratlan kell legyen
taken: már foglalt
too_long: túl hosszú (nem lehet több %{count} karakternél)
too_short: túl rövid (legalább %{count} karakter kell legyen)
wrong_length: nem megfelelő hosszúságú (%{count} karakter szükséges)
template:
body: 'Problémás mezők:'
header:
one: "%{count} hiba miatt nem menthető a következő: %{model}"
other: "%{count} hiba miatt nem menthető a következő: %{model}"
helpers:
select:
prompt: Válasszon
submit:
create: Új %{model}
submit: "%{model} mentése"
update: "%{model} módosítása"
number:
currency:
format:
delimiter: ''
format: "%n %u"
precision: 0
separator: ","
significant: true
strip_insignificant_zeros: true
unit: Ft
format:
delimiter: " "
precision: 2
separator: ","
significant: true
strip_insignificant_zeros: true
human:
decimal_units:
format: "%n %u"
units:
billion: milliárd
million: millió
quadrillion: billiárd
thousand: ezer
trillion: billió
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: bájt
other: bájt
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " és "
two_words_connector: " és "
words_connector: ", "
time:
am: de.
formats:
default: "%Y. %b %e., %H:%M"
long: "%Y. %B %e., %A, %H:%M"
short: "%b %e., %H:%M"
pm: du.

View File

@@ -0,0 +1,213 @@
---
id:
activerecord:
errors:
messages:
record_invalid: 'Validasi gagal: %{errors}'
restrict_dependent_destroy:
has_many: Tidak bisa menghapus record karena terdapat %{record} yang bergantung
has_one: Tidak bisa menghapus record karena terdapat satu %{record} yang
bergantung
date:
abbr_day_names:
- Min
- Sen
- Sel
- Rab
- Kam
- Jum
- Sab
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- Mei
- Jun
- Jul
- Agu
- Sep
- Okt
- Nov
- Des
day_names:
- Minggu
- Senin
- Selasa
- Rabu
- Kamis
- Jumat
- Sabtu
formats:
default: "%d %B %Y"
long: "%A, %d %B %Y"
short: "%d.%m.%Y"
month_names:
-
- Januari
- Februari
- Maret
- April
- Mei
- Juni
- Juli
- Agustus
- September
- Oktober
- November
- Desember
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: sekitar satu jam
other: sekitar %{count} jam
about_x_months:
one: sekitar sebulan
other: sekitar %{count} bulan
about_x_years:
one: sekitar setahun
other: sekitar %{count} tahun
almost_x_years:
one: hampir setahun
other: hampir %{count} tahun
half_a_minute: setengah menit
less_than_x_minutes:
one: kurang dari %{count} menit
other: kurang dari %{count} menit
zero: kurang dari 1 menit
less_than_x_seconds:
one: kurang dari %{count} detik
other: kurang dari %{count} detik
zero: kurang dari 1 detik
over_x_years:
one: lebih dari setahun
other: lebih dari %{count} tahun
x_days:
one: sehari
other: "%{count} hari"
x_minutes:
one: satu menit
other: "%{count} menit"
x_months:
one: sebulan
other: "%{count} bulan"
x_seconds:
one: satu detik
other: "%{count} detik"
prompts:
day: Hari
hour: Jam
minute: Menit
month: Bulan
second: Detik
year: Tahun
errors:
format: "%{attribute} %{message}"
messages:
accepted: harus diterima
blank: tidak boleh kosong
confirmation: tidak sesuai dengan %{attribute}
empty: tidak boleh kosong
equal_to: harus sama dengan %{count}
even: harus genap
exclusion: sudah digunakan
greater_than: harus lebih besar dari %{count}
greater_than_or_equal_to: harus sama atau lebih besar dari %{count}
inclusion: tidak termasuk
invalid: tidak valid
less_than: harus lebih kecil dari %{count}
less_than_or_equal_to: harus sama atau lebih kecil dari %{count}
model_invalid: 'Validasi gagal: %{errors}'
not_a_number: bukan angka
not_an_integer: harus bilangan bulat
odd: harus ganjil
other_than: harus selain %{count}
present: harus kosong
required: harus ada
taken: sudah digunakan
too_long:
one: terlalu panjang (maksimum %{count} karakter)
other: terlalu panjang (maksimum %{count} karakter)
too_short:
one: terlalu pendek (minimum %{count} karakter)
other: terlalu pendek (minimum %{count} karakter)
wrong_length:
one: jumlah karakter salah (seharusnya %{count} karakter)
other: jumlah karakter salah (seharusnya %{count} karakter)
template:
body: 'Ada masalah dengan field berikut:'
header:
one: "%{count} kesalahan mengakibatkan %{model} ini tidak bisa disimpan"
other: "%{count} kesalahan mengakibatkan %{model} ini tidak bisa disimpan"
helpers:
select:
prompt: Silakan pilih
submit:
create: Buat %{model}
submit: Simpan %{model}
update: Perbarui %{model}
number:
currency:
format:
delimiter: "."
format: "%u%n"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: Rp
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Miliar
million: Juta
quadrillion: Quadriliun
thousand: Ribu
trillion: Triliun
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Byte
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", dan "
two_words_connector: " dan "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H.%M.%S %z"
long: "%d %B %Y %H.%M"
short: "%d %b %H.%M"
pm: pm

View File

@@ -0,0 +1,216 @@
---
is:
activerecord:
errors:
messages:
record_invalid: 'Villur: %{errors}'
restrict_dependent_destroy:
has_many: Ekki hægt að eyða færslur því %{record} sem hún er háð er til
has_one: Ekki hægt að eyða færslu því %{record} sem hún er háð er til
date:
abbr_day_names:
- sun
- mán
- þri
- mið
- fim
- fös
- lau
abbr_month_names:
-
- jan
- feb
- mar
- apr
- maí
- jún
- júl
- ágú
- sep
- okt
- nóv
- des
day_names:
- sunnudaginn
- mánudaginn
- þriðjudaginn
- miðvikudaginn
- fimmtudaginn
- föstudaginn
- laugardaginn
formats:
default: "%d.%m.%Y"
long: "%e. %B %Y"
short: "%e. %b"
month_names:
-
- janúar
- febrúar
- mars
- apríl
- maí
- júní
- júlí
- ágúst
- september
- október
- nóvember
- desember
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: u.þ.b. %{count} klukkustund
other: u.þ.b. %{count} klukkustundir
about_x_months:
one: u.þ.b. %{count} mánuður
other: u.þ.b. %{count} mánuðir
about_x_years:
one: u.þ.b. %{count} ár
other: u.þ.b. %{count} ár
almost_x_years:
one: næstum %{count} ár
other: næstum %{count} ár
half_a_minute: hálf mínúta
less_than_x_minutes:
one: minna en %{count} mínúta
other: minna en %{count} mínútur
less_than_x_seconds:
one: minna en %{count} sekúnda
other: minna en %{count} sekúndur
over_x_years:
one: meira en %{count} ár
other: meira en %{count} ár
x_days:
one: "%{count} dagur"
other: "%{count} dagar"
x_minutes:
one: "%{count} mínúta"
other: "%{count} mínútur"
x_months:
one: "%{count} mánuður"
other: "%{count} mánuðir"
x_seconds:
one: "%{count} sekúnda"
other: "%{count} sekúndur"
prompts:
day: Dagur
hour: Klukkustund
minute: Mínúta
month: Mánuður
second: Sekúnda
year: Ár
errors:
format: "%{attribute} %{message}"
messages:
accepted: þarf að vera tekið gilt
blank: má ekki vera autt
confirmation: er ekki jafngilt staðfestingunni
empty: má ekki vera tómt
equal_to: þarf að vera jafngilt %{count}
even: þarf að vera slétt tala
exclusion: er frátekið
greater_than: þarf að vera stærri en %{count}
greater_than_or_equal_to: þarf að vera stærri en eða jafngilt %{count}
inclusion: er ekki í listanum
invalid: er ógilt
less_than: þarf að vera minna en %{count}
less_than_or_equal_to: þarf að vera minna en eða jafngilt %{count}
not_a_number: er ekki tala
not_an_integer: þarf að vera heiltala
odd: þarf að vera oddatala
other_than: verður að vera annað en %{count}
present: verður að vera autt
taken: er þegar í notkun
too_long:
one: er of langt (má mest vera %{count} stafur)
other: er of langt (má mest vera %{count} stafir)
too_short:
one: er of stutt (má minnst vera %{count} stafur)
other: er of stutt (má minnst vera %{count} stafir)
wrong_length:
one: er af rangri lengd (má mest vera %{count} stafur)
other: er af rangri lengd (má mest vera %{count} stafir)
template:
body: 'Villur fundust í eftirfarandi dálkum:'
header:
one: Ekki var hægt að vista %{model} vegna einnar villu.
other: Ekki var hægt að vista %{model} vegna %{count} villna.
helpers:
select:
prompt: Veldu
submit:
create: Búa til %{model}
submit: Vista %{model}
update: Uppfæra %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: kr.
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: milljarður
other: milljarðar
million:
one: milljón
other: milljónir
quadrillion:
one: billjarður
other: billjarðar
thousand: þúsund
trillion:
one: billjón
other: billjónir
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: bæti
other: bæti
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " og "
two_words_connector: " og "
words_connector: ", "
time:
am: am
formats:
default: "%A %e. %B %Y kl. %H:%M"
long: "%A %e. %B %Y kl. %H:%M"
short: "%e. %B kl. %H:%M"
pm: pm

View File

@@ -0,0 +1,217 @@
---
it-CH:
activerecord:
errors:
messages:
record_invalid: 'Validazione fallita: %{errors}'
restrict_dependent_destroy:
has_many: Il record non può essere cancellato perchè esistono %{record}
dipendenti
has_one: Il record non può essere cancellato perchè esiste un %{record}
dipendente
date:
abbr_day_names:
- Dom
- Lun
- Mar
- Mer
- Gio
- Ven
- Sab
abbr_month_names:
-
- Gen
- Feb
- Mar
- Apr
- Mag
- Giu
- Lug
- Ago
- Set
- Ott
- Nov
- Dic
day_names:
- Domenica
- Lunedì
- Martedì
- Mercoledì
- Giovedì
- Venerdì
- Sabato
formats:
default: "%d-%m-%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- Gennaio
- Febbraio
- Marzo
- Aprile
- Maggio
- Giugno
- Luglio
- Agosto
- Settembre
- Ottobre
- Novembre
- Dicembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: circa un'ora
other: circa %{count} ore
about_x_months:
one: circa un mese
other: circa %{count} mesi
about_x_years:
one: circa un anno
other: circa %{count} anni
almost_x_years:
one: circa %{count} anno
other: circa %{count} anni
half_a_minute: mezzo minuto
less_than_x_minutes:
one: meno di un minuto
other: meno di %{count} minuti
less_than_x_seconds:
one: meno di un secondo
other: meno di %{count} secondi
over_x_years:
one: oltre un anno
other: oltre %{count} anni
x_days:
one: "%{count} giorno"
other: "%{count} giorni"
x_minutes:
one: "%{count} minuto"
other: "%{count} minuti"
x_months:
one: "%{count} mese"
other: "%{count} mesi"
x_seconds:
one: "%{count} secondo"
other: "%{count} secondi"
x_years:
one: "%{count} anno"
other: "%{count} anni"
prompts:
day: Giorno
hour: Ora
minute: Minuto
month: Mese
second: Secondi
year: Anno
errors:
format: "%{attribute} %{message}"
messages:
accepted: deve essere accettata
blank: non può essere lasciato in bianco
confirmation: non coincide con %{attribute}
empty: non può essere vuoto
equal_to: deve essere uguale a %{count}
even: deve essere pari
exclusion: è riservato
greater_than: deve essere superiore a %{count}
greater_than_or_equal_to: deve essere superiore o uguale a %{count}
inclusion: non è incluso nella lista
invalid: non è valido
less_than: deve essere meno di %{count}
less_than_or_equal_to: deve essere meno o uguale a %{count}
model_invalid: 'Validazione fallita: %{errors}'
not_a_number: non è un numero
not_an_integer: non è un intero
odd: deve essere dispari
other_than: devono essere di numero diverso da %{count}
present: deve essere lasciato in bianco
required: deve esistere
taken: è già presente
too_long:
one: è troppo lungo (il massimo è %{count} carattere)
other: è troppo lungo (il massimo è %{count} caratteri)
too_short:
one: è troppo corto (il minimo è %{count} carattere)
other: è troppo corto (il minimo è %{count} caratteri)
wrong_length:
one: è della lunghezza sbagliata (deve essere di %{count} carattere)
other: è della lunghezza sbagliata (deve essere di %{count} caratteri)
template:
body: 'Per favore ricontrolla i seguenti campi:'
header:
one: 'Non posso salvare questo %{model}: %{count} errore'
other: 'Non posso salvare questo %{model}: %{count} errori.'
helpers:
select:
prompt: Per favore, seleziona
submit:
create: Crea %{model}
submit: Invia %{model}
update: Aggiorna %{model}
number:
currency:
format:
delimiter: "'"
format: "%u %n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: CHF
format:
delimiter: ","
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Miliardi
million: Milioni
quadrillion: Biliardi
thousand: Mila
trillion: Bilioni
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Byte
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " e "
two_words_connector: " e "
words_connector: ", "
time:
am: am
formats:
default: "%a %d %b %Y, %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,217 @@
---
it:
activerecord:
errors:
messages:
record_invalid: 'Validazione fallita: %{errors}'
restrict_dependent_destroy:
has_many: Il record non può essere cancellato perchè esistono %{record}
dipendenti
has_one: Il record non può essere cancellato perchè esiste un %{record}
dipendente
date:
abbr_day_names:
- dom
- lun
- mar
- mer
- gio
- ven
- sab
abbr_month_names:
-
- gen
- feb
- mar
- apr
- mag
- giu
- lug
- ago
- set
- ott
- nov
- dic
day_names:
- domenica
- lunedì
- martedì
- mercoledì
- giovedì
- venerdì
- sabato
formats:
default: "%d/%m/%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- gennaio
- febbraio
- marzo
- aprile
- maggio
- giugno
- luglio
- agosto
- settembre
- ottobre
- novembre
- dicembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: circa un'ora
other: circa %{count} ore
about_x_months:
one: circa un mese
other: circa %{count} mesi
about_x_years:
one: circa un anno
other: circa %{count} anni
almost_x_years:
one: quasi un anno
other: quasi %{count} anni
half_a_minute: mezzo minuto
less_than_x_minutes:
one: meno di un minuto
other: meno di %{count} minuti
less_than_x_seconds:
one: meno di un secondo
other: meno di %{count} secondi
over_x_years:
one: oltre un anno
other: oltre %{count} anni
x_days:
one: "%{count} giorno"
other: "%{count} giorni"
x_minutes:
one: "%{count} minuto"
other: "%{count} minuti"
x_months:
one: "%{count} mese"
other: "%{count} mesi"
x_seconds:
one: "%{count} secondo"
other: "%{count} secondi"
x_years:
one: "%{count} anno"
other: "%{count} anni"
prompts:
day: Giorno
hour: Ora
minute: Minuto
month: Mese
second: Secondo
year: Anno
errors:
format: "%{attribute} %{message}"
messages:
accepted: deve essere accettata
blank: non può essere lasciato in bianco
confirmation: non coincide con %{attribute}
empty: non può essere vuoto
equal_to: deve essere uguale a %{count}
even: deve essere pari
exclusion: è riservato
greater_than: deve essere maggiore di %{count}
greater_than_or_equal_to: deve essere maggiore o uguale a %{count}
inclusion: non è compreso tra le opzioni disponibili
invalid: non è valido
less_than: deve essere minore di %{count}
less_than_or_equal_to: deve essere minore o uguale a %{count}
model_invalid: 'Validazione fallita: %{errors}'
not_a_number: non è un numero
not_an_integer: non è un numero intero
odd: deve essere dispari
other_than: devono essere di numero diverso da %{count}
present: deve essere lasciato in bianco
required: deve esistere
taken: è già presente
too_long:
one: è troppo lungo (il massimo è %{count} carattere)
other: è troppo lungo (il massimo è %{count} caratteri)
too_short:
one: è troppo corto (il minimo è %{count} carattere)
other: è troppo corto (il minimo è %{count} caratteri)
wrong_length:
one: è della lunghezza sbagliata (deve essere di %{count} carattere)
other: è della lunghezza sbagliata (deve essere di %{count} caratteri)
template:
body: 'Ricontrolla i seguenti campi:'
header:
one: 'Non posso salvare questo %{model}: %{count} errore'
other: 'Non posso salvare questo %{model}: %{count} errori.'
helpers:
select:
prompt: Seleziona...
submit:
create: Crea %{model}
submit: Invia %{model}
update: Aggiorna %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Miliardi
million: Milioni
quadrillion: Biliardi
thousand: Mila
trillion: Bilioni
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Byte
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " e "
two_words_connector: " e "
words_connector: ", "
time:
am: am
formats:
default: "%a %d %b %Y, %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,183 @@
---
ja:
activerecord:
errors:
messages:
record_invalid: 'バリデーションに失敗しました: %{errors}'
restrict_dependent_destroy:
has_many: "%{record}が存在しているので削除できません"
has_one: "%{record}が存在しているので削除できません"
date:
abbr_day_names:
-
-
-
-
-
-
-
abbr_month_names:
-
- 1月
- 2月
- 3月
- 4月
- 5月
- 6月
- 7月
- 8月
- 9月
- 10月
- 11月
- 12月
day_names:
- 日曜日
- 月曜日
- 火曜日
- 水曜日
- 木曜日
- 金曜日
- 土曜日
formats:
default: "%Y/%m/%d"
long: "%Y年%m月%d日(%a)"
short: "%m/%d"
month_names:
-
- 1月
- 2月
- 3月
- 4月
- 5月
- 6月
- 7月
- 8月
- 9月
- 10月
- 11月
- 12月
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours: 約%{count}時間
about_x_months: 約%{count}ヶ月
about_x_years: 約%{count}年
almost_x_years: "%{count}年弱"
half_a_minute: 30秒前後
less_than_x_minutes: "%{count}分未満"
less_than_x_seconds: "%{count}秒未満"
over_x_years: "%{count}年以上"
x_days: "%{count}日"
x_minutes: "%{count}分"
x_months: "%{count}ヶ月"
x_seconds: "%{count}秒"
x_years: "%{count}年"
prompts:
day:
hour:
minute:
month:
second:
year:
errors:
format: "%{attribute}%{message}"
messages:
accepted: を受諾してください
blank: を入力してください
confirmation: と%{attribute}の入力が一致しません
empty: を入力してください
equal_to: は%{count}にしてください
even: は偶数にしてください
exclusion: は予約されています
greater_than: は%{count}より大きい値にしてください
greater_than_or_equal_to: は%{count}以上の値にしてください
in: は%{count}の範囲に含めてください
inclusion: は一覧にありません
invalid: は不正な値です
less_than: は%{count}より小さい値にしてください
less_than_or_equal_to: は%{count}以下の値にしてください
model_invalid: 'バリデーションに失敗しました: %{errors}'
not_a_number: は数値で入力してください
not_an_integer: は整数で入力してください
odd: は奇数にしてください
other_than: は%{count}以外の値にしてください
present: は入力しないでください
required: を入力してください
taken: はすでに存在します
too_long: は%{count}文字以内で入力してください
too_short: は%{count}文字以上で入力してください
wrong_length: は%{count}文字で入力してください
template:
body: 次の項目を確認してください
header: "%{model}に%{count}個のエラーが発生しました"
helpers:
select:
prompt: 選択してください
submit:
create: 登録する
submit: 保存する
update: 更新する
number:
currency:
format:
delimiter: ","
format: "%n%u"
precision: 0
separator: "."
significant: false
strip_insignificant_zeros: false
unit:
format:
delimiter: ","
precision: 3
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: 十億
million: 百万
quadrillion: 千兆
thousand:
trillion:
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n%u"
units:
byte: バイト
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: "、"
two_words_connector: "、"
words_connector: "、"
time:
am: 午前
formats:
default: "%Y年%m月%d日(%a) %H時%M分%S秒 %z"
long: "%Y/%m/%d %H:%M"
short: "%m/%d %H:%M"
pm: 午後

View File

@@ -0,0 +1,210 @@
---
ka:
activerecord:
errors:
messages:
record_invalid: 'დადასტურება წარუმატებელია: %{errors}'
date:
abbr_day_names:
- კვ
- ორშ
- სამშ
- ოთხშ
- ხუთშ
- პარ
- შაბ
abbr_month_names:
-
- იანვ
- თებ
- მარტი
- აპრ
- მაისი
- ივნ
- ივლ
- აგვ
- სექტ
- ოქტ
- ნოემბ
- დეკ
day_names:
- კვირა
- ორშაბათი
- სამშაბათი
- ოთხშაბათი
- ხუთშაბათი
- პარასკევი
- შაბათი
formats:
default: "%d.%m.%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- იანვარი
- თებერვალი
- მარტი
- აპრილი
- მაისი
- ივნისი
- ივლისი
- აგვისტო
- სექტემბერი
- ოქტომბერი
- ნოემბერი
- დეკემბერი
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: დაახლოებით %{count} საათი
other: დაახლოებით %{count} საათი
about_x_months:
one: დაახლოებით %{count} თვე
other: დაახლოებით %{count} თვე
about_x_years:
one: დაახლოებით %{count} წელი
other: დაახლოებით %{count} წელი
almost_x_years:
one: თითქმის %{count} წელი
other: თითქმის %{count} წელი
half_a_minute: ნახევარი წუთი
less_than_x_minutes:
one: "%{count} წუთზე ნაკლები"
other: "%{count} წუთზე ნაკლები"
less_than_x_seconds:
one: "%{count} წამზე ნაკლები"
other: "%{count} წამზე ნაკლები"
over_x_years:
one: "%{count} წელზე მეტი"
other: "%{count} წელზე მეტი"
x_days:
one: "%{count} დღე"
other: "%{count} დღე"
x_minutes:
one: "%{count} წუთი"
other: "%{count} წუთი"
x_months:
one: "%{count} თვე"
other: "%{count} თვე"
x_seconds:
one: "%{count} წამი"
other: "%{count} წამი"
x_years:
one: "%{count} წელი"
other: "%{count} წელი"
prompts:
day: დღე
hour: საათი
minute: წუთი
month: თვე
second: წამი
year: წელი
errors:
format: "%{attribute} %{message}"
messages:
accepted: უნდა იყოს დადასტურებული
blank: არ შეიძლება იყოს ცარიელი
confirmation: ველი %{attribute}-ს არ ემთხვევა
empty: არ შეიძლება იყოს ცარიელი
equal_to: უნდა უდრიდეს %{count}-ს
even: უნდა იყოს ლუწი
exclusion: რეზერვირებულია
greater_than: უნდა იყოს %{count}-ზე მეტი
greater_than_or_equal_to: უნდა იყოს %{count}-ზე მეტი ან ტოლი
inclusion: არ არის სიაში
invalid: არასწორია
less_than: უნდა იყოს %{count}-ზე ნაკლები
less_than_or_equal_to: უნდა იყოს %{count}-ზე ნაკლები ან ტოლი
model_invalid: 'დადასტურება წარუმატებელია: %{errors}'
not_a_number: არ არის რიცხვი
not_an_integer: არ არის მთელი რიცხვი
odd: უნდა იყოს კენტი
other_than: უნდა განსხვავდებოდეს %{count}-გან
present: უნდა იყოს ცარიელი
required: უნდა არსებობდეს
taken: უკვე დაკავებულია
too_long:
one: არის ძალიან გრძელი (მაქსიმუმია %{count} სიმბოლო)
other: არის მეტისმეტად დიდი სიგრძის (მაქსიმუმია %{count} სიმბოლო)
too_short:
one: არის ძალიან მოკლე (მინიმუმია %{count} სიმბოლო)
other: არის ძალიან მოკლე (მინიმუმია %{count} სიმბოლო)
wrong_length:
one: არის არასწორი სიგრძის (უნდა იყოს ზუსტად %{count} სიბმოლო)
other: არის არასწორი სიგრძის (უნდა იყოს ზუსტად %{count} სიბმოლო)
template:
body: 'შეიქმნა პრობლემები შემდეგ ველებთან დაკავშირებით:'
header:
one: "%{model}-ს შენახვა ვერ განხორციელდა %{count} შეცდომის გამო"
other: "%{model}-ს შენახვა ვერ განხორციელდა %{count} შეცდომის გამო"
helpers:
select:
prompt: გთხოვთ აირჩიოთ
submit:
create: "%{model}-ს შექმნა"
submit: "%{model}-ს დამახსოვრება"
update: "%{model}-ს განახლება"
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit:
format:
delimiter: " "
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: მილიარდი
million: მილიონი
quadrillion: კვადრილიონი
thousand: ათასი
trillion: ტრილიონი
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: ბაიტი
other: ბაიტები
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", და "
two_words_connector: " და "
words_connector: ", "
time:
am: დილის
formats:
default: "%a, %d %b %Y, %H:%M:%S %z"
long: "%d %B %Y, %H:%M"
short: "%d %b, %H:%M"
pm: საღამოს

View File

@@ -0,0 +1,225 @@
---
kk:
activerecord:
errors:
messages:
record_invalid: 'Тексеру сәтсіз аяқталды: %{errors}'
restrict_dependent_destroy:
has_many: 'Жазбаны жою мүмкін емес, тәуелділіктер бар: %{record}'
has_one: 'Жазбаны жою мүмкін емес, тәуелділік бар: %{record}'
date:
abbr_day_names:
- Жс
- Дс
- Сс
- Ср
- Бс
- Жм
- Сб
abbr_month_names:
-
- қаң.
- ақп.
- нау.
- сәу.
- мам.
- мау.
- шіл.
- там.
- қыр.
- қаз.
- қар.
- жел.
day_names:
- жексенбі
- дүйсенбі
- сейсенбі
- сәрсенбі
- бейсенбі
- жұма
- сенбі
formats:
default: "%d.%m.%Y"
long: "%-d %B %Y"
short: "%-d %b"
month_names:
-
- каңтар
- ақпан
- наурыз
- сәуір
- мамыр
- маусым
- шілде
- тамыз
- қыркүйек
- қазан
- қараша
- желтоқсан
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: шамамен %{count} сағат
other: шамамен %{count} сағат
about_x_months:
one: шамамен %{count} ай
other: шамамен %{count} ай
about_x_years:
one: шамамен %{count} жыл
other: шамамен %{count} жыл
almost_x_years:
one: "%{count} жылға жуық"
other: "%{count} жылға жуық"
half_a_minute: жарты минут
less_than_x_minutes:
one: "%{count} минуттан аз"
other: "%{count} минуттан аз"
less_than_x_seconds:
one: "%{count} секундтан аз"
other: "%{count} секундтан аз"
over_x_years:
one: "%{count} жылдан астам"
other: "%{count} жылдан астам"
x_days:
one: "%{count} күн"
other: "%{count} күн"
x_minutes:
one: "%{count} минут"
other: "%{count} минут"
x_months:
one: "%{count} ай"
other: "%{count} ай"
x_seconds:
one: "%{count} секунд"
other: "%{count} секунд"
x_years:
one: "%{count} жыл"
other: "%{count} жыл"
prompts:
day: Күн
hour: Сағат
minute: Минут
month: Ай
second: Секунд
year: Жыл
errors:
format: "%{attribute} %{message}"
messages:
accepted: расталуы тиіс
blank: бос болуы мүмкін емес
confirmation: "%{attribute} мәніне сәйкес келмейді"
empty: бос болуы мүмкін емес
equal_to: тек %{count} тең мәнге ие болуы мүмкін
even: тек жұп мәнге ие бола алады
exclusion: сақталған мағына
greater_than: мәні %{count} санынан жоғары болуы керек
greater_than_or_equal_to: мәні %{count} санынан жоғары немесе тең болуы керек
inclusion: күтпеген мағына
invalid: қате мағына
less_than: мәні %{count} санынан кем болуы керек
less_than_or_equal_to: мәні %{count} санынан кем немесе тең болуы керек
model_invalid: 'Тексеру сәтсіз аяқталды: %{errors}'
not_a_number: сан емес
not_an_integer: бүтін сан емес
odd: тек тақ мәнге ие бола алады
other_than: "%{count} санынан өзгеше болуы тиіс"
present: бос қалуы тиіс
required: жоқ болуы мүмкін емес
taken: бұрыннан бар
too_long:
one: тым ұзын (%{count} таңбадан асырмаңыз)
other: тым ұзын (%{count} таңбадан асырмаңыз)
too_short:
one: тым қысқа (%{count} таңбадан көп немесе тең болуы тиіс)
other: тым қысқа (%{count} таңбадан көп немесе тең болуы тиіс)
wrong_length:
one: ұзындығы дұрыс емес (дәл %{count} таңба болуы тиіс)
other: ұзындығы дұрыс емес (дәл %{count} таңба болуы тиіс)
template:
body: 'Келесі өрістермен проблемалар туындады:'
header:
one: "%{model}: %{count} қатеге байланысты сақтау сәтсіз аяқталды"
other: "%{model}: %{count} қатеге байланысты сақтау сәтсіз аяқталды"
helpers:
select:
prompt: 'Таңдаңыз: '
submit:
create: Құру %{model}
submit: Сақтау %{model}
update: Өзгерту %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: теңге
format:
delimiter: " "
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: миллиард
other: миллиард
million:
one: миллион
other: миллион
quadrillion:
one: квадриллион
other: квадриллион
thousand:
one: мың
other: мың
trillion:
one: триллион
other: триллион
unit: ''
format:
delimiter: ''
precision: 1
significant: false
strip_insignificant_zeros: false
storage_units:
format: "%n %u"
units:
byte:
one: байт
other: байт
eb: ЭБ
gb: ГБ
kb: КБ
mb: МБ
pb: ПБ
tb: ТБ
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " және "
two_words_connector: " және "
words_connector: ", "
time:
am: таңғы
formats:
default: "%a, %d %b %Y, %H:%M:%S %z"
long: "%d %B %Y, %H:%M"
short: "%d %b, %H:%M"
pm: кешкі

View File

@@ -0,0 +1,167 @@
---
km:
activerecord:
errors:
messages:
record_invalid: មិនមានសុពលភាព៖ %{errors}
restrict_dependent_destroy:
has_many: មិនអាចលុបបានទេពីព្រោះមាន %{record} នៅឡើយ
has_one: មិនអាចលុបបានទេពីព្រោះមាន %{record} នៅឡើយ
date:
abbr_day_names:
- អា
-
-
- ពុ
- ព្រហ
- សុ
-
abbr_month_names:
-
- មករា
- កុម្ភៈ
- មិនា
- មេសា
- ឧសភា
- មិថុនា
- កក្កដា
- សីហា
- កញ្ញា
- តុលា
- វិច្ឆិកា
- ធ្នូ
day_names:
- អាទិត្យ
- ចន្ទ
- អង្គារ
- ពុធ
- ព្រហស្បតិ៍
- សុក្រ
- សៅរ៍
formats:
default: "%d %B %Y"
long: ថ្ងៃ%A ទី%e ខែ%B ឆ្នាំ%Y
short: "%d %b"
month_names:
-
- មករា
- កុម្ភៈ
- មិនា
- មេសា
- ឧសភា
- មិថុនា
- កក្កដា
- សីហា
- កញ្ញា
- តុលា
- វិច្ឆិកា
- ធ្នូ
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours: ប្រមាណ %{count} ម៉ោង
about_x_months: ប្រមាណ %{count} ខែ
about_x_years: ប្រមាណ %{count} ឆ្នាំ
almost_x_years: ជិត %{count} ឆ្នាំ
half_a_minute: កន្លះនាទី
less_than_x_minutes: តិចជាង %{count} នាទី
less_than_x_seconds: តិចជាង %{count} វិនាទី
over_x_years: លើសពី %{count} ឆ្នាំ
x_days: "%{count} ថ្ងៃ"
x_minutes: "%{count} នាទី"
x_months: "%{count} ខែ"
x_seconds: "%{count} វិនាទី"
prompts:
day: ថ្ងៃ
hour: ម៉ោង
minute: នាទី
month: ខែ
second: វិនាទី
year: ឆ្នាំ
errors:
format: "%{attribute} %{message}"
messages:
accepted: ត្រូវតែយល់ព្រម
blank: មិនអាចរំលង
confirmation: ផ្ទៀងផ្ទាត់មិនត្រូវនឹង %{attribute}
empty: មិនអាចរំលង
equal_to: ត្រូវតែស្មើ %{count}
even: ត្រូវតែជាចំនួនគត់
exclusion: មិនអនុញ្ញាតឱ្យប្រើ
greater_than: ត្រូវតែច្រើនជាង %{count}
greater_than_or_equal_to: ត្រូវតែច្រើនជាងឬស្មើ %{count}
inclusion: មិនមាននៅក្នុងបញ្ជី
invalid: មិនត្រឹមត្រូវ
less_than: ត្រូវតែតិចជាង %{count}
less_than_or_equal_to: ត្រូវតែតិចជាងឬស្មើ %{count}
not_a_number: មិនមែនជាលេខទេ
not_an_integer: ត្រូវតែជាចំនួនគត់
odd: ត្រូវតែជាចំនួនសេស
other_than: ត្រូវតែខុសពី %{count}
present: ត្រូវតែរំលង
taken: មានរួចហើយ
too_long: វែងពេក (យ៉ាងច្រើន %{count} តួ)
too_short: ខ្លីពេក (យ៉ាងតិច %{count} តួ)
wrong_length: ប្រវែងមិនត្រូវ (គួរតែមាន %{count} តួ)
template:
body: 'សូមពិនិត្យមើលកំហុសនៅខាងក្រោម:'
header: មានកំហុស %{count} ដែលបានបញ្ឈប់ការរក្សាទុក %{model}នេះ
helpers:
select:
prompt: សូមជ្រើសរើស
submit:
create: បង្កើត%{model}
submit: រក្សាទុក%{model}
update: ប្តូរ%{model}
number:
currency:
format:
delimiter: ","
format: "%n %u"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "៛"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: ប៊ីលាន
million: លាន
quadrillion: ក្វាទ្រីលាន
thousand: ពាន់
trillion: ទ្រីលាន
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", និង "
two_words_connector: " និង "
words_connector: ", "
time:
am: ព្រឹក
formats:
default: "%a %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: "​ល្ងាច"

View File

@@ -0,0 +1,196 @@
---
kn:
activerecord:
errors:
messages:
record_invalid: 'ತಪ್ಪು ಆಧಾರ: %{errors}'
date:
abbr_day_names:
- ರವಿ
- ಸೋಮ
- ಮಂಗಳ
- ಬುಧ
- ಗುರು
- ಶುಕ್ರ
- ಶನಿ
abbr_month_names:
-
- Jan
- Feb
- Mar
- Apr
- May
- Jun
- Jul
- Aug
- Sep
- Oct
- Nov
- Dec
day_names:
- ರವಿವಾರ
- ಸೋಮವಾರ
- ಮಂಗಳವಾರ
- ಬುಧವಾರ
- ಗುರುವಾರ
- ಶುಕ್ರವಾರ
- ಶನಿವಾರ
formats:
default: "%Y-%m-%d"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- ಜನವರಿ
- ಫೆಬ್ರವರಿ
- ಮಾರ್ಚ್
- ಏಪ್ರಿಲ್
- ಮೇ
- ಜೂನ್
- ಜುಲೈ
- ಆಗಸ್ಟ್
- ಸೆಪ್ಟೆಂಬರ್
- ಅಕ್ಟೋಬರ್
- ನವಂಬರ್
- ಡಿಸೆಂಬರ್
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: ಸುಮಾರು ಒಂದು ಗಂಟೆ
other: ಸುಮಾರು %{count} ಗಂಟೆಗಳು
about_x_months:
one: ಸುಮಾರು ಒಂದು ತಿಂಗಳು
other: ಸುಮಾರು %{count} ತಿಂಗಳುಗಳು
about_x_years:
one: ಸುಮಾರು ಒಂದು ವರುಷ
other: ಸುಮಾರು %{count} ವರುಷಗಳು
almost_x_years:
one: ಸರಿಸುಮಾರು ಒಂದು ವರುಷ
other: ಸರಿಸುಮಾರು %{count} ವರುಷಗಳು
half_a_minute: ಒಂದು ಅರ್ಧ ನಿಮಿಷ
less_than_x_minutes:
one: ಒಂದು ನಿಮಿಷಕ್ಕೂ ಕಡಿಮೆ
other: "%{count} ನಿಮಿಷಕ್ಕಿಂತ ಕಡಿಮೆ"
less_than_x_seconds:
one: ಒಂದು ಸೆಕೆಂಡಿಗೂ ಕಡಿಮೆ
other: "%{count} ಸೆಕೆಂಡಿಗಿಂತ ಕಡಿಮೆ"
over_x_years:
one: ಒಂದು ವರುಷಕ್ಕಿಂತ ಹೆಚ್ಚು
other: "%{count} ವರುಷಗಳಿಗಿಂತ ಹೆಚ್ಚು"
x_days:
one: "%{count} ದಿನ"
other: "%{count} ದಿನಗಳು"
x_minutes:
one: "%{count} ನಿಮಿಷ"
other: "%{count} ನಿಮಿಷಗಳು"
x_months:
one: "%{count} ತಿಂಗಳು"
other: "%{count} ತಿಂಗಳುಗಳು"
x_seconds:
one: "%{count} ಸೆಕೆಂಡ್"
other: "%{count} ಸೆಕೆಂಡುಗಳು"
prompts:
day: ದಿನ
hour: ಗಂಟೆ
minute: ನಿಮಿಷ
month: ತಿಂಗಳು
second: ಸೆಕೆಂಡು
year: ವರುಷ
errors:
format: "%{attribute} %{message}"
messages:
accepted: ಒಪ್ಪಿಕೊಳ್ಳಬೇಕು
blank: ಖಾಲಿ ಬಿಡಲು ಸಧ್ಯವಿಲ್ಲ
confirmation: ಸಮರ್ಥನೆ ಸರಿಬರಲ್ಲಿಲ್ಲ
empty: ಖಾಲಿ ಬಿಡಲು ಸಧ್ಯವಿಲ್ಲ
equal_to: "%{count} ಕ್ಕೆ ಸಮಾನವಾಗಿರಬೇಕು"
even: ಸಮ ಆಗಿರಬೇಕು
exclusion: ಕಾಯ್ದಿರಿಸಲಾಗಿದೆ
greater_than: "%{count} ಕ್ಕಿಂತ ಹೆಚ್ಚಿರಬೇಕು"
greater_than_or_equal_to: "%{count} ಕಿಂತ ಹೆಚ್ಚು ಅಥವಾ ಸಮಾನವಾಗಿರ ಇರಬೇಕು"
inclusion: ಪಟ್ಟಿಯಲ್ಲಿ ಶಾಮೀಲು ಆಗಿಲ್ಲ
invalid: ನಿರರ್ಥಕವಾಗಿದೆ
less_than: "%{count} ಕ್ಕಿಂತ ಕಡಿಮೆ ಆಗಿರಬೇಕು"
less_than_or_equal_to: "%{count} ಕಿಂತ ಕಡಿಮೆ ಅಥವಾ ಸಮಾನವಾಗಿರ ಇರಬೇಕು"
not_a_number: ಸಂಖೆ ಆಗಿಲ್ಲ
not_an_integer: ಸಂಖೆ ಆಗಿರಬೇಕು
odd: ಬೆಸ ಆಗಿರಬೇಕು
taken: ತೆಗೆದುಕೊಂಡಾಗಿದೆ
too_long: ಬಹಳ ದೊಡ್ಡದಾಗಿದೆ (ಗರಿಷ್ಟ %{count} ಅಕ್ಷರಗಳು)
too_short: ಬಹಳ ಚಿಕ್ಕದಾಗಿದೆ (ಕನಿಷ್ಠ %{count} ಅಕ್ಷರಗಳು)
wrong_length: ತಪ್ಪು ಉದ್ದವಿದೆ (%{count} ಅಕ್ಷರಗಳಿರಬೇಕು)
template:
body: 'ಸಮಸ್ಯೆಗಳಿರುವ ಜಾಗಗಳು:'
header:
one: "%{count} ಧೋಷದ ಪರಿಣಾಮ %{model} ಅನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ"
other: "%{count} ಧೋಷಗಳ ಪರಿಣಾಮ %{model} ಅನ್ನು ರಚಿಸಲು ಸಾಧ್ಯವಾಗಲಿಲ್ಲ"
helpers:
select:
prompt: ದಯವಿಟ್ಟು ಆರಿಸಿ
submit:
create: "%{model} ರಚಿಸಿ"
submit: "%{model} ಕಳುಹಿಸು"
update: "%{model} ರಚಿಸಿ"
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: ಲಕ್ಷಕೋಟಿ
million: ದಶಲಕ್ಷ
quadrillion: ಪದ್ಮ
thousand: ಸಾವಿರ
trillion: ನೀಲ್
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", ಮತ್ತು "
two_words_connector: " ಮತ್ತು "
words_connector: ", "
time:
am: ಪ್ರಾತಃಕಾಲ
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: ಅಪರನ್ನಃ

View File

@@ -0,0 +1,183 @@
---
ko:
activerecord:
errors:
messages:
record_invalid: 데이터 검증에 실패하였습니다. %{errors}
restrict_dependent_destroy:
has_many: "%{record}(이)가 존재하기 때문에 삭제할 수 없습니다"
has_one: "%{record}(이)가 존재하기 때문에 삭제할 수 없습니다"
date:
abbr_day_names:
-
-
-
-
-
-
-
abbr_month_names:
-
- 1월
- 2월
- 3월
- 4월
- 5월
- 6월
- 7월
- 8월
- 9월
- 10월
- 11월
- 12월
day_names:
- 일요일
- 월요일
- 화요일
- 수요일
- 목요일
- 금요일
- 토요일
formats:
default: "%Y-%m-%d"
long: "%Y년 %m월 %d일"
short: "%m월 %d일"
month_names:
-
- 1월
- 2월
- 3월
- 4월
- 5월
- 6월
- 7월
- 8월
- 9월
- 10월
- 11월
- 12월
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours: 대략 %{count}시간
about_x_months: 대략 %{count}개월
about_x_years: 대략 %{count}년
almost_x_years: 거의 %{count}년
half_a_minute: 30초
less_than_x_minutes: "%{count}분 미만"
less_than_x_seconds: "%{count}초 미만"
over_x_years: "%{count}년 초과"
x_days: "%{count}일"
x_minutes: "%{count}분"
x_months: "%{count}개월"
x_seconds: "%{count}초"
x_years: "%{count}년"
prompts:
day:
hour:
minute:
month:
second:
year:
errors:
format: "%{message}"
messages:
accepted: "%{attribute}을(를) 반드시 확인해야 합니다"
blank: "%{attribute}에 내용을 입력해 주세요"
confirmation: "%{attribute}은(는) 서로 일치해야 합니다"
empty: "%{attribute}에 내용을 입력해 주세요"
equal_to: "%{attribute}은(는) %{count}와(과) 같아야 합니다"
even: "%{attribute}에 짝수를 입력해 주세요"
exclusion: "%{attribute}은(는) 이미 예약되어 있는 값입니다"
greater_than: "%{attribute}은(는) %{count}보다 커야 합니다"
greater_than_or_equal_to: "%{attribute}은(는) %{count}보다 크거나 같아야 합니다"
in: "%{attribute}은(는) %{count}범위 안에 있어야 합니다"
inclusion: "%{attribute}은(는) 목록에 포함되어 있는 값이 아닙니다"
invalid: "%{attribute}은(는) 올바르지 않은 값입니다"
less_than: "%{attribute}은(는) %{count}보다 작아야 합니다"
less_than_or_equal_to: "%{attribute}은(는) %{count}와(과) 작거나 같아야 합니다"
model_invalid: "%{attribute}에 대한 데이터 검증에 실패하였습니다: %{errors}"
not_a_number: "%{attribute}에 숫자를 입력해 주세요"
not_an_integer: "%{attribute}에 정수를 입력해 주세요"
odd: "%{attribute}에 홀수를 입력해 주세요"
other_than: "%{attribute}은(는) %{count}와(과) 달라야 합니다"
present: "%{attribute}은(는) 비어있어야 합니다"
required: "%{attribute}은(는) 반드시 있어야 합니다"
taken: "%{attribute}은(는) 이미 존재합니다"
too_long: "%{attribute}은(는) %{count}자를 넘을 수 없습니다"
too_short: "%{attribute}은(는) 적어도 %{count}자를 넘어야 합니다"
wrong_length: "%{attribute}은(는) %{count}자여야 합니다"
template:
body: 아래 문제를 확인해 주세요.
header: "%{count}개의 오류로 인해 %{model}을(를) 저장할 수 없습니다"
helpers:
select:
prompt: 선택해주세요
submit:
create: 등록
submit: 제출
update: 수정
number:
currency:
format:
delimiter: ","
format: "%n%u"
precision: 0
separator: "."
significant: false
strip_insignificant_zeros: false
unit:
format:
delimiter: ","
precision: 3
round_mode: default
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n%u"
units:
billion: 십억
million: 백만
quadrillion: 천조
thousand:
trillion:
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n%u"
units:
byte: 바이트
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", "
two_words_connector: ", "
words_connector: ", "
time:
am: 오전
formats:
default: "%Y년 %m월 %d일 %A %H시 %M분 %S초 %z"
long: "%Y년 %m월 %d일 %H시 %M분"
short: "%m월 %d일 %H:%M"
pm: 오후

View File

@@ -0,0 +1,212 @@
---
lb:
activerecord:
errors:
messages:
record_invalid: 'Validatioun feelgeschlo: %{errors}'
restrict_dependent_destroy:
has_many: Den Enregistrement kann net geläscht gi wëll et dovun ofhängegt
%{record} gëtt
has_one: Den Enregistrement kann net geläscht gi wëll et en dovun ofhängegt
%{record} gëtt
date:
abbr_day_names:
- Son
- Méi
- Dën
- Mët
- Don
- Fre
- Sam
abbr_month_names:
-
- Jan
- Feb
- Mäe
- Abr
- Mee
- Jun
- Jul
- Aug
- Sep
- Okt
- Nov
- Dez
day_names:
- Sonndeg
- Méindeg
- Dënschdeg
- Mëttwoch
- Donneschdeg
- Freideg
- Samschdeg
formats:
default: "%d.%m.%Y"
long: "%e. %B %Y"
short: "%e %b"
month_names:
-
- Januar
- Februar
- Mäerz
- Abrëll
- Mee
- Juni
- Juli
- August
- September
- Oktober
- November
- Dezember
order:
- :Joer
- :Mount
- :Dag
datetime:
distance_in_words:
about_x_hours:
one: ongeféier eng Stonn
other: ongeféier %{count} Stonnen
about_x_months:
one: ongeféier ee Mount
other: ongeféier %{count} Méint
about_x_years:
one: ongeféier ee Joer
other: ongeféier %{count} Joer
almost_x_years:
one: bal ee Joer
other: bal %{count} Joer
half_a_minute: eng hallef Minutt
less_than_x_minutes:
one: manner wéi eng Minutt
other: manner wéi %{count} Minutten
less_than_x_seconds:
one: manner wéi eng Sekonn
other: manner wéi %{count} Sekonnen
over_x_years:
one: méi wéi ee Joer
other: méi wéi %{count} Joer
x_days:
one: "%{count} Dag"
other: "%{count} Deeg"
x_minutes:
one: "%{count} Minutt"
other: "%{count} Minutten"
x_months:
one: "%{count} Mount"
other: "%{count} Méint"
x_seconds:
one: "%{count} Sekonn"
other: "%{count} Sekonnen"
prompts:
day: Dag
hour: Stonn
minute: Minutt
month: Mount
second: Sekonnen
year: Joer
errors:
format: "%{attribute} %{message}"
messages:
accepted: muss akzeptéiert ginn
blank: däerf net eidel sinn
confirmation: stëmmt net mat %{attribute} iwwerenee
empty: däerf net eidel sinn
equal_to: muss d'selwecht si wéi %{count}
even: muss gerued sinn
exclusion: ass reservéiert
greater_than: muss méi grouss wéi %{count} sinn
greater_than_or_equal_to: muss méi grouss oder gläich si wéi %{count}
inclusion: ass net an der Lëscht dran
invalid: ass net valabel
less_than: muss méi kleng wéi %{count} sinn
less_than_or_equal_to: muss méi kleng oder gläich si wéi %{count}
not_a_number: ass keng Zuel
not_an_integer: muss eng ganz Zuel sinn
odd: muss ongerued sinn
other_than: muss anescht si wéi %{count}
present: muss eidel sinn
taken: gouf scho geholl
too_long:
one: ass ze laang (Maximal %{count} Zeechen)
other: ass ze laang (net méi wéi %{count} Zeechen)
too_short:
one: ass ze kuerz (Mniimal %{count} Zeechen)
other: ass ze kuerz (mindestens %{count} Zeechen)
wrong_length:
one: huet déi falsch Längt (muss genee een Zeeche sinn)
other: huet déi falsch Längt (musse genee %{count} Zeeche sinn)
template:
body: 'Et gouf Problemer mat dëse Felder:'
header:
one: "%{count} Feeler verhënnert d'Späichere vu(n) %{model}"
other: "%{count} Feeler verhënneren d'Späichere vu(n) %{model}"
helpers:
select:
prompt: Sicht w.e.g. eraus
submit:
create: uleeën %{model}
submit: späicheren %{model}
update: aktualiséieren %{model}
number:
currency:
format:
delimiter: ","
format: "%n %u"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: ","
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Milliard
million: Millioun
quadrillion:
one: Billiard
other: Billiarden
thousand: Dausend
trillion: Billioun
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Byten
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", an "
two_words_connector: " an "
words_connector: ", "
time:
am: moies
formats:
default: "%A, %d. %B %Y, %H:%M Auer"
long: "%A, %d. %B %Y, %H:%M Auer"
short: "%d. %b %H:%M"
pm: mëttes

View File

@@ -0,0 +1,166 @@
---
lo:
activerecord:
errors:
messages:
record_invalid: 'ການຢືນຢັນບໍ່ສຳເລັດ : %{errors}'
date:
abbr_day_names:
- ອາທິດ
- ຈັນ
- ອັງຄານ
- ພຸດ
- ພະຫັດ
- ສຸກ
- ເສົາ
abbr_month_names:
-
- ມ.ກ
- ກ.ພ
- ມ.ນ
- ມ.ສ
- ພ.ພ
- ມິ.ຖ
- ກ.ລ
- ສ.ຫ
- ກ.ຍ
- ຕ.ລ
- ພ.ຈ
- ທ.ວ
day_names:
- ອາທິດ
- ຈັນ
- ອັງຄານ
- ພຸດ
- ພະຫັດ
- ສຸກ
- ເສົາ
formats:
default: "%d-%m-%Y"
long: "%e %B %Y"
short: "%e %b"
month_names:
-
- ມັງກອນ
- ກຸມພາ
- ມີນາ
- ເມສາ
- ພຶດສະພາ
- ມິຖຸນາ
- ກໍລະກົດ
- ສິງຫາ
- ກັນຍາ
- ຕຸລາ
- ພະຈິກ
- ທັນວາ
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours: ປະມານ %{count} ຊົ່ວໂມງ
about_x_months: ປະມານ %{count} ເດືອນ
about_x_years: ປະມານ %{count} ປີ
almost_x_years: ເກືອບ %{count} ປີ
half_a_minute: ເຄິ່ງນາທີ
less_than_x_minutes: ນ້ອຍກວ່າ %{count} ນາທີ
less_than_x_seconds: ນ້ອຍກວ່າ %{count} ວິນາທີ
over_x_years: ຫຼາຍກວ່າ %{count} ປີ
x_days: "%{count} ມື້"
x_minutes: "%{count} ນາທີ"
x_months: "%{count} ເດືອນ"
x_seconds: "%{count} ວິນາທີ"
prompts:
day: ວັນ
hour: ຊົ່ວໂມງ
minute: ນາທີ
month: ເດືອນ
second: ວິນາທີ
year: ປີ
errors:
format: "%{attribute} %{message}"
messages:
accepted: ຕ້ອງຍອມຮັບ
blank: ເປົ່າບໍ່ໄດ້
confirmation: ບໍ່ຖືກກັບການຢືນຢັນ
empty: ວ່າງໄວ້ບໍ່ໄດ້
equal_to: ຕ້ອງເທົ່າກັບ %{count}
even: ຕ້ອງເປັນເລກຄູ່
exclusion: ມີການຈອງໄວ້ແລ້ວ
greater_than: ຕ້ອງສູງກວ່າ %{count}
greater_than_or_equal_to: ຕ້ອງສູງກວ່າ ຫຼື ເທົ່າກັບ %{count}
inclusion: ບໍ່ໄດ້ຮວມຢູ່ໃນບັນຊີລາຍການ
invalid: ບໍ່ຖືກ
less_than: ຕ້ອງຕຳ່ກວ່າ %{count}
less_than_or_equal_to: ຕ້ອງຕຳ່ກວ່າ ຫຼື ເທົ່າກັບ %{count}
not_a_number: ບໍ່ແມ່ນຕົວເລກ
odd: ຕ້ອງເປັນເລກຄີກ
taken: ຮັບເອົາໄປແລ້ວ
too_long: ຍາວໂພດ (ສູງສຸດຄື %{count} ຕົວອັກສອນ)
too_short: ສັ້ນໂພດ (ຕຳ່ສຸດຄື %{count} ຕົວອັກສອນ)
wrong_length: ຄວາມຍາວຜິດ (ຄວນຈະເປັນ %{count} ຕົວອັກສອນ)
template:
body: 'ກະລຸນາກວດສອບຂໍ້ມູນໃນຫ້ອງຕໍ່ໄປນີ້ :'
header: ບໍ່ສາມາດບັນທຶກ %{model} ໄດ້ເນື່ອງຈາກ ເກີດ %{count} ຂໍ້ຜິດພາດ
helpers:
select:
prompt: โปรดเลือก
number:
currency:
format:
delimiter: ","
format: "%n %u"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: Kip
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
few: Bytes
many: Bytes
one: Byte
other: Bytes
two: Bytes
zero: Bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", ແລະ "
two_words_connector: 'ແລະ '
words_connector: ", "
time:
am: ເຊົ້າ
formats:
default: "%a %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M น."
short: "%d %b %H:%M น."
pm: ແລງ

View File

@@ -0,0 +1,231 @@
---
lt:
activerecord:
errors:
messages:
record_invalid: 'Nepraeitos patikros: %{errors}'
restrict_dependent_destroy:
has_many: Negalima ištrinti įrašų nes priklausomi %{record} egzistuoja
has_one: Negalima ištrinti įrašo nes priklausomas %{record} egzistuoja
date:
abbr_day_names:
- Sek
- Pir
- Ant
- Tre
- Ket
- Pen
- Šeš
abbr_month_names:
-
- Sau
- Vas
- Kov
- Bal
- Geg
- Bir
- Lie
- Rgp
- Rgs
- Spa
- Lap
- Grd
day_names:
- sekmadienis
- pirmadienis
- antradienis
- trečiadienis
- ketvirtadienis
- penktadienis
- šeštadienis
formats:
default: "%Y-%m-%d"
long: "%Y m. %B %d d."
short: "%b %d"
month_names:
-
- sausio
- vasario
- kovo
- balandžio
- gegužės
- birželio
- liepos
- rugpjūčio
- rugsėjo
- spalio
- lapkričio
- gruodžio
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
few: apie %{count} valandas
one: apie %{count} valandą
other: apie %{count} valandų
about_x_months:
few: apie %{count} mėnesius
one: apie %{count} mėnesį
other: apie %{count} mėnesių
about_x_years:
few: apie %{count} metus
one: apie %{count} metus
other: apie %{count} metų
almost_x_years:
few: beveik %{count} metai
one: beveik %{count} metai
other: beveik %{count} metų
half_a_minute: pusė minutės
less_than_x_minutes:
few: mažiau nei %{count} minutės
one: mažiau nei %{count} minutė
other: mažiau nei %{count} minučių
less_than_x_seconds:
few: mažiau nei %{count} sekundės
one: mažiau nei %{count} sekundė
other: mažiau nei %{count} sekundžių
over_x_years:
few: virš %{count} metų
one: virš %{count} metų
other: virš %{count} metų
x_days:
few: "%{count} dienos"
one: "%{count} diena"
other: "%{count} dienų"
x_minutes:
few: "%{count} minutės"
one: "%{count} minutė"
other: "%{count} minučių"
x_months:
few: "%{count} mėnesiai"
one: "%{count} mėnesis"
other: "%{count} mėnesių"
x_seconds:
few: "%{count} sekundės"
one: "%{count} sekundė"
other: "%{count} sekundžių"
x_years:
few: "%{count} metai"
one: "%{count} metai"
other: "%{count} metai"
prompts:
day: Diena
hour: Valanda
minute: Minutė
month: Mėnuo
second: Sekundės
year: Metai
errors:
format: "%{attribute} %{message}"
messages:
accepted: turi būti patvirtintas
blank: negali būti tuščias
confirmation: neteisingai pakartotas
empty: negali būti tuščias
equal_to: turi būti lygus %{count}
even: turi būti lyginis skaičius
exclusion: yra rezervuotas
greater_than: turi būti didesnis už %{count}
greater_than_or_equal_to: turi būti didesnis arba lygus %{count}
in: turi būti skaičiuje %{count}
inclusion: nenumatyta reikšmė
invalid: neteisingas
less_than: turi būti mažesnis už %{count}
less_than_or_equal_to: turi būti mažesnis arba lygus %{count}
model_invalid: 'Tikrinimo klaida: %{errors}'
not_a_number: ne skaičius
not_an_integer: privalo būti sveikas skaičius
odd: turi būti nelyginis skaičius
other_than: privalo būti kitoks nei %{count}
present: turi būti tuščias
required: turi egzistuoti
taken: jau užimtas
too_long:
few: per ilgas (daugiausiai %{count} simboliai)
one: per ilgas (daugiausiai %{count} simbolis)
other: per ilgas (daugiausiai %{count} simbolių)
too_short:
few: per trumpas (mažiausiai %{count} simboliai)
one: per trumpas (mažiausiai %{count} simbolis)
other: per trumpas (mažiausiai %{count} simbolių)
wrong_length: neteisingo ilgio (turi būti %{count} simboliai)
template:
body: 'Šiuose laukuose yra klaidų:'
header:
few: Išsaugant objektą %{model} rastos %{count} klaidos
one: Išsaugant objektą %{model} rasta %{count} klaida
other: Išsaugant objektą %{model} rasta %{count} klaidų
helpers:
select:
prompt: Prašom pasirinkti
submit:
create: Sukurti %{model}
submit: Išsaugoti %{model}
update: Atnaujinti %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: " "
precision: 3
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Milijardas
million: Milijonas
quadrillion: Kvadrilijonas
thousand: Tūkstantis
trillion: Trilijonas
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
few: Baitai
one: Baitas
other: Baitų
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " ir "
two_words_connector: " ir "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%Y %B %d %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,243 @@
---
lv:
activerecord:
errors:
messages:
record_invalid: 'Pārbaude neizdevās: %{errors}'
restrict_dependent_destroy:
has_many: Nevar dzēst ierakstu, jo ir atkarīgi %{record}
has_one: Nevar dzēst ierakstu, jo ir atkarīgs %{record}
date:
abbr_day_names:
- Sv.
- P.
- O.
- T.
- C.
- Pk.
- S.
abbr_month_names:
-
- Janv
- Febr
- Marts
- Apr
- Maijs
- Jūn
- Jūl
- Aug
- Sept
- Okt
- Nov
- Dec
day_names:
- svētdiena
- pirmdiena
- otrdiena
- trešdiena
- ceturtdiena
- piektdiena
- sestdiena
formats:
default: "%d.%m.%Y."
long: "%Y. gada %e. %B"
short: "%e. %B"
month_names:
-
- janvārī
- februārī
- martā
- aprīlī
- maijā
- jūnijā
- jūlijā
- augustā
- septembrī
- oktobrī
- novembrī
- decembrī
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: apmēram %{count} stunda
other: apmēram %{count} stundas
zero: apmēram %{count} stundas
about_x_months:
one: apmēram %{count} mēnesis
other: apmēram %{count} mēneši
zero: apmēram %{count} mēneši
about_x_years:
one: apmēram %{count} gads
other: apmēram %{count} gadi
zero: apmēram %{count} gadi
almost_x_years:
one: gandrīz %{count} gads
other: gandrīz %{count} gadi
zero: gandrīz %{count} gadi
half_a_minute: pusminūte
less_than_x_minutes:
one: mazāk par %{count} minūti
other: mazāk par %{count} minūtēm
zero: mazāk par %{count} minūtēm
less_than_x_seconds:
one: mazāk par %{count} sekundi
other: mazāk par %{count} sekundēm
zero: mazāk par %{count} sekundēm
over_x_years:
one: vairāk kā %{count} gads
other: vairāk kā %{count} gadi
zero: vairāk kā %{count} gadi
x_days:
one: "%{count} diena"
other: "%{count} dienas"
zero: "%{count} dienas"
x_minutes:
one: "%{count} minūte"
other: "%{count} minūtes"
zero: "%{count} minūtes"
x_months:
one: "%{count} mēnesis"
other: "%{count} mēneši"
zero: "%{count} mēneši"
x_seconds:
one: "%{count} sekunde"
other: "%{count} sekundes"
zero: "%{count} sekundes"
prompts:
day: diena
hour: stunda
minute: minūte
month: mēnesis
second: sekunde
year: gads
errors:
format: "%{attribute} %{message}"
messages:
accepted: ir jāpiekrīt
blank: ir jābūt aizpildītam
confirmation: nesakrīt ar apstiprinājumu
empty: ir jābūt aizpildītam
equal_to: ir jābūt vienādam ar %{count}
even: ir jābūt pāra skaitlim
exclusion: nav pieejams
greater_than: ir jābūt lielākam par %{count}
greater_than_or_equal_to: ir jābūt lielākam vai vienādam ar %{count}
inclusion: nav iekļauts sarakstā
invalid: nav derīgs
less_than: ir jābūt mazākam par %{count}
less_than_or_equal_to: ir jābūt mazākam vai vienādam ar %{count}
model_invalid: 'Validācija neizdevās: %{errors}'
not_a_number: nav skaitlis
not_an_integer: ir jābūt veselam skaitlim
odd: ir jābūt nepāra skaitlim
other_than: jābūt citam nekā %{count}
present: jābūt tukšam
required: ir jābūt
taken: ir jau aizņemts
too_long:
one: ir par garu (maksimums ir %{count} simbols)
other: ir par garu (maksimums ir %{count} simboli)
zero: ir par garu (maksimums ir %{count} simboli)
too_short:
one: ir par īsu (minimums ir %{count} simbols)
other: ir par īsu (minimums ir %{count} simboli)
zero: ir par īsu (minimums ir %{count} simboli)
wrong_length:
one: ir nepareizs garums (jābūt %{count} simbolam)
other: ir nepareizs garums (jābūt %{count} simboliem)
zero: ir nepareizs garums (jābūt %{count} simboliem)
template:
body: 'Problēmas ir šajos ievades laukos:'
header:
one: Dēļ %{count} kļūdas šis %{model} netika saglabāts
other: Dēļ %{count} kļūdām šis %{model} netika saglabāts
zero: Dēļ %{count} kļūdām šis %{model} netika saglabāts
helpers:
select:
prompt: Lūdzu izvēlies
submit:
create: Izveidot %{model}
submit: Saglabāt %{model}
update: Atjaunināt %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: miljards
other: miljardi
zero: miljardi
million:
one: miljons
other: miljoni
zero: miljoni
quadrillion:
one: kvadriljons
other: kvadriljoni
zero: kvadriljoni
thousand:
one: tūkstotis
other: tūkstoši
zero: tūkstoši
trillion:
one: triljons
other: triljoni
zero: triljoni
unit: ''
format:
delimiter: ''
precision: 1
significant: false
strip_insignificant_zeros: false
storage_units:
format: "%n %u"
units:
byte:
one: baits
other: baiti
zero: baiti
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " un "
two_words_connector: " un "
words_connector: ", "
time:
am: priekšpusdiena
formats:
default: "%Y. gada %e. %B, %H:%M"
long: "%Y. gada %e. %B, %H:%M:%S"
short: "%d.%m.%Y., %H:%M"
pm: pēcpusdiena

View File

@@ -0,0 +1,219 @@
---
mg:
activerecord:
errors:
messages:
record_invalid: 'Tsy tontosa ny fankatoavana : %{errors}'
restrict_dependent_destroy:
has_many: Tsy afaka mamafa io andalana io ianao satria misy %{record} betsaka
miankina aminy
has_one: Tsy afaka mamafa io andalana io ianao satria misy %{record} iray
miankina amin'io
date:
abbr_day_names:
- Alah
- Alats
- Tal
- Alar
- Alak
- Zom
- Asab
abbr_month_names:
-
- jan.
- feb.
- mar.
- apr.
- may
- jona
- jolay.
- aog
- sept.
- okt.
- nov.
- des.
day_names:
- Alahady
- Alatsinainy
- Talata
- Alarobia
- Alakamisy
- Zoma
- Asabotsy
formats:
default: "%d/%m/%Y"
long: "%e %B %Y"
short: "%e %b"
month_names:
-
- janoary
- febroary
- martsa
- aprily
- may
- jona
- jolay
- aogositra
- septambra
- aktobra
- novambra
- desambra
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: adiny iray eo ho eo
other: adiny %{count} eo ho eo
about_x_months:
one: iray volana eo ho eo
other: volana %{count} eo ho eo
about_x_years:
one: herintaona eo ho eo
other: taona %{count} eo ho eo
almost_x_years:
one: saika herintaona
other: saika %{count} taona
half_a_minute: antsasak'adiny
less_than_x_minutes:
one: latsaky ny iray segondra
other: latsaky ny %{count} minitra
zero: latsaky ny iray minitra
less_than_x_seconds:
one: latsaky ny iray segondra
other: latsaky ny %{count} segondra
zero: latsaky ny iray segondra
over_x_years:
one: Herintaona mahery
other: maherin'ny %{count} taona
x_days:
one: "%{count} andro"
other: "%{count} andro"
x_minutes:
one: "%{count} minitra"
other: "%{count} minitra"
x_months:
one: "%{count} volana"
other: "%{count} volana"
x_seconds:
one: "%{count} segondra"
other: "%{count} segondra"
x_years:
one: "%{count} taona"
other: "%{count} taona"
prompts:
day: Andro
hour: Ora
minute: Minitra
month: Volana
second: Segondra
year: Taona
errors:
format: "%{attribute} %{message}"
messages:
accepted: tsy maintsy ekena
blank: tsy maintsy fenoina
confirmation: tsy mifanaraka amin'ny %{attribute}
empty: tsy maintsy fenoina
equal_to: tsy maintsy mitovy amin'ny %{count}
even: tsy maintsy miankin-droa
exclusion: Tsy misy
greater_than: Tsy mihoatra ny %{count}
greater_than_or_equal_to: tsy maintsy mihoatra na mitovy amin'ny à %{count}
inclusion: tsy ao anaty lisitra
invalid: tsy ekena
less_than: tsy maintsy kely noho ny %{count}
less_than_or_equal_to: tsy kely na mitovy nohon'ny %{count}
model_invalid: 'Fangatahana tsy tontosa: %{errors}'
not_a_number: tsy isa io
not_an_integer: tsy maintsy isa tsotra
odd: tsy maintsy impair
other_than: tsy maintsy hafa noho ny %{count}
present: tsy maintsy banga
required: tsy maintsy misy
taken: tsy misy
too_long:
one: dia lava loatra (tsy mihoatra ny litera iray)
other: dia lava loatra (tsy mihoatra ny litera %{count})
too_short:
one: dia fohy loatra (farafahakeliny litera iray)
other: dia fohy loatra (farafahakeliny litera %{count})
wrong_length:
one: tsy amin'ny halavany (tokony ho litera iray)
other: tsy amin'ny halavany (tokony ho litera %{count})
template:
body: 'Hamarino ireo saha manaraka azafady : '
header:
one: 'Tsy azo tadidiana ity %{model} : olana %{count}'
other: 'Tsy azo tadidiana ity %{model} : olana %{count}'
helpers:
select:
prompt: Misafidiana azafady
submit:
create: Mamorona %{model} iray
submit: Tadidiana ity %{model}
update: Ovaina ity %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: Ar
format:
delimiter: " "
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: tapitrisa
million: hetsy
quadrillion: hetsy tapitrisa
thousand: Arivo
trillion: arivo tapitrisa
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: octet
other: octets
eb: Eo
gb: Go
kb: ko
mb: Mo
pb: Po
tb: To
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " et "
two_words_connector: " et "
words_connector: ", "
time:
am: am
formats:
default: "%d %B %Y %Hh %Mmin %Ss"
long: "%A %d %B %Y %Hh%M"
short: "%d %b %Hh%M"
pm: pm

View File

@@ -0,0 +1,202 @@
---
mk:
activerecord:
errors:
messages:
record_invalid: 'неуспешна валидација: %{errors}'
date:
abbr_day_names:
- Нед
- Пон
- Вто
- Сре
- Чет
- Пет
- Саб
abbr_month_names:
-
- Јан
- Фев
- Мар
- Апр
- Мај
- Јун
- Јул
- Авг
- Сеп
- Окт
- Ное
- Дек
day_names:
- Недела
- Понеделник
- Вторник
- Среда
- Четврток
- Петок
- Сабота
formats:
default: "%d/%m/%Y"
long: "%B %e, %Y"
short: "%e %b"
month_names:
-
- Јануари
- Февруари
- Март
- Април
- Мај
- Јуни
- Јули
- Август
- Септември
- Октомври
- Ноември
- Декември
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: околу %{count} час
other: околу %{count} часа
about_x_months:
one: околу %{count} месец
other: околу %{count} месеци
about_x_years:
one: околу %{count} година
other: околу %{count} години
almost_x_years:
one: скоро %{count} година
other: скоро %{count} години
half_a_minute: пола минута
less_than_x_minutes:
one: помалку од %{count} минута
other: помалку од %{count} минути
less_than_x_seconds:
one: помалку од %{count} секунда
other: помалку од %{count} секунди
over_x_years:
one: над %{count} година
other: над %{count} години
x_days:
one: "%{count} ден"
other: "%{count} денови"
x_minutes:
one: "%{count} минута"
other: "%{count} минути"
x_months:
one: "%{count} месец"
other: "%{count} месеци"
x_seconds:
one: "%{count} секунда"
other: "%{count} секунди"
prompts:
day: Ден
hour: Час
minute: Минута
month: Месец
second: Секунди
year: Година
errors:
format: "%{attribute} %{message}"
messages:
accepted: мора да биде прифатен
blank: мора да биде зададен
confirmation: не се совпаѓа со својата потврда
empty: мора да биде зададен
equal_to: мора да биде еднакво на %{count}
even: мора да биде парно
exclusion: не е достапно
greater_than: мора да биде поголемо од %{count}
greater_than_or_equal_to: мора да биде поголемо или еднакво на %{count}
inclusion: не е во листата
invalid: не е исправен
less_than: мора да биде помало од %{count}
less_than_or_equal_to: мора да биде помало или еднакво на %{count}
not_a_number: 'не е број '
not_an_integer: не е цел број
odd: мора да биде непарно
taken: е зафатено
too_long:
one: е предолг (не повеќе од %{count} карактер)
other: е предолг (не повеќе од %{count} карактери)
too_short:
one: е прекраток (не помалку од %{count} карактер)
other: е прекраток (не помалку од %{count} карактери)
wrong_length:
one: несоодветна должина (мора да имате %{count} карактер)
other: несоодветна должина (мора да имате %{count} карактери)
template:
body: 'Ве молиме проверете ги следните полиња:'
header:
one: 'Не успеав да го зачувам %{model}: %{count} грешка.'
other: 'Не успеав да го зачувам %{model}: %{count} грешки.'
helpers:
select:
prompt: Одберете
submit:
create: Креира %{model}
submit: Зачувај %{model}
update: Измени %{model}
number:
currency:
format:
delimiter: ","
format: "%n %u"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: MKD
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: илјади
million: милјони
quadrillion: милјарди
thousand: трилјони
trillion: квадрилјони
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: бајт
other: бајти
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", и "
two_words_connector: " и "
words_connector: ", "
time:
am: АМ
formats:
default: "%a %d %b %Y %H:%M:%S %Z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: ПМ

View File

@@ -0,0 +1,210 @@
---
ml:
activerecord:
errors:
messages:
record_invalid: 'Validation failed: %{errors}'
restrict_dependent_destroy:
has_many: "%{record} ആയി ബന്ദം ഉള്ളതിനാൽ നീക്കം ചെയ്യാൻ പറ്റില്ല"
has_one: "%{record} ആയി ബന്ദം ഉള്ളതിനാൽ നീക്കം ചെയ്യാൻ പറ്റില്ല"
date:
abbr_day_names:
- ഞാ.
- തി.
- ചൊ.
- ബു.
- വ്യാ.
- വെ.
- ശ.
abbr_month_names:
-
- ജനു.
- ഫെബ്ര.
- മാർ.
- എപ്രി.
- മെയ്.
- ജൂണ്‍.
- ജൂലൈ.
- ആഗ.
- സെപ്തം.
- ഒക്ടോ.
- നവം.
- ഡിസം.
day_names:
- ഞായര്‍
- തിങ്കള്‍
- ചൊവ്വ
- ബുധൻ
- വ്യാഴം
- വെള്ളി
- ശനി
formats:
default: "%d-%m-%Y"
long: "%d %B, %Y"
short: "%d %b"
month_names:
-
- ജനുവരി
- ഫെബ്രുവരി
- മാർച്ച്
- ഏപ്രിൽ
- മെയ്
- ജൂണ്‍
- ജൂലൈ
- ഓഗസ്റ്റ്‌
- സെപ്റ്റംബർ
- ഒക്ടോബർ
- നവംബർ
- ഡിസംബർ
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: എകദേശം %{count} മണിക്കൂർ
other: എകദേശം %{count} മണിക്കൂർ
about_x_months:
one: എകദേശം %{count} മാസം
other: എകദേശം %{count} മാസം
about_x_years:
one: എകദേശം %{count} വർഷം
other: എകദേശം %{count} വർഷം
almost_x_years:
one: ഏതാണ്ട് %{count} വർഷം
other: ഏതാണ്ട് %{count} വർഷം
half_a_minute: അര സൂക്ഷ്മ
less_than_x_minutes:
one: ഒരു മിനുറ്റിനു ഉള്ളിൽ
other: "%{count} മിനുറ്റിനു ഉള്ളിൽ"
less_than_x_seconds:
one: ഒരു നിമിഷത്തിനു ഉള്ളിൽ
other: "%{count} നിമിഷത്തിനു ഉള്ളിൽ"
over_x_years:
one: ഒരു വര്ഷത്തിനു മേലെ
other: "%{count} വര്ഷത്തിനു മേലെ"
x_days:
one: "%{count} ദിവസം"
other: "%{count} ദിവസങ്ങൾ"
x_minutes:
one: "%{count} മിനിറ്റ്"
other: "%{count} മിനിറ്റ്"
x_months:
one: "%{count} മാസം"
other: "%{count} മാസം"
x_seconds:
one: "%{count} നിമിഷം"
other: "%{count} നിമിഷം"
prompts:
day: ദിവസം
hour: മണിക്കൂർ
minute: സുക്ഷ്മ
month: സുക്ഷ്മ
second: നിമിഷം
year: വർഷം
errors:
format: "%{attribute} %{message}"
messages:
accepted: സ്വീകരികേണ്ടത് അത്യാവശ്യം ആണ്
blank: ഒഴിവായി കിടക്കുവാൻ പാടുള്ളതല്ല
confirmation: "%{attribute} ആയി സാമ്യം ഇല്ല"
empty: ഒഴിവായി കിടക്കുവാൻ പാടുള്ളതല്ല
equal_to: "%{count} ആയി സാമ്യം വേണം"
even: ഇരട്ട സംഖ്യ ആയിരിക്കണം
exclusion: കരുതിവെച്ചിരികുന്നതാണ്
greater_than: "%{count} നേകാൾ വലുതായിരിക്കണം"
greater_than_or_equal_to: "%{count} നു തുല്യമോ അല്ലെങ്കിൽ വലുതോ ആയിരിക്കണം"
inclusion: ഇതിൽ ഉള്ട്പെട്ടിട്ടില്ല
invalid: അസാധുവാണ്
less_than: "%{count} നേകാൾ ചെറുതായിരിക്കണം"
less_than_or_equal_to: "%{count} നു തുല്യമോ അല്ലെങ്കിൽ ചെറുതോ ആയിരിക്കണം"
model_invalid: 'മൂല്യനിർണ്ണയം പരാജയപ്പെട്ടു: %{errors}'
not_a_number: ഒരു അക്കം അല്ല
not_an_integer: ഒരു അക്കം ആയിരിക്കണം
odd: ഒട്ടസന്ഘ്യ ആയിരിക്കണം
other_than: must be other than %{count}
present: ഒഴിവായി ഇരിക്കണം
required: എന്തായാലും ഉണ്ടായിരിക്കണം
taken: ഇതിനു മുൻപേ ഉപയോഗിച്ചിരിക്കുന്നു
too_long:
one: വളരെ വലുതാണ് (പരമാവധി %{count} പ്രതീകം)
other: വളരെ വലുതാണ് (പരമാവധി %{count} പ്രതീകങ്ങൾ)
too_short:
one: വളരെ ചെറുതാണ് (ഏറ്റവും കുറഞ്ഞത്‌ %{count} പ്രതീകം)
other: വളരെ ചെറുതാണ് (ഏറ്റവും കുറഞ്ഞത്‌ %{count} പ്രതീകങ്ങൾ)
wrong_length:
one: തെറ്റായ നീളം ആണ് (%{count} പ്രതീകം ആയിരിക്കണം)
other: തെറ്റായ നീളം ആണ് (%{count} പ്രതീകങ്ങൾ ആയിരിക്കണം)
template:
body: 'താഴെ പറഞ്ഞവയിൽ തെറ്റുകൾ ഉണ്ട്:'
header:
one: "%{model} സേവ് ചെയ്യുനത്തിൽ നിന്നും ഒരു തെറ്റ് വിലക്കിയിരിക്കുന്നു"
other: "%{model} സേവ് ചെയ്യുനത്തിൽ നിന്നും %{count} തെറ്റുകൾ വിലക്കിയിരിക്കുന്നു"
helpers:
select:
prompt: ദയവായി തിരഞ്ഞെടുക്കുക
submit:
create: "%{model} സൃഷ്ടിക്കുക"
submit: "%{model} സേവ് ചെയ്യുക"
update: "%{model} തിരുത്തുക്ക"
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: നൂറുകോടി
million: ദശലക്ഷം
quadrillion: ക്വാഡ്രില്യൺ
thousand: ആയിരം
trillion: ട്രില്യൺ
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: ബൈറ്റ്
other: ബൈറ്റുകൾ
gb: ജി.ബി
kb: കെ.ബി.
mb: എം.ബി.
tb: ടി.ബി
percentage:
format:
delimiter: ''
format: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", ഒപ്പം "
two_words_connector: " ഒപ്പം "
words_connector: ", "
time:
am: രാവിലെ
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%Y, %B %d %H:%M"
short: "%d %b %H:%M"
pm: വൈകിട്ട്

View File

@@ -0,0 +1,202 @@
---
mn:
activerecord:
errors:
messages:
record_invalid: 'Шалгалт амжилтгүй: %{errors}'
date:
abbr_day_names:
- Ня
- Да
- Мя
- Лх
- Пү
- Ба
- Бя
abbr_month_names:
-
- 1 сар
- 2 сар
- 3 сар
- 4 сар
- 5 сар
- 6 сар
- 7 сар
- 8 сар
- 9 сар
- 10 сар
- 11 сар
- 12 сар
day_names:
- Ням
- Даваа
- Мягмар
- Лхагва
- Пүрэв
- Баасан
- Бямба
formats:
default: "%Y-%m-%d"
long: "%Y %B %d"
short: "%y-%m-%d"
month_names:
-
- 1 сар
- 2 сар
- 3 сар
- 4 сар
- 5 сар
- 6 сар
- 7 сар
- 8 сар
- 9 сар
- 10 сар
- 11 сар
- 12 сар
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: "%{count} цаг орчим"
other: "%{count} цаг орчим"
about_x_months:
one: "%{count} сар орчим"
other: "%{count} сар орчим"
about_x_years:
one: "%{count} жил орчим"
other: "%{count} жил орчим"
almost_x_years:
one: бараг %{count} жил
other: бараг %{count} жил
half_a_minute: хагас минут
less_than_x_minutes:
one: "%{count} минутаас бага"
other: "%{count} минутаас бага"
less_than_x_seconds:
one: "%{count} секундээс бага"
other: "%{count} секундээс бага"
over_x_years:
one: "%{count} жилээс илүү"
other: "%{count} жилээс илүү"
x_days:
one: "%{count} өдөр"
other: "%{count} өдөр"
x_minutes:
one: "%{count} минут"
other: "%{count} минут"
x_months:
one: "%{count} сар"
other: "%{count} сар"
x_seconds:
one: "%{count} секунд"
other: "%{count} секунд"
prompts:
day: Өдөр
hour: Цаг
minute: Минут
month: Сар
second: Секунд
year: Жил
errors:
format: "%{attribute} %{message}"
messages:
accepted: хүлээн зөвшөөрөгдсөн байх ёстой
blank: хоосон байж болохгүй
confirmation: адилгүй байна
empty: байхгүй байж болохгүй
equal_to: "%{count}-тэй тэнцүү байх ёстой"
even: тэгш байх ёстой
exclusion: бол ашиглахад хориотой
greater_than: "%{count}-с их байх ёстой"
greater_than_or_equal_to: "%{count}-с их юмуу эсвэл тэнцүү байх ёстой"
inclusion: жагсаалтанд алга байна
invalid: буруу байна
less_than: "%{count}-с бага байх ёстой"
less_than_or_equal_to: "%{count}-с бага юмуу эсвэл тэнцүү байх ёстой"
not_a_number: тоо биш байна
not_an_integer: бүхэл тоо байх ёстой
odd: сонгой байх ёстой
taken: аль хэдийн авчихсан байна
too_long:
one: урт байна (хамгийн уртдаа %{count} тэмдэгт)
other: урт байна (хамгийн уртдаа %{count} тэмдэгт)
too_short:
one: богино байна (хамгийн багадаа %{count} тэмдэгт)
other: богино байна (хамгийн багадаа %{count} тэмдэгт)
wrong_length:
one: урт нь буруу байна (%{count} тэмдэгт байх ёстой)
other: урт нь буруу байна (%{count} тэмдэгт байх ёстой)
template:
body: 'Дараах талбарууд дээр алдаа гарлаа:'
header:
one: "%{count} алдаа гарсан тул %{model} хадгалагдахгүй байна"
other: "%{count} алдаа гарсан тул %{model} хадгалагдахгүй байна"
helpers:
select:
prompt: Сонгоно уу
submit:
create: Үүсгэх
submit: Хадгалах
update: Шинэчлэх
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: төг.
format:
delimiter: " "
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Тэрбум
million: Сая
quadrillion: Тунамал
thousand: Мянга
trillion: Их наяд
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Байт
other: Байт
gb: ГБ
kb: КБ
mb: МБ
tb: ТБ
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " болон "
two_words_connector: " болон "
words_connector: ", "
time:
am: өглөө
formats:
default: "%Y-%m-%d %H:%M"
long: "%Y %B %d, %H:%M:%S"
short: "%y-%m-%d"
pm: орой

View File

@@ -0,0 +1,207 @@
---
mr-IN:
activerecord:
errors:
messages:
record_invalid: 'प्रमाणीकरण अयशस्वी: %{errors}'
restrict_dependent_destroy:
has_many: अवलंबून %{record} अस्तित्वात असल्याने रेकॉर्ड हटवू शकत नाही
has_one: अवलंबून %{record} अस्तित्वात असल्याने रेकॉर्ड हटवू शकत नाही
date:
abbr_day_names:
- सोम
- मंगळ
- बुध
- गुरु
- शुक्र
- शनि
- रवि
abbr_month_names:
-
- जाने
- फेब्रु
- मार्च
- एप्रि
- मे
- जून
- जुलै
- ऑग
- सेप्टें
- ऑक्टोबर
- नोव्हें
- डिसे
day_names:
- सोमवार
- मंगळवार
- बुधवार
- गुरुवार
- शुक्रवार
- शनिवार
- रविवार
formats:
default: "%d-%m-%Y"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- जानेवारी
- फेब्रुवारी
- मार्च
- एप्रिल
- मे
- जून
- जुलै
- ऑगस्ट
- सप्टेंबर
- ऑक्टोबर
- नोव्हेंबर
- डिसेंबर
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: सुमारे एक तास
other: सुमारे %{count} तास
about_x_months:
one: सुमारे %{count} महीना
other: सुमारे %{count} महिना
about_x_years:
one: सुमारे %{count} वर्ष
other: सुमारे %{count} वर्ष
almost_x_years:
one: जवळजवळ एक वर्ष
other: जवळजवळ %{count} वर्ष
half_a_minute: अर्धा मिनिट
less_than_x_minutes:
one: एका मिनिटापेक्षा कमी
other: "%{count} मिनिटापेक्षा कमी"
less_than_x_seconds:
one: एक सेकंद पेक्षा कमी
other: "%{count} सेकंद पेक्षा कमी"
over_x_years:
one: एका वर्षापेक्षा जास्त काळ
other: "%{count} वर्षापेक्षा जास्त काळ"
x_days:
one: एक दिवस
other: "%{count} दिवस"
x_minutes:
one: एक मिनिट
other: "%{count} मिनिट"
x_months:
one: एक महिना
other: "%{count} महिना"
x_seconds:
one: एक सेकंद
other: "%{count} सेकंद"
prompts:
day: दिवस
hour: तास
minute: मिनिट
month: महिना
second: सेकंद
year: वर्ष
errors:
format: "%{attribute} %{message}"
messages:
accepted: मान्य केले पाहिजे
blank: रिक्त ठेवता येणार नाही
confirmation: "%{attribute} जुळत नाही"
empty: रिक्त असू शकत नाही
equal_to: "%{count} समान असणे आवश्यक"
even: समांक असणे आवश्यक आहे
exclusion: राखीव आहे
greater_than: "%{count} पेक्षा जास्त असणे आवश्यक आहे"
greater_than_or_equal_to: "%{count} पेक्षा मोठे किंवा समान असणे आवश्यक आहे"
inclusion: यादीत समाविष्ट नाही
invalid: अवैध आहे
less_than: "%{count} पेक्षा कमी असणे आवश्यक"
less_than_or_equal_to: "%{count} पेक्षा कमी किंवा समान असणे आवश्यक आहे"
not_a_number: क्रमांक नाही
not_an_integer: पूर्णांक असणे आवश्यक आहे
odd: विषम संख्या असणे आवश्यक आहे
other_than: "%{count} पेक्षा इतर असणे आवश्यक आहे"
present: रिक्त असणे आवश्यक आहे
taken: यापूर्वीच घेतले गेले आहे
too_long:
one: खूप लांब आहे (जास्तीत जास्त एक वर्ण परवानगी आहे)
other: खूप लांब आहे (जास्तीत जास्त %{count} वर्ण परवानगी आहे)
too_short:
one: खूप लहान आहे (किमान एक वर्ण परवानगी आहे)
other: खूप लहान आहे (किमान %{count} वर्ण परवानगी आहे)
wrong_length:
one: लांबी चुक आहे (एक वर्ण असणे आवश्यक आहे)
other: लांबी चुक आहे (%{count} वर्ण असणे आवश्यक आहे)
template:
body: 'खालील फील्ड सह समस्या होते:'
header:
one: एक चूक ह्या %{model} ला जतन करण्यापासून प्रतिबंधित करत आहे
other: "%{count} चुका ह्या %{model} ला जतन करण्यापासून प्रतिबंधित करत आहे"
helpers:
select:
prompt: कृपया निवडा
submit:
create: "%{model} निर्माण करा"
submit: "%{model} जतन करा"
update: "%{model} अद्यतनित करा"
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "₹"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: अब्ज
million: दशलक्ष
quadrillion: एकावर १५ शून्य इतकी संख्या
thousand: हजार
trillion: एकावर १२ शून्ये इतकी संख्या
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", आणि "
two_words_connector: " आणि "
words_connector: ", "
time:
am: म.पू.
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: म.नं.

View File

@@ -0,0 +1,202 @@
---
ms:
activerecord:
errors:
messages:
record_invalid: 'Pengesahan gagal: %{errors}'
date:
abbr_day_names:
- Ahd
- Isn
- Sel
- Rab
- Kha
- Jum
- Sab
abbr_month_names:
-
- Jan
- Feb
- Mac
- Apr
- Mei
- Jun
- Jul
- Ogo
- Sep
- Okt
- Nov
- Dis
day_names:
- Ahad
- Isnin
- Selasa
- Rabu
- Khamis
- Jumaat
- Sabtu
formats:
default: "%d-%m-%Y"
long: "%d %B, %Y"
short: "%d %b"
month_names:
-
- Januari
- Febuari
- Mac
- April
- Mei
- Jun
- Julai
- Ogos
- September
- Oktober
- November
- Disember
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: lebih kurang %{count} jam
other: lebih kurang %{count} jam
about_x_months:
one: lebih kurang %{count} bulan
other: lebih kurang %{count} bulan
about_x_years:
one: lebih kurang %{count} tahun
other: lebih kurang %{count} tahun
almost_x_years:
one: hampir %{count} tahun
other: hampir %{count} tahun
half_a_minute: setengah minit
less_than_x_minutes:
one: kurang dari satu minit
other: kurang dari %{count} minit
less_than_x_seconds:
one: kurang dari satu saat
other: kurang dari %{count} saat
over_x_years:
one: lebih %{count} tahun
other: lebih %{count} tahun
x_days:
one: "%{count} hari"
other: "%{count} hari"
x_minutes:
one: "%{count} minit"
other: "%{count} minit"
x_months:
one: "%{count} bulan"
other: "%{count} bulan"
x_seconds:
one: "%{count} saat"
other: "%{count} saat"
prompts:
day: Hari
hour: Jam
minute: Minit
month: Bulan
second: Saat
year: Tahun
errors:
format: "%{attribute} %{message}"
messages:
accepted: wajib diterima
blank: tidak boleh dikosongkan
confirmation: tidak sama dengan penegasan
empty: tidak boleh dikosongkan
equal_to: mesti sama dengan %{count}
even: mesti genap
exclusion: telah terpelihara
greater_than: mesti lebih dari %{count}
greater_than_or_equal_to: mesti melibihi atau sama dengan %{count}
inclusion: tidak termasuk dalam senarai
invalid: adalah tidak laku
less_than: mesti kurang daripada %{count}
less_than_or_equal_to: mesti kurang daripada atat sama dengan %{count}
not_a_number: bukan nombor
not_an_integer: mestilah integer
odd: mesti ganjil
taken: telah digunakan
too_long:
one: terlalu panjang (maksima adalah %{count} karakter)
other: terlalu panjang (maksima adalah %{count} karakter)
too_short:
one: terlalu pendek (minima adalah %{count} karakter)
other: terlalu pendek (minima adalah %{count} karakter)
wrong_length:
one: mempunyai panjang yang salah (sepatutnya %{count} karakter sahaja)
other: mempunyai panjang yang salah(sepatutnya %{count} karakter sahaja)
template:
body: 'Terdapat masalah dengan medan data tersebut:'
header:
one: "%{count} ralat menhalang %{model} ini dari disimpan"
other: "%{count} ralat menhalang %{model} ini dari disimpan"
helpers:
select:
prompt: Sila pilih
submit:
create: Cipta %{model}
submit: Simpan %{model}
update: Kemaskini %{model}
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: RM
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Ribu Juta
million: Juta
quadrillion: Juta-juta
thousand: Ribu
trillion: Trilion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Bait
other: Bait
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", dan "
two_words_connector: " dan "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B, %Y %H:%M"
short: "%d %b %H:%M"
pm: pm

View File

@@ -0,0 +1,221 @@
---
nb:
activerecord:
errors:
messages:
record_invalid: 'Det oppstod feil: %{errors}'
restrict_dependent_destroy:
has_many: Kan ikke slette registreringen, fordi %{record} avhenger av denne.
has_one: Kan ikke slette registreringen, fordi %{record} avhenger av denne.
date:
abbr_day_names:
- søn
- man
- tir
- ons
- tor
- fre
- lør
abbr_month_names:
-
- jan
- feb
- mar
- apr
- mai
- jun
- jul
- aug
- sep
- okt
- nov
- des
day_names:
- søndag
- mandag
- tirsdag
- onsdag
- torsdag
- fredag
- lørdag
formats:
default: "%d.%m.%Y"
long: "%e. %B %Y"
short: "%e. %b"
month_names:
-
- januar
- februar
- mars
- april
- mai
- juni
- juli
- august
- september
- oktober
- november
- desember
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: rundt %{count} time
other: rundt %{count} timer
about_x_months:
one: rundt %{count} måned
other: rundt %{count} måneder
about_x_years:
one: rundt %{count} år
other: rundt %{count} år
almost_x_years:
one: nesten %{count} år
other: nesten %{count} år
half_a_minute: et halvt minutt
less_than_x_minutes:
one: mindre enn %{count} minutt
other: mindre enn %{count} minutter
less_than_x_seconds:
one: mindre enn %{count} sekund
other: mindre enn %{count} sekunder
over_x_years:
one: over %{count} år
other: over %{count} år
x_days:
one: "%{count} dag"
other: "%{count} dager"
x_minutes:
one: "%{count} minutt"
other: "%{count} minutter"
x_months:
one: "%{count} måned"
other: "%{count} måneder"
x_seconds:
one: "%{count} sekund"
other: "%{count} sekunder"
x_years:
one: "%{count} år"
other: "%{count} år"
prompts:
day: dag
hour: time
minute: minutt
month: måned
second: sekund
year: år
errors:
format: "%{attribute} %{message}"
messages:
accepted: må være akseptert
blank: kan ikke være tom
confirmation: er ikke lik %{attribute}
empty: kan ikke være tom
equal_to: må være lik %{count}
even: må være partall
exclusion: er reservert
greater_than: må være større enn %{count}
greater_than_or_equal_to: må være større enn eller lik %{count}
inclusion: er ikke inkludert i listen
invalid: er ugyldig
less_than: må være mindre enn %{count}
less_than_or_equal_to: må være mindre enn eller lik %{count}
model_invalid: 'Det oppstod feil: %{errors}'
not_a_number: er ikke et tall
not_an_integer: er ikke et heltall
odd: må være oddetall
other_than: kan ikke være nøyaktig %{count}
present: må være tom
required: må eksistere
taken: er allerede i bruk
too_long:
one: er for lang (maksimalt %{count} tegn)
other: er for lang (maksimalt %{count} tegn)
too_short:
one: er for kort (minst %{count} tegn)
other: er for kort (minst %{count} tegn)
wrong_length:
one: har feil lengde (må være %{count} tegn)
other: har feil lengde (må være %{count} tegn)
template:
body: 'Det oppstod problemer med følgende felt:'
header:
one: Kunne ikke lagre %{model} på grunn av én feil.
other: Kunne ikke lagre %{model} på grunn av %{count} feil.
helpers:
select:
prompt: Vennligst velg
submit:
create: Lag %{model}
submit: Lagre %{model}
update: Oppdater %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: kr
format:
delimiter: " "
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: true
human:
decimal_units:
format: "%n %u"
units:
billion:
one: milliard
other: milliarder
million:
one: million
other: millioner
quadrillion:
one: billiard
other: billiarder
thousand: tusen
trillion:
one: billion
other: billioner
unit: ''
format:
delimiter: " "
precision: 1
significant: false
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
gb: GB
kb: kB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " og "
two_words_connector: " og "
words_connector: ", "
time:
am: am
formats:
default: "%A, %e. %B %Y, %H:%M"
long: "%A, %e. %B %Y, %H:%M"
short: "%e. %B, %H:%M"
pm: pm

View File

@@ -0,0 +1,205 @@
---
ne:
activerecord:
errors:
messages:
record_invalid: 'मान्य भएन: %{errors}'
restrict_dependent_destroy:
has_many: रेकर्ड मेटाउन सक्दैन किनभने धेरै निर्भर %{record} अवस्थित छन
has_one: रेकर्ड मेटाउन सक्दैन किनभने एउटा निर्भर %{record} अवस्थित छ
date:
abbr_day_names:
- आईत
- सोम
- मंगल
- बुध
- बिही
- शुक्र
- शनि
abbr_month_names:
-
- जन.
- फेब्रु.
- मार्च
- अप्रिल
- मई
- जुन
- जुलाई
- अगष्ट
- सेप्ट.
- अक्टो.
- नोभ.
- डिसे.
day_names:
- आईतबार
- सोमबार
- मंगलबार
- बुधबार
- बिहीबार
- शुक्रबार
- शनिबार
formats:
default: "%Y-%m-%d"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- जनवरी
- फेब्रुवरी
- मार्च
- अप्रिल
- मई
- जुन
- जुलाई
- अगष्ट
- सेप्टेम्बार
- अक्टोबर
- नोभेम्बर
- डिसेम्बर
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: लगभग %{count} घण्टा
other: लगभग %{count} घण्टा
about_x_months:
one: लगभग %{count} महिना
other: लगभग %{count} महिना
about_x_years:
one: लगभग %{count} बर्ष
other: लगभग %{count} बर्ष
almost_x_years:
one: झण्डै %{count} बर्ष
other: झण्डै %{count} बर्ष
half_a_minute: आधा मिनेट
less_than_x_minutes:
one: "%{count} मिनेटभन्दा कम्ति"
other: "%{count} मिनेटभन्दा कम्ति"
less_than_x_seconds:
one: "%{count} सेकेण्डभन्दा कम्ति"
other: "%{count} सेकेण्डभन्दा कम्ति"
over_x_years:
one: "%{count} बर्षभन्दा बढी"
other: "%{count} बर्षभन्दा बेसी"
x_days:
one: "%{count} दिन"
other: "%{count} दिन"
x_minutes:
one: "%{count} मिनेट"
other: "%{count} मिनेट"
x_months:
one: "%{count} महिना"
other: "%{count} महिना"
x_seconds:
one: "%{count} सेकेण्ड"
other: "%{count} सेकेण्ड"
prompts:
day: दिन
hour: घण्टा
minute: मिनेट
month: महिना
second: सेकेण्ड
year: बर्ष
errors:
format: "%{attribute} %{message}"
messages:
accepted: स्वीकार गरिनुपर्नेछ
blank: खाली हुन सक्दैन
confirmation: पुष्टिकरणसँग मेल खाँदैन
empty: रित्तो हुन सक्दैन
equal_to: "%{count} सँग बराबर हुनुपर्नेछ"
even: जोर संख्या हुनुपर्नेछ
exclusion: प्रयोगको लागी संरक्षित छ
greater_than: "%{count} भन्दा बेसी हुनुपर्नेछ"
greater_than_or_equal_to: "%{count} सँग बराबर अथवा बेसी हुनुपर्नेछ"
inclusion: सुचीमा सामेल गरिएको छैन
invalid: अमान्य छ
less_than: "%{count} भन्दा कम हुनुपर्नेछ"
less_than_or_equal_to: "%{count} सँग बराबर अथवा कम हुनुपर्नेछ"
not_a_number: अंक होईन
not_an_integer: पुर्णाकं हुनुपर्नेछ
odd: बिजोर संख्या हुनुपर्नेछ
taken: पहिल्यै प्रयोग गरीएको छ
too_long:
one: धेरै लामो छ (अधिक्तम %{count} character हो)
other: धेरै लामो छ (अधिक्तम %{count} characters हो)
too_short:
one: धेरै छोटो छ (न्युनत्तम %{count} character हो)
other: धेरै छोटो छ (न्युनत्तम %{count} characters हो)
wrong_length:
one: गलत लम्बाई हो (%{count} character हुनुपर्नेछ)
other: गलत लम्बाई हो (%{count} characters हुनुपर्नेछ)
template:
body: 'त्यहाँ निम्न क्षेत्रहरुमा समस्या देखियो:'
header:
one: "%{count} गल्तीले यस %{model} लाई सुरक्षित गर्नबाट रोक्यो"
other: "%{count} गल्तीले यस %{model} लाई सुरक्षित गर्नबाट रोक्यो"
helpers:
select:
prompt: कृपया छान्नुहोस्
submit:
create: नयाँ %{model} बनाउ
submit: "%{model} सुरक्षित गर"
update: "%{model} सामयिक बनाउ"
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: रू
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: अर्ब
million: Million
quadrillion: Quadrillion
thousand: हजार
trillion: Trillion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
gb: जि.बी.
kb: के.बी.
mb: एम.बी
tb: टि.बी
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", र "
two_words_connector: " र "
words_connector: ", "
time:
am: बिहान
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: बेलुका

View File

@@ -0,0 +1,213 @@
---
nl:
activerecord:
errors:
messages:
record_invalid: 'Validatie mislukt: %{errors}'
restrict_dependent_destroy:
has_many: Kan item niet verwijderen omdat afhankelijke %{record} bestaan
has_one: Kan item niet verwijderen omdat %{record} afhankelijk is
date:
abbr_day_names:
- zo
- ma
- di
- wo
- do
- vr
- za
abbr_month_names:
-
- jan
- feb
- mrt
- apr
- mei
- jun
- jul
- aug
- sep
- okt
- nov
- dec
day_names:
- zondag
- maandag
- dinsdag
- woensdag
- donderdag
- vrijdag
- zaterdag
formats:
default: "%d-%m-%Y"
long: "%e %B %Y"
short: "%e %b"
month_names:
-
- januari
- februari
- maart
- april
- mei
- juni
- juli
- augustus
- september
- oktober
- november
- december
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: ongeveer een uur
other: ongeveer %{count} uur
about_x_months:
one: ongeveer een maand
other: ongeveer %{count} maanden
about_x_years:
one: ongeveer een jaar
other: ongeveer %{count} jaar
almost_x_years:
one: bijna een jaar
other: bijna %{count} jaar
half_a_minute: een halve minuut
less_than_x_minutes:
one: minder dan een minuut
other: minder dan %{count} minuten
less_than_x_seconds:
one: minder dan een seconde
other: minder dan %{count} seconden
over_x_years:
one: meer dan een jaar
other: meer dan %{count} jaar
x_days:
one: "%{count} dag"
other: "%{count} dagen"
x_minutes:
one: "%{count} minuut"
other: "%{count} minuten"
x_months:
one: "%{count} maand"
other: "%{count} maanden"
x_seconds:
one: "%{count} seconde"
other: "%{count} seconden"
x_years:
one: "%{count} jaar"
other: "%{count} jaar"
prompts:
day: dag
hour: uur
minute: minuut
month: maand
second: seconde
year: jaar
errors:
format: "%{attribute} %{message}"
messages:
accepted: moet worden geaccepteerd
blank: moet opgegeven zijn
confirmation: komt niet overeen met %{attribute}
empty: moet opgegeven zijn
equal_to: moet gelijk zijn aan %{count}
even: moet even zijn
exclusion: is gereserveerd
greater_than: moet groter zijn dan %{count}
greater_than_or_equal_to: moet groter dan of gelijk zijn aan %{count}
inclusion: is niet in de lijst opgenomen
invalid: is ongeldig
less_than: moet minder zijn dan %{count}
less_than_or_equal_to: moet minder dan of gelijk zijn aan %{count}
model_invalid: 'Validatie mislukt: %{errors}'
not_a_number: is geen getal
not_an_integer: moet een geheel getal zijn
odd: moet oneven zijn
other_than: moet anders zijn dan %{count}
present: moet leeg zijn
required: moet bestaan
taken: is al in gebruik
too_long:
one: is te lang (maximaal %{count} teken)
other: is te lang (maximaal %{count} tekens)
too_short:
one: is te kort (minimaal %{count} teken)
other: is te kort (minimaal %{count} tekens)
wrong_length:
one: heeft onjuiste lengte (moet %{count} teken lang zijn)
other: heeft onjuiste lengte (moet %{count} tekens lang zijn)
template:
body: 'Er zijn problemen met de volgende velden:'
header:
one: "%{model} niet opgeslagen: %{count} fout gevonden"
other: "%{model} niet opgeslagen: %{count} fouten gevonden"
helpers:
select:
prompt: Maak een keuze
submit:
create: "%{model} toevoegen"
submit: "%{model} opslaan"
update: "%{model} bijwerken"
number:
currency:
format:
delimiter: "."
format: "%u %n"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: miljard
million: miljoen
quadrillion: biljard
thousand: duizend
trillion: biljoen
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: byte
other: bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " en "
two_words_connector: " en "
words_connector: ", "
time:
am: "'s ochtends"
formats:
default: "%a %d %b %Y %H:%M:%S %Z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: "'s middags"

View File

@@ -0,0 +1,208 @@
---
nn:
activerecord:
errors:
messages:
record_invalid: 'Valideringa mislukka: %{errors}'
restrict_dependent_destroy:
has_many: Kan ikkje sletta registreringa, fordi avhengige %{record} finst.
has_one: Kan ikkje sletta registreringa, fordi 1 avhengig %{record} finst.
date:
abbr_day_names:
- sun
- mån
- tys
- ons
- tor
- fre
- lau
abbr_month_names:
-
- jan
- feb
- mar
- apr
- mai
- jun
- jul
- aug
- sep
- okt
- nov
- des
day_names:
- sundag
- måndag
- tysdag
- onsdag
- torsdag
- fredag
- laurdag
formats:
default: "%d.%m.%Y"
long: "%e. %B %Y"
short: "%e. %b"
month_names:
-
- januar
- februar
- mars
- april
- mai
- juni
- juli
- august
- september
- oktober
- november
- desember
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: rundt %{count} time
other: rundt %{count} timar
about_x_months:
one: rundt %{count} månad
other: rundt %{count} månader
about_x_years:
one: rundt %{count} år
other: rundt %{count} år
almost_x_years: nesten %{count} år
half_a_minute: eit halvt minutt
less_than_x_minutes:
one: mindre enn %{count} minutt
other: mindre enn %{count} minutt
less_than_x_seconds:
one: mindre enn %{count} sekund
other: mindre enn %{count} sekund
over_x_years:
one: over %{count} år
other: over %{count} år
x_days:
one: "%{count} dag"
other: "%{count} dagar"
x_minutes:
one: "%{count} minutt"
other: "%{count} minutt"
x_months:
one: "%{count} månad"
other: "%{count} månader"
x_seconds:
one: "%{count} sekund"
other: "%{count} sekund"
prompts:
day: Dag
hour: Time
minute: Minutt
month: Månad
second: Sekund
year: År
errors:
format: "%{attribute} %{message}"
messages:
accepted: må vera akseptert
blank: kan ikkje vera blank
confirmation: er ikkje lik %{attribute}
empty: kan ikkje vera tom
equal_to: må vera lik %{count}
even: må vera partal
exclusion: er reservert
greater_than: må vera større enn %{count}
greater_than_or_equal_to: må vera større enn eller lik %{count}
inclusion: er ikkje inkludert i lista
invalid: er ugyldig
less_than: må vera mindre enn %{count}
less_than_or_equal_to: må vera mindre enn eller lik %{count}
model_invalid: 'Valideringa mislukka: %{errors}'
not_a_number: er ikkje eit tal
not_an_integer: er ikkje eit heiltal
odd: må vera oddetal
other_than: må vera noko anna enn %{count}
present: må vera blank
required: må eksistera
taken: er allereie i bruk
too_long: er for lang (maksimum %{count} teikn)
too_short: er for kort (minimum %{count} teikn)
wrong_length: har feil lengde (maksimum %{count} teikn)
template:
body: 'det oppstod problem i følgjande felt:'
header: kunne ikkje lagra %{model} grunna %{count} feil.
helpers:
select:
prompt: Gjer eit val
submit:
create: Lag %{model}
submit: Lagre %{model}
update: Oppdater %{model}
number:
currency:
format:
delimiter: ","
format: "%n %u"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: kr
format:
delimiter: ","
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: milliard
other: milliardar
million:
one: million
other: millionar
quadrillion:
one: billiard
other: billiardar
thousand: tusen
trillion:
one: billion
other: billionar
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
gb: GB
kb: kB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " og "
two_words_connector: " og "
words_connector: ", "
time:
am: am
formats:
default: "%A, %e. %B %Y, %H:%M"
long: "%A, %e. %B %Y, %H:%M"
short: "%e. %B, %H:%M"
pm: pm

View File

@@ -0,0 +1,212 @@
---
oc:
activerecord:
errors:
messages:
record_invalid: La validacion a fracassat:%{errors}
restrict_dependent_destroy:
has_many: Podètz pas suprimir lenregistrament perque i a %{record} dependéncias
has_one: Podètz pas suprimir lenregistrament perque i a una dependéncia
date:
abbr_day_names:
- dg
- dl
- dm
- dc
- dj
- dv
- ds
abbr_month_names:
-
- gen
- feb
- març
- abr
- mai
- junh
- jul
- ago
- set
- oct
- nov
- dec
day_names:
- dimenge
- diluns
- dimars
- dimècres
- dijòus
- divendres
- dissabte
formats:
default: "%e/%m/%Y"
long: Lo %e %B de %Y
short: "%e %b"
month_names:
-
- de genièr
- de febrièr
- de març
- dabrial
- de mai
- de junh
- de julhet
- dagost
- de setembre
- doctòbre
- de novembre
- de decembre
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: Fa una ora
other: Fa %{count} oras
about_x_months:
one: Fa un mes
other: Fa %{count} meses
about_x_years:
one: Fa un an
other: Fa %{count} ans
almost_x_years:
one: quasi un an
other: quasi %{count} ans
half_a_minute: mièja minuta
less_than_x_minutes:
one: mens duna minuta
other: mens de %{count} minutas
less_than_x_seconds:
one: mens duna segonda
other: mens de %{count} segondas
over_x_years:
one: mai dun an
other: mai de %{count} ans
x_days:
one: un jorn
other: "%{count} jorns"
x_minutes:
one: una minuta
other: "%{count} minutas"
x_months:
one: un mes
other: "%{count} meses"
x_seconds:
one: una segonda
other: "%{count} segondas"
x_years:
one: un an
other: "%{count} ans"
prompts:
day: jorn
hour: ora
minute: minuta
month: mes
second: segonda
year: an
errors:
format: "%{attribute} %{message}"
messages:
accepted: deu èsser acceptat
blank: deu èsser garnit
confirmation: correspond pas a %{attribute}
empty: pòt pas èsser void
equal_to: deu èsser egal a %{count}
even: deu èsser parelh
exclusion: es reservat
greater_than: deu èsser superior a %{count}
greater_than_or_equal_to: deu èsser mai grand o egal a %{count}
inclusion: es pas inclús dins la lista
invalid: es pas valid
less_than: deu èsser inferior a %{count}
less_than_or_equal_to: deu èsser inferior o egal a %{count}
model_invalid: Validacion fracassada:%{errors}
not_a_number: es pas un nombre
not_an_integer: deu èsser un nombre entièr
odd: deu èsser un nombre impar
other_than: deu èsser diferent de %{count}
present: deu èsser void
required: deu existir
taken: es pas disponible
too_long:
one: es tròp long (pas mai dun caractèr)
other: es tròp long (%{count} caractèrs al maximum)
too_short:
one: es tròp cort (almens un caractèr)
other: es tròp cort (almens %{count} caractèrs)
wrong_length:
one: a pas la bona longor (un caractèr solament)
other: a pas la bona longor (%{count} caractèrs exactament)
template:
body: I a agut de problèmas amb los camps seguents:
header:
one: Impossible denregistrar aqueste/a %{model} perque i a %{count} error
other: Impossible denregistrar aqueste/a %{model} perque i a %{count} errors
helpers:
select:
prompt: Mercés de seleccionar
submit:
create: Crear %{model}
submit: Salvar %{model}
update: Actualizar %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: miliard
million: milion
quadrillion: milion de miliards
thousand: mila
trillion: bilion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: octet
other: octets
gb: Go
kb: ko
mb: Mo
tb: To
percentage:
format:
delimiter: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", e "
two_words_connector: " e "
words_connector: ", "
time:
am: am
formats:
default: Lo %e %b de %Y a %Ho%M %Ss
long: Lo %a %e %b de %Y a %Ho%M
short: "%e %b %Ho%M"
pm: pm

View File

@@ -0,0 +1,196 @@
---
or:
activerecord:
errors:
messages:
record_invalid: 'ସଠିକ୍ ନୁହ: %{errors}'
date:
abbr_day_names:
- ରବି
- ସୋମ
- ମଂଗଳ
- ବୁଧ
- ଗୁରୁ
- ଶୁକ୍ର
- ଶନି
abbr_month_names:
-
- ଜାନୁ
- ଫେବରୁ
- ମାର
- ଏପ୍ର
- ମାଈ
- ଜୁନ୍
- ଜୁଲ୍
- ଅଗସ୍ଟ
- ସେପ୍ଟ
- ଅକ୍ଟ
- ନୋଭ
- ଡିସ୍
day_names:
- ରବିବାର
- ସୋମବାର
- ମଗଂଳବାର
- ବୁଧବାର
- ଗୁରୁବାର
- ଶୁକ୍ରବାର
- ଶନିବାର
formats:
default: "%Y-%m-%d"
long: "%B %d, %Y"
short: "%b %d"
month_names:
-
- ଜାନୁୟାରୀ
- ଫେବୃୟାରୀ
- ମାର୍ଚ଼
- ଏପ୍ରଲ
- ମାଈ
- ଜୁନ୍
- ଜୁଲାୟ
- ଅଗଷ୍ତ
- ସେପ୍ଟମ୍ବର୍
- ଅକ୍ଟୋବର୍
- ନୋଭେମ୍ବର
- ଡିସମ୍ବର
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: ପାଖାପାଖି %{count} ଘଣ୍ତ
other: ପାଖାପାଖି %{count} ଘଣ୍ତ
about_x_months:
one: ପାଖାପାଖି %{count} ମାସ
other: ପାଖାପାଖି %{count} ମାସ
about_x_years:
one: ପାଖାପାଖି %{count} year
other: ପାଖାପାଖି %{count} years
almost_x_years:
one: ଅଳ୍ପ ଉଣ %{count} ବର୍ଷ
other: ଅଳ୍ପ ଉଣ %{count} ବର୍ଷ
half_a_minute: ଦେଢ ମିନଟ୍
less_than_x_minutes:
one: "%{count} ମିନଟ ବାକ"
other: "%{count} ମିନଟ ବାକ"
less_than_x_seconds:
one: "%{count} ସେକଣ୍ଢ ବାକ"
other: "%{count} ସେକଣ୍ଢ ବାକ"
over_x_years:
one: "%{count} ବର୍ଷରୁ ଅଧିକ"
other: "%{count} ବର୍ଷରୁ ଅଧିକ"
x_days:
one: "%{count} ଦିନ"
other: "%{count} ଦିନ"
x_minutes:
one: "%{count} ମିନଟ"
other: "%{count} ମିନଟ"
x_months:
one: "%{count} ମାସ"
other: "%{count} ମାସ"
x_seconds:
one: "%{count} ସେକଣ୍ଢ"
other: "%{count} ସେକଣ୍ଢ"
prompts:
day: ଦିନ
hour: ଘଣ୍ତ
minute: ମିନଟ
month: ମାସ
second: ସେକଣ୍ଢ
year: ବର୍ଷ
errors:
format: "%{attribute} %{message}"
messages:
accepted: ଗ୍ରହଣ କରିବାର ଅଛି
blank: ଖାଲି ହେଇ ପାରୀବନ
confirmation: ପ୍ରମାଣ ହେଇନି
empty: ଖାଲି ହେଇପାରିବନି
equal_to: "%{count} କୁ ସମାନ"
even: ଯୁଗ୍ମ ହେବାର ଅଛି
exclusion: ସୁରଖିତ ଅଟେ
greater_than: "%{count} ରୁ ବଡ ହେବାର ଅଛି"
greater_than_or_equal_to: "%{count} ରୁ ବଡ କିମ୍ବା ସମାନ ହେବାର ଅଛି"
inclusion: ସୁଚୀ ରେ ଅନ୍ତର୍ଭୁକ୍ତ ନୁହେଁ
invalid: ଠିକ୍ ନୁହେଁ
less_than: "%{count} ରୁ ଛୋଟ"
less_than_or_equal_to: "%{count} ରୁ ଛୋଟ କିମ୍ବା ସମାନ ହେବାର ଅଛି"
not_a_number: ସଂଖ୍ଯ ନୁହେଁ
not_an_integer: ଗଣନ ସଂଖ୍ଯା ହେବାର ଅଛି
odd: ଅଯୁଗ୍ମ ହେବାର ଅଛି
taken: ଗ୍ରହଣ କରା ଯାଇଛି
too_long: ଦିର୍ଘତମ ଅଟେ(ଅତ୍ୟଧୀକ %{count} ଅଖ୍ଯର)
too_short: ଅତି ସଂଖିପ୍ତ ଅଟେ (ଅତ୍ଯଳ୍ପ %{count} ଅଖ୍ଯର ଅଟେ)
wrong_length: ଲମ୍ବା ଭୁଲ ଅଟେ (%{count} ଅଖ୍ଯର ହେବା ଉଚିତ୍)
template:
body: 'ନିମ୍ନ ଜାଗା ରେ ଅସୁବିଧା ହେଇଛି:'
header:
one: "%{count} ଭୁଲ ଯଗୁଁ ନିମ୍ନ %{model} ସୁରଖିତ ହେଇପାରି ନଥିଲା"
other: "%{count} ଭୁଲ ଯଗୁଁ ଏହି %{model} ସୁରଖିତ ହେଇପାରି ନଥିଲା"
helpers:
select:
prompt: ପସନ୍ଦ କର
submit:
create: "%{model} ବନାଅ"
submit: "%{model} ସୁରଖିତ କର"
update: "%{model} ଅାଧୂନିକରଣ କର"
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "₹"
format:
delimiter: ","
precision: 3
separator: "."
significant: ମିଥ୍ଯା
strip_insignificant_zeros: ମିଥ୍ଯା
human:
decimal_units:
format: "%n %u"
units:
billion: ବିଲିୟନ୍
million: ମିଲିୟନ୍
quadrillion: ହଜାର ବିଲିୟନ୍
thousand: ହଜାର
trillion: ଟ୍ରିଲିୟନ୍
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", ଏବଂ "
two_words_connector: " ଏବଂ "
words_connector: ", "
time:
am: ପୁର୍ଵାହ୍ନ
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%B %d, %Y %H:%M"
short: "%d %b %H:%M"
pm: ଅପରାହ୍ନ

View File

@@ -0,0 +1,208 @@
---
pa:
activerecord:
errors:
messages:
record_invalid: 'ਪਰਮਾਣ ਫ਼ੇਲ ਹੋਇਆ: %{errors}'
restrict_dependent_destroy:
has_many: ਮਿਟਾ ਨਹੀਂ ਸਕਦੇ ਕਿਉਂਕਿ ਨਿਰਭਰ %{record} ਮੌਜੂਦ ਹਨ
has_one: ਮਿਟਾ ਨਹੀਂ ਸਕਦੇ ਕਿਉਂਕਿ ਇੱਕ ਨਿਰਭਰ %{record} ਮੌਜੂਦ ਹੈ
date:
abbr_day_names:
- ਅੈਤ
- ਸੋਮ
- ਮੰਗਲ
- ਬੱੁਧ
- ਵੀਰ
- ਸ਼ੁੱਕਰ
- ਸ਼ਨਿੱਚਰ
abbr_month_names:
-
- ਜਨ
- ਫ਼ਰ
- ਮਾਰਚ
- ਅਪ੍ਰੈ
- ਮਈ
- ਜੂਨ
- ਜੁਲਾ
- ਅਗ
- ਸਤੰ
- ਅਕਤੂ
- ਨਵੰ
- ਦਸੰ
day_names:
- ਐਤਵਾਰ
- ਸੋਮਵਾਰ
- ਮੰਗਲਵਾਰ
- ਬੁੱਧਵਾਰ
- ਵੀਰਵਾਰ
- ਸ਼ੁੱਕਰਵਾਰ
- ਸ਼ਨਿੱਚਰਵਾਰ
formats:
default: "%Y-%m-%d"
long: "%d %B %Y"
short: "%d %b"
month_names:
-
- ਜਨਵਰੀ
- ਫ਼ਰਵਰੀ
- ਮਾਰਚ
- ਅਪ੍ਰੈਲ
- ਮਈ
- ਜੂਨ
- ਜੁਲਾਈ
- ਅਗਸਤ
- ਸਤੰਬਰ
- ਅਕਤੂਬਰ
- ਨਵੰਬਰ
- ਦਸੰਬਰ
order:
- :year
- :month
- :day
datetime:
distance_in_words:
about_x_hours:
one: ਲਗਭਗ %{count} ਘੰਟਾ
other: ਲਗਭਗ %{count} ਘੰਟੇ
about_x_months:
one: ਲਗਭਗ %{count} ਮਹੀਨਾ
other: ਲਗਭਗ %{count} ਮਹੀਨੇ
about_x_years:
one: ਲਗਭਗ %{count} ਸਾਲ
other: ਲਗਭਗ %{count} ਸਾਲ
almost_x_years:
one: ਤਕਰੀਬਨ %{count} ਸਾਲ
other: ਤਕਰੀਬਨ %{count} ਸਾਲ
half_a_minute: ਅੱਧਾ ਮਿੰਟ
less_than_x_minutes:
one: "%{count} ਮਿੰਟ ਤੋਂ ਘੱਟ"
other: "%{count} ਮਿੰਟਾਂ ਤੋਂ ਘੱਟ"
less_than_x_seconds:
one: "%{count} ਸਕਿੰਟ ਤੋਂ ਘੱਟ"
other: "%{count} ਸਕਿੰਟਾਂ ਤੋਂ ਘੱਟ"
over_x_years:
one: "%{count} ਸਾਲ ਤੋਂ ਵੱਧ"
other: "%{count} ਸਾਲਾਂ ਤੋਂ ਵੱਧ"
x_days:
one: "%{count} ਦਿਨ"
other: "%{count} ਦਿਨ"
x_minutes:
one: "%{count} ਮਿੰਟ"
other: "%{count} ਮਿੰਟ"
x_months:
one: "%{count} ਮਹੀਨਾ"
other: "%{count} ਮਹੀਨੇ"
x_seconds:
one: "%{count} ਸਕਿੰਟ"
other: "%{count} ਸਕਿੰਟ"
prompts:
day: ਦਿਨ
hour: ਘੰਟਾ
minute: ਮਿੰਟ
month: ਮਹੀਨਾ
second: ਸਕਿੰਟ
year: ਸਾਲ
errors:
format: "%{attribute} %{message}"
messages:
accepted: ਜਰੂਰ ਮੰਜੂਰ ਹੋਵੇ
blank: ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ
confirmation: "%{attribute} ਨਹੀਂ ਰਲਦੇ"
empty: ਖਾਲੀ ਨਹੀਂ ਹੋ ਸਕਦਾ
equal_to: "%{count} ਦੇ ਬਰਾਬਰ ਹੋਣਾ ਚਾਹੀਦਾ ਹੈ"
even: ਜਰੂਰੀ ਹੈ ਕੇ ਜੋਟਾ ਹੋਵੇ
exclusion: ਮੱਲਿਆ ਹੋਇਆ ਹੈ
greater_than: "%{count} ਤੋਂ ਵਧੇਰੇ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
greater_than_or_equal_to: "%{count} ਤੋਂ ਵਧੇਰੇ ਜਾਂ ਬਰਾਬਰ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
inclusion: ਇਸ ਲਿਸਟ ਵਿੱਚ ਸ਼ਾਮਿਲ ਨਹੀਂ ਹੈ
invalid: ਨਾ-ਮੰਜੂਰਸ਼ੁਦਾ ਹੈ
less_than: "%{count} ਤੋਂ ਘੱਟ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
less_than_or_equal_to: "%{count} ਤੋਂ ਘੱਟ ਜਾਂ ਬਰਾਬਰ ਹੋਣਾ ਜਰੂਰੀ ਹੈ"
not_a_number: ਸੰਖਿਆ ਨਹੀਂ ਹੈ
not_an_integer: ਜਰੂਰੀ ਹੈ ਕੇ ਪੂਰਨ ਅੰਕ ਹੋਵੇ
odd: ਜਰੂਰੀ ਹੈ ਕੇ ਕਲ਼ੀ ਹੋਵੇ
other_than: "%{count} ਦੀ ਜਗ੍ਹਾ ਹੋਰ ਹੋਣੀ ਚਾਹੀਦੀ ਹੈ"
present: ਜਰੂਰ ਖਾਲੀ ਹੋਵੇ
taken: ਪਹਿਲਾਂ ਹੀ ਮੱਲਿਆ ਹੋਇਆ ਹੈ
too_long:
one: ਲੰਬਾਈ ਜ਼ਿਆਦਾ ਹੈ (ਵੱਧ ਤੋਂ ਵੱਧ %{count} ਅੱਖਰ)
other: ਲੰਬਾਈ ਜ਼ਿਆਦਾ ਹੈ (ਵੱਧ ਤੋਂ ਵੱਧ %{count} ਅੱਖਰ)
too_short:
one: ਲੰਬਾਈ ਘੱਟ ਹੈ (ਘੱਟ ਤੋਂ ਘੱਟ %{count} ਅੱਖਰ)
other: ਲੰਬਾਈ ਘੱਟ ਹੈ (ਘੱਟ ਤੋਂ ਘੱਟ %{count} ਅੱਖਰ)
wrong_length:
one: ਲੰਬਾਈ ਗਲਤ ਹੈ (%{count} ਅੱਖਰ ਹੋਣੀ ਚਾਹੀਦੀ ਹੈ)
other: ਲੰਬਾਈ ਗਲਤ ਹੈ (%{count} ਅੱਖਰ ਹੋਣੀ ਚਾਹੀਦੀ ਹੈ)
template:
body: 'ਹੇਠਲੇ ਖੇਤਰਾਂ ਵਿੱਚ ਗਲਤੀਆਂ ਹਨ:'
header:
one: "%{count} ਗਲਤੀ ਕਰਕੇ ਇਹ %{model} ਸੰਭਾਲਿ਼ਆ ਨਹੀਂ ਗਿਆ"
other: "%{count} ਗਲਤੀਆਂ ਕਰਕੇ ਇਹ %{model} ਸੰਭਾਲਿ਼ਆ ਨਹੀਂ ਗਿਆ"
helpers:
select:
prompt: ਕਿਰਪਾ ਕਰਕੇ ਚੁਣੋ
submit:
create: "%{model} ਬਣਾਓ"
submit: "%{model} ਬਚਾਓ"
update: "%{model} ਬਦਲੋ"
number:
currency:
format:
delimiter: ","
format: "%u%n"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: "$"
format:
delimiter: ","
precision: 3
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: ਬਿਲੀਅਨ
million: ਮਿਲੀਅਨ
quadrillion: ਕ੍ਵਾਡਰਿਲੀਅਨ
thousand: ਹਜ਼ਾਰ
trillion: ਟ੍ਰਿਲੀਅਨ
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: ਬਾਈਟ
other: ਬਾਈਟ
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: ", ਅਤੇ "
two_words_connector: " ਅਤੇ "
words_connector: ", "
time:
am: ਸਵੇਰ
formats:
default: "%a, %d %b %Y %H:%M:%S %z"
long: "%d %B %Y %H:%M"
short: "%d %b %H:%M"
pm: ਸ਼ਾਮ

View File

@@ -0,0 +1,241 @@
---
pl:
activerecord:
errors:
messages:
record_invalid: 'Znaleziono błędy: %{errors}'
restrict_dependent_destroy:
has_many: Nie można usunąć, gdyż istnieją zależne od niego %{record}
has_one: Nie można usunąć, gdyż istnieje zależny od niego %{record}
date:
abbr_day_names:
- nie
- pon
- wto
- śro
- czw
- pią
- sob
abbr_month_names:
-
- sty
- lut
- mar
- kwi
- maj
- cze
- lip
- sie
- wrz
- paź
- lis
- gru
day_names:
- niedziela
- poniedziałek
- wtorek
- środa
- czwartek
- piątek
- sobota
formats:
default: "%d-%m-%Y"
long: "%-d %B %Y"
short: "%-d %b"
month_names:
-
- stycznia
- lutego
- marca
- kwietnia
- maja
- czerwca
- lipca
- sierpnia
- września
- października
- listopada
- grudnia
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
few: około %{count} godziny
many: około %{count} godzin
one: około godziny
other: około %{count} godzin
about_x_months:
few: około %{count} miesiące
many: około %{count} miesięcy
one: około miesiąca
other: około %{count} miesięcy
about_x_years:
few: około %{count} lata
many: około %{count} lat
one: około rok
other: około %{count} lat
almost_x_years:
few: prawie %{count} lata
many: prawie %{count} lat
one: prawie rok
other: prawie %{count} lat
half_a_minute: pół minuty
less_than_x_minutes:
few: mniej niż %{count} minuty
many: mniej niż %{count} minut
one: mniej niż minutę
other: mniej niż %{count} minut
less_than_x_seconds:
few: mniej niż %{count} sekundy
many: mniej niż %{count} sekund
one: mniej niż sekundę
other: mniej niż %{count} sekund
over_x_years:
few: ponad %{count} lata
many: ponad %{count} lat
one: ponad rok
other: ponad %{count} lat
x_days:
few: "%{count} dni"
many: "%{count} dni"
one: "%{count} dzień"
other: "%{count} dni"
x_minutes:
few: "%{count} minuty"
many: "%{count} minut"
one: "%{count} minuta"
other: "%{count} minut"
x_months:
few: "%{count} miesiące"
many: "%{count} miesięcy"
one: "%{count} miesiąc"
other: "%{count} miesięcy"
x_seconds:
few: "%{count} sekundy"
many: "%{count} sekund"
one: "%{count} sekunda"
other: "%{count} sekund"
prompts:
day: Dzień
hour: Godzina
minute: Minuta
month: Miesiąc
second: Sekundy
year: Rok
errors:
format: "%{attribute} %{message}"
messages:
accepted: musi zostać zaakceptowane
blank: nie może być puste
confirmation: musi być taki sam jak w %{attribute}
empty: nie może być puste
equal_to: musi być równe %{count}
even: musi być parzyste
exclusion: jest zarezerwowane
greater_than: musi być większe od %{count}
greater_than_or_equal_to: musi być większe lub równe %{count}
inclusion: nie znajduje się na liście dopuszczalnych wartości
invalid: jest nieprawidłowe
less_than: musi być mniejsze od %{count}
less_than_or_equal_to: musi być mniejsze lub równe %{count}
not_a_number: nie jest liczbą
not_an_integer: musi być liczbą całkowitą
odd: musi być nieparzyste
other_than: musi być inne niż %{count}
present: musi być puste
required: musi istnieć
taken: zostało już zajęte
too_long:
few: jest za długie (maksymalnie %{count} znaki)
many: jest za długie (maksymalnie %{count} znaków)
one: jest za długie (maksymalnie jeden znak)
other: jest za długie (maksymalnie %{count} znaków)
too_short:
few: jest za krótkie (przynajmniej %{count} znaki)
many: jest za krótkie (przynajmniej %{count} znaków)
one: jest za krótkie (przynajmniej jeden znak)
other: jest za krótkie (przynajmniej %{count} znaków)
wrong_length:
few: ma nieprawidłową długość (powinna wynosić %{count} znaki)
many: ma nieprawidłową długość (powinna wynosić %{count} znaków)
one: ma nieprawidłową długość (powinna wynosić jeden znak)
other: ma nieprawidłową długość (powinna wynosić %{count} znaków)
template:
body: 'Błędy dotyczą następujących pól:'
header:
few: "%{model} nie został zachowany z powodu %{count} błędów"
many: "%{model} nie został zachowany z powodu %{count} błędów"
one: "%{model} nie został zachowany z powodu jednego błędu"
other: "%{model} nie został zachowany z powodu %{count} błędów"
helpers:
select:
prompt: Proszę wybrać
submit:
create: Utwórz %{model}
submit: Wyślij %{model}
update: Aktualizuj %{model}
number:
currency:
format:
delimiter: " "
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: true
unit:
format:
delimiter: " "
precision: 3
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion: Miliard
million: Milion
quadrillion: Biliard
thousand: Tysiąc
trillion: Bilion
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
few: bajty
many: bajtów
one: bajt
other: bajty
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
format: "%n%"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " oraz "
two_words_connector: " i "
words_connector: ", "
time:
am: przed południem
formats:
default: "%a, %-d %b %Y %H:%M:%S %z"
long: "%-d %B %Y %H:%M"
short: "%-d %b %H:%M"
pm: po południu

View File

@@ -0,0 +1,225 @@
---
pt-BR:
activerecord:
errors:
messages:
record_invalid: 'A validação falhou: %{errors}'
restrict_dependent_destroy:
has_many: Não é possível excluir o registro pois existem %{record} dependentes
has_one: Não é possível excluir o registro pois existe um %{record} dependente
date:
abbr_day_names:
- dom
- seg
- ter
- qua
- qui
- sex
- sáb
abbr_month_names:
-
- jan
- fev
- mar
- abr
- mai
- jun
- jul
- ago
- set
- out
- nov
- dez
day_names:
- domingo
- segunda-feira
- terça-feira
- quarta-feira
- quinta-feira
- sexta-feira
- sábado
formats:
default: "%d/%m/%Y"
long: "%d de %B de %Y"
short: "%d de %B"
month_names:
-
- janeiro
- fevereiro
- março
- abril
- maio
- junho
- julho
- agosto
- setembro
- outubro
- novembro
- dezembro
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: aproximadamente %{count} hora
other: aproximadamente %{count} horas
about_x_months:
one: aproximadamente %{count} mês
other: aproximadamente %{count} meses
about_x_years:
one: aproximadamente %{count} ano
other: aproximadamente %{count} anos
almost_x_years:
one: quase %{count} ano
other: quase %{count} anos
half_a_minute: meio minuto
less_than_x_minutes:
one: menos de um minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: mais de %{count} ano
other: mais de %{count} anos
x_days:
one: "%{count} dia"
other: "%{count} dias"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mês"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} ano"
other: "%{count} anos"
prompts:
day: Dia
hour: Hora
minute: Minuto
month: Mês
second: Segundo
year: Ano
errors:
format: "%{attribute} %{message}"
messages:
accepted: deve ser aceito
blank: não pode ficar em branco
confirmation: não é igual a %{attribute}
empty: não pode ficar vazio
equal_to: deve ser igual a %{count}
even: deve ser par
exclusion: não está disponível
greater_than: deve ser maior que %{count}
greater_than_or_equal_to: deve ser maior ou igual a %{count}
in: deve estar em %{count}
inclusion: não está incluído na lista
invalid: não é válido
less_than: deve ser menor que %{count}
less_than_or_equal_to: deve ser menor ou igual a %{count}
model_invalid: 'A validação falhou: %{errors}'
not_a_number: não é um número
not_an_integer: não é um número inteiro
odd: deve ser ímpar
other_than: deve ser diferente de %{count}
present: deve ficar em branco
required: é obrigatório(a)
taken: já está em uso
too_long:
one: 'é muito longo (máximo: %{count} caracter)'
other: 'é muito longo (máximo: %{count} caracteres)'
too_short:
one: 'é muito curto (mínimo: %{count} caracter)'
other: 'é muito curto (mínimo: %{count} caracteres)'
wrong_length:
one: não possui o tamanho esperado (%{count} caracter)
other: não possui o tamanho esperado (%{count} caracteres)
template:
body: 'Por favor, verifique o(s) seguinte(s) campo(s):'
header:
one: 'Não foi possível gravar %{model}: %{count} erro'
other: 'Não foi possível gravar %{model}: %{count} erros'
helpers:
select:
prompt: Por favor selecione
submit:
create: Criar %{model}
submit: Salvar %{model}
update: Atualizar %{model}
number:
currency:
format:
delimiter: "."
format: "%u %n"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: R$
format:
delimiter: "."
precision: 3
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: bilhão
other: bilhões
million:
one: milhão
other: milhões
quadrillion:
one: quatrilhão
other: quatrilhões
thousand: mil
trillion:
one: trilhão
other: trilhões
unit: ''
format:
delimiter: ''
precision: 3
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: "."
format: "%n%"
precision:
format:
delimiter: "."
support:
array:
last_word_connector: " e "
two_words_connector: " e "
words_connector: ", "
time:
am: am
formats:
default: "%a, %d de %B de %Y, %H:%M:%S %z"
long: "%d de %B de %Y, %H:%M"
short: "%d de %B, %H:%M"
pm: pm

View File

@@ -0,0 +1,219 @@
---
pt:
activerecord:
errors:
messages:
record_invalid: 'A validação falhou: %{errors}'
restrict_dependent_destroy:
has_many: Não pode ser eliminado por existirem dependências de %{record}
has_one: Não pode ser eliminado por existir uma dependência de %{record}
date:
abbr_day_names:
- dom
- seg
- ter
- qua
- qui
- sex
- sáb
abbr_month_names:
-
- jan
- fev
- mar
- abr
- mai
- jun
- jul
- ago
- set
- out
- nov
- dez
day_names:
- domingo
- segunda-feira
- terça-feira
- quarta-feira
- quinta-feira
- sexta-feira
- sábado
formats:
default: "%d/%m/%Y"
long: "%d de %B de %Y"
short: "%d de %B"
month_names:
-
- janeiro
- fevereiro
- março
- abril
- maio
- junho
- julho
- agosto
- setembro
- outubro
- novembro
- dezembro
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
one: aproximadamente %{count} hora
other: aproximadamente %{count} horas
about_x_months:
one: aproximadamente %{count} mês
other: aproximadamente %{count} meses
about_x_years:
one: aproximadamente %{count} ano
other: aproximadamente %{count} anos
almost_x_years:
one: quase %{count} ano
other: quase %{count} anos
half_a_minute: meio minuto
less_than_x_minutes:
one: menos de um minuto
other: menos de %{count} minutos
less_than_x_seconds:
one: menos de %{count} segundo
other: menos de %{count} segundos
over_x_years:
one: mais de %{count} ano
other: mais de %{count} anos
x_days:
one: "%{count} dia"
other: "%{count} dias"
x_minutes:
one: "%{count} minuto"
other: "%{count} minutos"
x_months:
one: "%{count} mês"
other: "%{count} meses"
x_seconds:
one: "%{count} segundo"
other: "%{count} segundos"
x_years:
one: "%{count} ano"
other: "%{count} anos"
prompts:
day: Dia
hour: Hora
minute: Minuto
month: Mês
second: Segundo
year: Ano
errors:
format: "%{attribute} %{message}"
messages:
accepted: tem de ser aceite
blank: não pode estar em branco
confirmation: não coincide com a confirmação
empty: não pode estar vazio
equal_to: tem de ser igual a %{count}
even: tem de ser par
exclusion: é reservado
greater_than: tem de ser maior que %{count}
greater_than_or_equal_to: tem de ser maior ou igual a %{count}
in: deve estar em %{count}
inclusion: não está incluído na lista
invalid: é inválido
less_than: tem de ser menor que %{count}
less_than_or_equal_to: tem de ser menor ou igual a %{count}
model_invalid: 'A validação falhou: %{errors}'
not_a_number: não é um número
not_an_integer: tem de ser um inteiro
odd: tem de ser ímpar
other_than: tem de ser diferente de %{count}
present: não pode estar em branco
required: é obrigatório
taken: não está disponível
too_long: é demasiado grande (o máximo é de %{count} caracteres)
too_short: é demasiado pequeno (o mínimo é de %{count} caracteres)
wrong_length: comprimento errado (deve ter %{count} caracteres)
template:
body: 'Por favor, verifique os seguintes campos:'
header:
one: "%{count} erro impediu guardar este %{model}"
other: "%{count} erros impediram guardar este %{model}"
helpers:
select:
prompt: Por favor seleccione
submit:
create: Criar %{model}
submit: Gravar %{model}
update: Atualizar %{model}
number:
currency:
format:
delimiter: "."
format: "%n %u"
precision: 2
separator: ","
significant: false
strip_insignificant_zeros: false
unit: "€"
format:
delimiter: "."
precision: 3
round_mode: default
separator: ","
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
billion:
one: mil milhões
other: mil milhões
million:
one: milhão
other: milhões
quadrillion:
one: mil biliões
other: mil biliões
thousand: mil
trillion:
one: bilião
other: biliões
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
one: Byte
other: Bytes
eb: EB
gb: GB
kb: KB
mb: MB
pb: PB
tb: TB
percentage:
format:
delimiter: ''
format: "%n %"
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " e "
two_words_connector: " e "
words_connector: ", "
time:
am: am
formats:
default: "%A, %d de %B de %Y, %H:%Mh"
long: "%A, %d de %B de %Y, %H:%Mh"
short: "%d/%m, %H:%M hs"
pm: pm

View File

@@ -0,0 +1,224 @@
---
rm:
date:
abbr_day_names:
- du
- gli
- ma
- me
- gie
- ve
- so
abbr_month_names:
-
- schan
- favr
- mars
- avr
- matg
- zercl
- fan
- avust
- sett
- oct
- nov
- dec
day_names:
- dumengia
- glindesdi
- mardi
- mesemna
- gievgia
- venderdi
- sonda
formats:
default: "%d.%m.%Y"
long: "%e. %B %Y"
short: "%e. %b"
month_names:
-
- schaner
- favrer
- mars
- avrigl
- matg
- zercladur
- fanadur
- avust
- settember
- october
- november
- december
order:
- :day
- :month
- :year
datetime:
distance_in_words:
about_x_hours:
few: circa %{count} uras
many: circa %{count} uras
one: circa in'ura
other: circa %{count} uras
two: circa %{count} uras
zero: circa %{count} uras
about_x_months:
few: circa %{count} mais
many: circa %{count} mais
one: circa in mais
other: circa %{count} mais
two: circa %{count} mais
zero: circa %{count} mais
about_x_years:
few: circa %{count} onns
many: circa %{count} onns
one: circa in onn
other: circa %{count} onns
two: circa %{count} onns
zero: circa %{count} onns
half_a_minute: ina mesa minuta
less_than_x_minutes:
few: main che %{count} minutas
many: main che %{count} minutas
one: main china minuta
other: main che %{count} minutas
two: main che %{count} minutas
zero: main che %{count} minutas
less_than_x_seconds:
few: main che %{count} secundas
many: main che %{count} secundas
one: main china secunda
other: main che %{count} secundas
two: main che %{count} secundas
zero: main che %{count} secundas
over_x_years:
few: dapli che %{count} onns
many: dapli che %{count} onns
one: dapli ch'in onn
other: dapli che %{count} onns
two: dapli che %{count} onns
zero: dapli che %{count} onns
x_days:
few: "%{count} dis"
many: "%{count} dis"
one: in di
other: "%{count} dis"
two: "%{count} dis"
zero: "%{count} dis"
x_minutes:
few: "%{count} minutas"
many: "%{count} minutas"
one: "%{count} minuta"
other: "%{count} minutas"
two: "%{count} minutas"
zero: "%{count} minutas"
x_months:
few: "%{count} mais"
many: "%{count} mais"
one: in mais
other: "%{count} mais"
two: "%{count} mais"
zero: "%{count} mais"
x_seconds:
few: "%{count} secundas"
many: "%{count} secundas"
one: ina secunda
other: "%{count} secundas"
two: "%{count} secundas"
zero: "%{count} secundas"
prompts:
day: dis
hour: uras
minute: minutas
month: mais
second: secundas
year: onns
errors:
format: "%{attribute} %{message}"
messages:
accepted: sto vegnir acceptà
blank: sto vegnir emplenì ora
confirmation: na correspunda betg al champ da conferma
empty: sto vegnir emplenì ora
equal_to: sto esser exact %{count}
even: sto esser pèr
exclusion: na stat betg a disposiziun
greater_than: sto esser pli grond che %{count}
greater_than_or_equal_to: sto esser pli grond u medem sco %{count}
inclusion: n'è betg sin la glista
invalid: n'è betg valid
less_than: sto esser pli pitschen che %{count}
less_than_or_equal_to: sto esser pli pitschen u medem sco %{count}
not_a_number: è betg in dumber
odd: sto esser spèr
taken: è gia occupà
too_long: è memia lung (betg dapli che %{count} caracters)
too_short: è memia curt (betg pli pauc che %{count} caracters)
wrong_length: ha la fallida lunghezza (sto avair %{count} caracters)
template:
body: 'Faschai uschè bain e controllai ils suandants champs:'
header:
few: 'Betg pussaivel da memorisar quest %{model}: %{count} errurs.'
many: 'Betg pussaivel da memorisar quest %{model}: %{count} errurs.'
one: 'Betg pussaivel da memorisar quest %{model}: %{count} errur.'
other: 'Betg pussaivel da memorisar quest %{model}: %{count} errurs.'
two: 'Betg pussaivel da memorisar quest %{model}: %{count} errurs.'
zero: 'Betg pussaivel da memorisar quest %{model}: %{count} errurs.'
number:
currency:
format:
delimiter: "'"
format: "%n %u"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
unit: CHF
format:
delimiter: "'"
precision: 2
separator: "."
significant: false
strip_insignificant_zeros: false
human:
decimal_units:
format: "%n %u"
units:
unit: ''
format:
delimiter: ''
precision: 1
significant: true
strip_insignificant_zeros: true
storage_units:
format: "%n %u"
units:
byte:
few: bytes
many: bytes
one: byte
other: bytes
two: bytes
zero: bytes
gb: GB
kb: KB
mb: MB
tb: TB
percentage:
format:
delimiter: ''
precision:
format:
delimiter: ''
support:
array:
last_word_connector: " e "
two_words_connector: " e "
words_connector: ", "
time:
am: avantmezdi
formats:
default: "%A, %d. %B %Y, %H:%M Uhr"
long: "%A, %d. %B %Y, %H:%M Uhr"
short: "%d. %B, %H:%M Uhr"
pm: suentermezdi

Some files were not shown because too many files have changed in this diff Show More