105 lines
3.5 KiB
CoffeeScript
105 lines
3.5 KiB
CoffeeScript
window.$translations =
|
|
en:
|
|
application_name: 'Panda'
|
|
total: 'Total'
|
|
user:
|
|
sign_out: 'Uitloggen'
|
|
dunlop:
|
|
module:
|
|
wba_mailbox: 'WBA Mailbox'
|
|
kbt_endpoint: 'KBT endpoint'
|
|
general:
|
|
save: 'Save'
|
|
rollback: 'Cancel'
|
|
destroy:
|
|
are_you_sure: 'Weet je dit zeker?'
|
|
button: 'Delete'
|
|
close: 'Close'
|
|
clear: 'Clear'
|
|
apply: 'Toepassen'
|
|
and: 'en'
|
|
confirm:
|
|
cancel: 'Cancel'
|
|
confirm: 'Ja'
|
|
modals:
|
|
edit_project:
|
|
title: "Edit ${models.project} %{name}"
|
|
edit_organization:
|
|
title: "Edit ${models.organization} %{name}"
|
|
edit_tracker_subject:
|
|
title: "Edit ${models.tracker_subject} %{name}"
|
|
edit_tracker_group:
|
|
title: "Edit ${models.tracker_group} %{name}"
|
|
confirm:
|
|
title: 'Weet je dit zeker?'
|
|
action:
|
|
new_model: "New %{model}"
|
|
select_model: 'Select %{model}'
|
|
add_model: 'Add %{model}'
|
|
|
|
date:
|
|
today: 'Today'
|
|
this_week: 'This week'
|
|
this_month: 'This month'
|
|
unit:
|
|
second: 'second'
|
|
minute: 'minute'
|
|
businessday: 'business day'
|
|
day: 'day'
|
|
week: 'week'
|
|
year: 'year'
|
|
plural:
|
|
second: 'seconds'
|
|
minute: 'minutes'
|
|
businessday: 'business days'
|
|
day: 'days'
|
|
week: 'weeks'
|
|
year: 'years'
|
|
week_day:
|
|
monday: 'Maandag'
|
|
tuesday: 'Dinsdag'
|
|
wednesday: 'Woensdag'
|
|
thursday: 'Donderdag'
|
|
friday: 'Vrijdag'
|
|
saturday: 'Zaterdag'
|
|
sunday: 'Zondag'
|
|
number:
|
|
range:
|
|
between: 'Tussen'
|
|
inclusive: 'inclusief'
|
|
lower_larger_than_upper_error: 'beneden grens (%{lower}) mag niet groter zijn dan de boverngrens (%{upper}).'
|
|
inclusive_explanation: '<p>Include the <i><b>lower</b></i> and <i><b>upper</b></i> limits as valid elements.</p><ul><li>[a, b] means all the "x" elements that a <= x <= b</li><li>(a, b) means all the "x" elements that a < x < b</li></ul>'
|
|
|
|
import model_translations from './translations/models'
|
|
Ember.assign window.$translations.en, model_translations
|
|
|
|
import attribute_translations from './translations/attributes'
|
|
Ember.assign window.$translations.en, attribute_translations
|
|
|
|
import manual_translations from './translations/manual'
|
|
Ember.assign window.$translations.en, manual_translations
|
|
|
|
import organization_translations from './translations/organization'
|
|
Ember.assign window.$translations.en, organization_translations
|
|
|
|
import project_translations from './translations/project'
|
|
Ember.assign window.$translations.en, project_translations
|
|
|
|
import project_instance_translations from './translations/project-instance'
|
|
Ember.assign window.$translations.en, project_instance_translations
|
|
|
|
import project_instance_action_translations from './translations/project-instance-action'
|
|
Ember.assign window.$translations.en, project_instance_action_translations
|
|
|
|
import user_translations from './translations/user'
|
|
Ember.assign window.$translations.en, user_translations
|
|
|
|
import action_list_translations from './translations/action-list'
|
|
Ember.assign window.$translations.en, action_list_translations
|
|
|
|
import workflow_action_definition_translations from './translations/workflow-action-definition'
|
|
Ember.assign window.$translations.en, workflow_action_definition_translations
|
|
|
|
import workflow_group_translations from './translations/workflow-group'
|
|
Ember.assign window.$translations.en, workflow_group_translations
|