Merge pull request #58 from randym/i18n
removed devise and admin namespaces from locales..
This commit is contained in:
commit
08c86c8778
|
@ -1,3 +1,3 @@
|
||||||
---
|
---
|
||||||
:polled_at: 1353584152
|
:polled_at: 1353602900
|
||||||
:updated_at: 1353584152
|
:updated_at: 1353602900
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
$: << 'lib'
|
$: << 'lib'
|
||||||
|
|
||||||
require 'rake-pipeline-web-filters'
|
require 'rake-pipeline-web-filters'
|
||||||
|
require 'rake-pipeline-i18n-filters'
|
||||||
require 'travis/assets'
|
require 'travis/assets'
|
||||||
require 'compass'
|
require 'compass'
|
||||||
|
|
||||||
|
@ -14,9 +15,8 @@ assets.update_version
|
||||||
output 'assets/scripts/config'
|
output 'assets/scripts/config'
|
||||||
input 'locales' do
|
input 'locales' do
|
||||||
match '**/*.yml' do
|
match '**/*.yml' do
|
||||||
ember_i18n :use_i18n_js => true
|
i18n_js { 'locales.js' }
|
||||||
end
|
end
|
||||||
concat 'locales.js'
|
|
||||||
end
|
end
|
||||||
|
|
||||||
output 'public/scripts'
|
output 'public/scripts'
|
||||||
|
|
3
Gemfile
3
Gemfile
|
@ -9,7 +9,8 @@ gem 'sinatra'
|
||||||
|
|
||||||
group :assets do
|
group :assets do
|
||||||
gem 'rake-pipeline', github: 'livingsocial/rake-pipeline'
|
gem 'rake-pipeline', github: 'livingsocial/rake-pipeline'
|
||||||
gem 'rake-pipeline-web-filters', github: 'randym/rake-pipeline-web-filters'
|
gem 'rake-pipeline-web-filters', github: 'wycats/rake-pipeline-web-filters'
|
||||||
|
gem 'rake-pipeline-i18n-filters'
|
||||||
gem 'coffee-script'
|
gem 'coffee-script'
|
||||||
gem 'compass'
|
gem 'compass'
|
||||||
gem 'tilt'
|
gem 'tilt'
|
||||||
|
|
|
@ -8,8 +8,8 @@ GIT
|
||||||
thor
|
thor
|
||||||
|
|
||||||
GIT
|
GIT
|
||||||
remote: git://github.com/randym/rake-pipeline-web-filters.git
|
remote: git://github.com/wycats/rake-pipeline-web-filters.git
|
||||||
revision: 3cfd2df8c2edabb1bbd039394587460a22fae1af
|
revision: 1a6dc173776b188836aa2ce2ac35b61c7f7daafe
|
||||||
specs:
|
specs:
|
||||||
rake-pipeline-web-filters (0.6.0)
|
rake-pipeline-web-filters (0.6.0)
|
||||||
rack
|
rack
|
||||||
|
@ -70,6 +70,7 @@ GEM
|
||||||
rack-test (0.6.2)
|
rack-test (0.6.2)
|
||||||
rack (>= 1.0)
|
rack (>= 1.0)
|
||||||
rake (0.9.5)
|
rake (0.9.5)
|
||||||
|
rake-pipeline-i18n-filters (0.0.3)
|
||||||
rb-fsevent (0.9.2)
|
rb-fsevent (0.9.2)
|
||||||
rerun (0.7.1)
|
rerun (0.7.1)
|
||||||
listen
|
listen
|
||||||
|
@ -117,6 +118,7 @@ DEPENDENCIES
|
||||||
rack-ssl (~> 1.3)
|
rack-ssl (~> 1.3)
|
||||||
rake (~> 0.9.2)
|
rake (~> 0.9.2)
|
||||||
rake-pipeline!
|
rake-pipeline!
|
||||||
|
rake-pipeline-i18n-filters
|
||||||
rake-pipeline-web-filters!
|
rake-pipeline-web-filters!
|
||||||
rb-fsevent (~> 0.9.1)
|
rb-fsevent (~> 0.9.1)
|
||||||
rerun
|
rerun
|
||||||
|
|
8
Rakefile
8
Rakefile
|
@ -4,9 +4,15 @@ namespace :localeapp do
|
||||||
task :update do
|
task :update do
|
||||||
require 'localeapp'
|
require 'localeapp'
|
||||||
system 'localeapp pull'
|
system 'localeapp pull'
|
||||||
|
end
|
||||||
|
|
||||||
|
desc "push changes to en.yml up to localeapp"
|
||||||
|
task :report do
|
||||||
|
require 'localeapp'
|
||||||
|
system 'localeapp push locales/en.yml'
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
|
||||||
namespace :ember do
|
namespace :ember do
|
||||||
desc 'update ember'
|
desc 'update ember'
|
||||||
task :update do
|
task :update do
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -47,7 +47,6 @@ if window.history.state == undefined
|
||||||
|
|
||||||
setLocale: (locale) ->
|
setLocale: (locale) ->
|
||||||
return unless locale
|
return unless locale
|
||||||
|
|
||||||
I18n.locale = locale
|
I18n.locale = locale
|
||||||
localStorage.setItem('travis.locale', locale)
|
localStorage.setItem('travis.locale', locale)
|
||||||
|
|
||||||
|
@ -57,6 +56,7 @@ if window.history.state == undefined
|
||||||
run: (attrs) ->
|
run: (attrs) ->
|
||||||
location.href = location.href.replace('#!/', '') if location.hash.slice(0, 2) == '#!'
|
location.href = location.href.replace('#!/', '') if location.hash.slice(0, 2) == '#!'
|
||||||
|
|
||||||
|
I18n.fallbacks = true
|
||||||
@setLocale localStorage.getItem('travis.locale') || 'en'
|
@setLocale localStorage.getItem('travis.locale') || 'en'
|
||||||
|
|
||||||
Ember.run.next this, ->
|
Ember.run.next this, ->
|
||||||
|
|
|
@ -1,58 +1,4 @@
|
||||||
en:
|
en:
|
||||||
admin:
|
|
||||||
actions:
|
|
||||||
create: create
|
|
||||||
created: created
|
|
||||||
delete: delete
|
|
||||||
deleted: deleted
|
|
||||||
update: update
|
|
||||||
updated: updated
|
|
||||||
credentials:
|
|
||||||
log_out: Log out
|
|
||||||
dashboard:
|
|
||||||
add_new: Add new
|
|
||||||
ago: ago
|
|
||||||
last_used: Last used
|
|
||||||
model_name: Model name
|
|
||||||
modify: Modify
|
|
||||||
name: Dashboard
|
|
||||||
pagename: Site administration
|
|
||||||
records: Records
|
|
||||||
show: Show
|
|
||||||
delete:
|
|
||||||
confirmation: Yes, I'm sure
|
|
||||||
flash_confirmation: ! '%{name} was successfully destroyed'
|
|
||||||
flash:
|
|
||||||
error: ! '%{name} failed to be %{action}'
|
|
||||||
noaction: No actions were taken
|
|
||||||
successful: ! '%{name} was successfully %{action}'
|
|
||||||
history:
|
|
||||||
name: History
|
|
||||||
no_activity: No Activity
|
|
||||||
page_name: History for %{name}
|
|
||||||
list:
|
|
||||||
add_new: Add new
|
|
||||||
delete_action: Delete
|
|
||||||
delete_selected: Delete selected
|
|
||||||
edit_action: Edit
|
|
||||||
search: Search
|
|
||||||
select: Select %{name} to edit
|
|
||||||
select_action: Select
|
|
||||||
show_all: Show all
|
|
||||||
new:
|
|
||||||
basic_info: Basic info
|
|
||||||
cancel: Cancel
|
|
||||||
chose_all: Choose all
|
|
||||||
chosen: Chosen %{name}
|
|
||||||
clear_all: Clear all
|
|
||||||
many_chars: characters or fewer.
|
|
||||||
one_char: character.
|
|
||||||
optional: Optional
|
|
||||||
required: Required
|
|
||||||
save: Save
|
|
||||||
save_and_add_another: Save and add another
|
|
||||||
save_and_edit: Save and edit
|
|
||||||
select_choice: Select your choice(s) and click
|
|
||||||
build:
|
build:
|
||||||
duration: Duration
|
duration: Duration
|
||||||
finished_at: Finished
|
finished_at: Finished
|
||||||
|
@ -84,40 +30,6 @@ en:
|
||||||
seconds_exact:
|
seconds_exact:
|
||||||
one: ! '%{count} second'
|
one: ! '%{count} second'
|
||||||
other: ! '%{count} seconds'
|
other: ! '%{count} seconds'
|
||||||
devise:
|
|
||||||
confirmations:
|
|
||||||
confirmed: Your account was successfully confirmed. You are now signed in.
|
|
||||||
send_instructions: You will receive an email with instructions about how to confirm your account in a few minutes.
|
|
||||||
failure:
|
|
||||||
inactive: Your account was not activated yet.
|
|
||||||
invalid: Invalid email or password.
|
|
||||||
invalid_token: Invalid authentication token.
|
|
||||||
locked: Your account is locked.
|
|
||||||
timeout: Your session expired, please sign in again to continue.
|
|
||||||
unauthenticated: You need to sign in or sign up before continuing.
|
|
||||||
unconfirmed: You have to confirm your account before continuing.
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject: Confirmation instructions
|
|
||||||
reset_password_instructions:
|
|
||||||
subject: Reset password instructions
|
|
||||||
unlock_instructions:
|
|
||||||
subject: Unlock Instructions
|
|
||||||
omniauth_callbacks:
|
|
||||||
success:
|
|
||||||
passwords:
|
|
||||||
send_instructions: You will receive an email with instructions about how to reset your password in a few minutes.
|
|
||||||
updated: Your password was changed successfully. You are now signed in.
|
|
||||||
registrations:
|
|
||||||
destroyed: Bye! Your account was successfully cancelled. We hope to see you again soon.
|
|
||||||
signed_up: You have signed up successfully. If enabled, a confirmation was sent to your e-mail.
|
|
||||||
updated: You updated your account successfully.
|
|
||||||
sessions:
|
|
||||||
signed_in: Signed in successfully.
|
|
||||||
signed_out: Signed out successfully.
|
|
||||||
unlocks:
|
|
||||||
send_instructions: You will receive an email with instructions about how to unlock your account in a few minutes.
|
|
||||||
unlocked: Your account was successfully unlocked. You are now signed in.
|
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
already_confirmed: was already confirmed
|
already_confirmed: was already confirmed
|
||||||
|
@ -234,7 +146,6 @@ en:
|
||||||
repo_growth: Repository Growth
|
repo_growth: Repository Growth
|
||||||
total_builds: Total Builds
|
total_builds: Total Builds
|
||||||
total_projects: Total Projects/Repositories
|
total_projects: Total Projects/Repositories
|
||||||
test:
|
|
||||||
user:
|
user:
|
||||||
failure:
|
failure:
|
||||||
signed_out:
|
signed_out:
|
||||||
|
|
|
@ -1,58 +1,4 @@
|
||||||
es:
|
es:
|
||||||
admin:
|
|
||||||
actions:
|
|
||||||
create: crear
|
|
||||||
created: creado
|
|
||||||
delete: borrar
|
|
||||||
deleted: borrado
|
|
||||||
update: actualizar
|
|
||||||
updated: actualizado
|
|
||||||
credentials:
|
|
||||||
log_out: Salir
|
|
||||||
dashboard:
|
|
||||||
add_new: Añadir Nuevo
|
|
||||||
ago: Hace
|
|
||||||
last_used: Usado por última vez
|
|
||||||
model_name: Nombre del modelo
|
|
||||||
modify: Modificar
|
|
||||||
name: Panel
|
|
||||||
pagename: Administración del Sitio
|
|
||||||
records: Registros
|
|
||||||
show: Mostrar
|
|
||||||
delete:
|
|
||||||
confirmation: Si, estoy seguro
|
|
||||||
flash_confirmation: ! '%{name} ha sido borrado'
|
|
||||||
flash:
|
|
||||||
error: no se ha podido %{action} %{name}
|
|
||||||
noaction: No se efectuaron acciones
|
|
||||||
successful: ! '%{name} a sido correctamente %{action}'
|
|
||||||
history:
|
|
||||||
name: Histórico
|
|
||||||
no_activity: Sin actividad
|
|
||||||
page_name: Histórico de %{name}
|
|
||||||
list:
|
|
||||||
add_new: Añadir nuevo
|
|
||||||
delete_action: Borrar
|
|
||||||
delete_selected: Borrar seleccionado
|
|
||||||
edit_action: Editar
|
|
||||||
search: Buscar
|
|
||||||
select: Seleccionar %{name} para editar
|
|
||||||
select_action: Seleccionar
|
|
||||||
show_all: Mostrar todos
|
|
||||||
new:
|
|
||||||
basic_info: Información Basica
|
|
||||||
cancel: Cancelar
|
|
||||||
chose_all: Escoger todo
|
|
||||||
chosen: Escogido %{name}
|
|
||||||
clear_all: Limpiar todo
|
|
||||||
many_chars: carácteres o menos.
|
|
||||||
one_char: carácter.
|
|
||||||
optional: Opcional
|
|
||||||
required: Requerido
|
|
||||||
save: Guardar
|
|
||||||
save_and_add_another: Guardar y añadir otro
|
|
||||||
save_and_edit: Guardar y editar
|
|
||||||
select_choice: Escoge tu selección y haz clic
|
|
||||||
build:
|
build:
|
||||||
duration: Duración
|
duration: Duración
|
||||||
finished_at: Finalizado
|
finished_at: Finalizado
|
||||||
|
@ -84,40 +30,6 @@ es:
|
||||||
seconds_exact:
|
seconds_exact:
|
||||||
one: ! '%{count} segundo'
|
one: ! '%{count} segundo'
|
||||||
other: ! '%{count} segundos'
|
other: ! '%{count} segundos'
|
||||||
devise:
|
|
||||||
confirmations:
|
|
||||||
confirmed: Tu cuenta ha sido confirmada correctamente. Ahora puedes iniciar sesión.
|
|
||||||
send_instructions: En unos minutos recibirás un email con instrucciones de como confirmar tu cuenta.
|
|
||||||
failure:
|
|
||||||
inactive: Tu cuenta no ha sido activada aún.
|
|
||||||
invalid: Email o contraseña incorrecta.
|
|
||||||
invalid_token: Token de autenticación inválido.
|
|
||||||
locked: Tu cuenta está bloqueada
|
|
||||||
timeout: Tu sesión ha finalizado, por favor inicia sesión otra vez para continuar.
|
|
||||||
unauthenticated: Necesitas iniciar sesión antes de continuar.
|
|
||||||
unconfirmed: Tienes que confirmar tu cuenta para poder continuar.
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject: Instrucciones de confirmación
|
|
||||||
reset_password_instructions:
|
|
||||||
subject: Instrucciones para un resetear tu password
|
|
||||||
unlock_instructions:
|
|
||||||
subject: Instrucciones de desbloqueo
|
|
||||||
omniauth_callbacks:
|
|
||||||
success:
|
|
||||||
passwords:
|
|
||||||
send_instructions: En unos minutos recibirás un correo con instrucciones de como resetear tu password.
|
|
||||||
updated: Tu password ha sido cambiado correctamente. Ha hora puedes iniciar sesión.
|
|
||||||
registrations:
|
|
||||||
destroyed: ¡Adios! Su cuenta a sido cancelada correctamente. Esperamos verte pronto otra vez,
|
|
||||||
signed_up: Ha iniciado sesión correctamente. Si esta activo, una confirmación habrá sido enviada a su email.
|
|
||||||
updated: Ha actualizado su cuenta correctamente.
|
|
||||||
sessions:
|
|
||||||
signed_in: Ha iniciado sesión correctamente.
|
|
||||||
signed_out: Ha desconectado correctamente
|
|
||||||
unlocks:
|
|
||||||
send_instructions: ! ' En unos minutos recibirá un email con instrucciones de como desbloquear su cuenta.'
|
|
||||||
unlocked: Su cuenta ha sido correctamente desbloqueada. Ahora ya puede iniciar sesión.
|
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
already_confirmed: ya ha sido confirmado
|
already_confirmed: ya ha sido confirmado
|
||||||
|
@ -234,7 +146,6 @@ es:
|
||||||
repo_growth: Crecimiento de Repositorios
|
repo_growth: Crecimiento de Repositorios
|
||||||
total_builds: Total de Builds
|
total_builds: Total de Builds
|
||||||
total_projects: Total de Proyectos/Repositorios
|
total_projects: Total de Proyectos/Repositorios
|
||||||
test:
|
|
||||||
user:
|
user:
|
||||||
failure:
|
failure:
|
||||||
signed_out:
|
signed_out:
|
||||||
|
|
|
@ -1,58 +1,4 @@
|
||||||
fr:
|
fr:
|
||||||
admin:
|
|
||||||
actions:
|
|
||||||
create: créer
|
|
||||||
created: créé
|
|
||||||
delete: supprimer
|
|
||||||
deleted: supprimé
|
|
||||||
update: mise à jour
|
|
||||||
updated: mis à jour
|
|
||||||
credentials:
|
|
||||||
log_out: Déconnexion
|
|
||||||
dashboard:
|
|
||||||
add_new: Ajouter un nouveau
|
|
||||||
ago: plus tôt
|
|
||||||
last_used: Dernière utilisation
|
|
||||||
model_name: Nom du modèle
|
|
||||||
modify: Modification
|
|
||||||
name: Tableau de bord
|
|
||||||
pagename: Administration du site
|
|
||||||
records: Enregistrements
|
|
||||||
show: Voir
|
|
||||||
delete:
|
|
||||||
confirmation: Oui, je suis sûr
|
|
||||||
flash_confirmation: ! '%{name} a été détruit avec succès'
|
|
||||||
flash:
|
|
||||||
error: ! '%{name} n''a pas pu être %{action}'
|
|
||||||
noaction: Aucune action n'a été entreprise
|
|
||||||
successful: ! '%{name} a réussi à %{action}'
|
|
||||||
history:
|
|
||||||
name: Historique
|
|
||||||
no_activity: Aucune activité
|
|
||||||
page_name: Historique pour %{name}
|
|
||||||
list:
|
|
||||||
add_new: Ajouter un nouveau
|
|
||||||
delete_action: Supprimer
|
|
||||||
delete_selected: Supprimer la sélection
|
|
||||||
edit_action: Modifier
|
|
||||||
search: Rechercher
|
|
||||||
select: Sélectionner le %{name} à modifier
|
|
||||||
select_action: Sélectionner
|
|
||||||
show_all: Montrer tout
|
|
||||||
new:
|
|
||||||
basic_info: Information de base
|
|
||||||
cancel: Annuler
|
|
||||||
chose_all: Choisir tout
|
|
||||||
chosen: ! '%{name} choisi'
|
|
||||||
clear_all: Déselectionner tout
|
|
||||||
many_chars: caractères ou moins
|
|
||||||
one_char: caractère.
|
|
||||||
optional: Optionnel
|
|
||||||
required: Requis
|
|
||||||
save: Sauvegarder
|
|
||||||
save_and_add_another: Sauvegarder et en ajouter un autre
|
|
||||||
save_and_edit: Sauvegarder et modifier
|
|
||||||
select_choice: Faites vos choix et cliquez
|
|
||||||
build:
|
build:
|
||||||
duration: Durée
|
duration: Durée
|
||||||
finished_at: Terminé
|
finished_at: Terminé
|
||||||
|
@ -84,40 +30,6 @@ fr:
|
||||||
seconds_exact:
|
seconds_exact:
|
||||||
one: ! '%{count} seconde'
|
one: ! '%{count} seconde'
|
||||||
other: ! '%{count} secondes'
|
other: ! '%{count} secondes'
|
||||||
devise:
|
|
||||||
confirmations:
|
|
||||||
confirmed: Votre compte a été crée avec succès. Vous être maintenant connecté.
|
|
||||||
send_instructions: Vous allez recevoir un courriel avec les instructions de confirmation de votre compte dans quelques minutes.
|
|
||||||
failure:
|
|
||||||
inactive: Votre compte n'a pas encore été activé.
|
|
||||||
invalid: Adresse courriel ou mot de passe invalide.
|
|
||||||
invalid_token: Jeton d'authentification invalide.
|
|
||||||
locked: Votre compte est bloqué.
|
|
||||||
timeout: Votre session est expirée, veuillez vous reconnecter pour continuer.
|
|
||||||
unauthenticated: Vous devez vous connecter ou vous enregistrer afin de continuer
|
|
||||||
unconfirmed: Vous devez confirmer votre compte avant de continuer.
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject: Instructions de confirmations
|
|
||||||
reset_password_instructions:
|
|
||||||
subject: Instruction de remise à zéro du mot de passe
|
|
||||||
unlock_instructions:
|
|
||||||
subject: Instruction de débloquage
|
|
||||||
omniauth_callbacks:
|
|
||||||
success:
|
|
||||||
passwords:
|
|
||||||
send_instructions: Vous recevrez un courriel avec les instructions de remise à zéro du mot de passe dans quelques minutes.
|
|
||||||
updated: Votre mot de passe a été changé avec succès. Vous êtes maintenant connecté.
|
|
||||||
registrations:
|
|
||||||
destroyed: Au revoir! Votre compte a été annulé avec succès. Nous espérons vous revoir bientôt.
|
|
||||||
signed_up: Vous êtes enregistré avec succès. Si activé, une confirmation vous a été envoyé par courriel.
|
|
||||||
updated: Votre compte a été mis a jour avec succès
|
|
||||||
sessions:
|
|
||||||
signed_in: Connecté avec succès
|
|
||||||
signed_out: Déconnecté avec succès
|
|
||||||
unlocks:
|
|
||||||
send_instructions: Vous recevrez un courriel contenant les instructions pour débloquer votre compte dans quelques minutes.
|
|
||||||
unlocked: Votre compte a été débloqué avec succès.
|
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
already_confirmed: étais déja confirmé
|
already_confirmed: étais déja confirmé
|
||||||
|
@ -236,7 +148,6 @@ fr:
|
||||||
repo_growth: Croissance de dépôt
|
repo_growth: Croissance de dépôt
|
||||||
total_builds: Total des versions
|
total_builds: Total des versions
|
||||||
total_projects: Total des projets/dépôts
|
total_projects: Total des projets/dépôts
|
||||||
test:
|
|
||||||
user:
|
user:
|
||||||
failure:
|
failure:
|
||||||
signed_out:
|
signed_out:
|
||||||
|
|
|
@ -1,58 +1,4 @@
|
||||||
ja:
|
ja:
|
||||||
admin:
|
|
||||||
actions:
|
|
||||||
create:
|
|
||||||
created:
|
|
||||||
delete:
|
|
||||||
deleted:
|
|
||||||
update:
|
|
||||||
updated:
|
|
||||||
credentials:
|
|
||||||
log_out:
|
|
||||||
dashboard:
|
|
||||||
add_new:
|
|
||||||
ago:
|
|
||||||
last_used:
|
|
||||||
model_name:
|
|
||||||
modify:
|
|
||||||
name:
|
|
||||||
pagename:
|
|
||||||
records:
|
|
||||||
show:
|
|
||||||
delete:
|
|
||||||
confirmation:
|
|
||||||
flash_confirmation:
|
|
||||||
flash:
|
|
||||||
error:
|
|
||||||
noaction:
|
|
||||||
successful:
|
|
||||||
history:
|
|
||||||
name:
|
|
||||||
no_activity:
|
|
||||||
page_name:
|
|
||||||
list:
|
|
||||||
add_new:
|
|
||||||
delete_action:
|
|
||||||
delete_selected:
|
|
||||||
edit_action:
|
|
||||||
search:
|
|
||||||
select:
|
|
||||||
select_action:
|
|
||||||
show_all:
|
|
||||||
new:
|
|
||||||
basic_info:
|
|
||||||
cancel:
|
|
||||||
chose_all:
|
|
||||||
chosen:
|
|
||||||
clear_all:
|
|
||||||
many_chars:
|
|
||||||
one_char:
|
|
||||||
optional:
|
|
||||||
required:
|
|
||||||
save:
|
|
||||||
save_and_add_another:
|
|
||||||
save_and_edit:
|
|
||||||
select_choice:
|
|
||||||
build:
|
build:
|
||||||
duration: 処理時間
|
duration: 処理時間
|
||||||
finished_at: 終了時刻
|
finished_at: 終了時刻
|
||||||
|
@ -78,40 +24,6 @@ ja:
|
||||||
hours_exact:
|
hours_exact:
|
||||||
minutes_exact:
|
minutes_exact:
|
||||||
seconds_exact:
|
seconds_exact:
|
||||||
devise:
|
|
||||||
confirmations:
|
|
||||||
confirmed:
|
|
||||||
send_instructions:
|
|
||||||
failure:
|
|
||||||
inactive:
|
|
||||||
invalid:
|
|
||||||
invalid_token:
|
|
||||||
locked:
|
|
||||||
timeout:
|
|
||||||
unauthenticated:
|
|
||||||
unconfirmed:
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject:
|
|
||||||
reset_password_instructions:
|
|
||||||
subject:
|
|
||||||
unlock_instructions:
|
|
||||||
subject:
|
|
||||||
omniauth_callbacks:
|
|
||||||
success:
|
|
||||||
passwords:
|
|
||||||
send_instructions:
|
|
||||||
updated:
|
|
||||||
registrations:
|
|
||||||
destroyed:
|
|
||||||
signed_up:
|
|
||||||
updated:
|
|
||||||
sessions:
|
|
||||||
signed_in:
|
|
||||||
signed_out:
|
|
||||||
unlocks:
|
|
||||||
send_instructions:
|
|
||||||
unlocked:
|
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
already_confirmed:
|
already_confirmed:
|
||||||
|
@ -228,7 +140,6 @@ ja:
|
||||||
repo_growth: リポジトリ
|
repo_growth: リポジトリ
|
||||||
total_builds: 合計ビルド数
|
total_builds: 合計ビルド数
|
||||||
total_projects: 合計リポジトリ
|
total_projects: 合計リポジトリ
|
||||||
test:
|
|
||||||
user:
|
user:
|
||||||
failure:
|
failure:
|
||||||
signed_out:
|
signed_out:
|
||||||
|
|
|
@ -1,58 +1,4 @@
|
||||||
nb:
|
nb:
|
||||||
admin:
|
|
||||||
actions:
|
|
||||||
create: opprett
|
|
||||||
created: opprettet
|
|
||||||
delete: slett
|
|
||||||
deleted: slettet
|
|
||||||
update: oppdater
|
|
||||||
updated: oppdatert
|
|
||||||
credentials:
|
|
||||||
log_out: Logg ut
|
|
||||||
dashboard:
|
|
||||||
add_new: Legg til ny
|
|
||||||
ago: siden
|
|
||||||
last_used: Sist brukt
|
|
||||||
model_name: Modell
|
|
||||||
modify: Rediger
|
|
||||||
name: Dashbord
|
|
||||||
pagename: Nettstedsadministrasjon
|
|
||||||
records: Oppføringer
|
|
||||||
show: Vis
|
|
||||||
delete:
|
|
||||||
confirmation: Ja, jeg er sikker
|
|
||||||
flash_confirmation: ! '%{name} ble slettet'
|
|
||||||
flash:
|
|
||||||
error: ! '%{name} kunne ikke bli %{action}'
|
|
||||||
noaction: Ingen handlinger ble utført
|
|
||||||
successful: ! '%{name} ble %{action}'
|
|
||||||
history:
|
|
||||||
name: Logg
|
|
||||||
no_activity: Ingen aktivitet
|
|
||||||
page_name: Logg for %{name}
|
|
||||||
list:
|
|
||||||
add_new: Legg til ny
|
|
||||||
delete_action: Slett
|
|
||||||
delete_selected: Slett valgte
|
|
||||||
edit_action: Rediger
|
|
||||||
search: Søk
|
|
||||||
select: Velg %{name} for å redigere
|
|
||||||
select_action: Velg
|
|
||||||
show_all: ! 'Vis alle '
|
|
||||||
new:
|
|
||||||
basic_info: Basisinformasjon
|
|
||||||
cancel: Avbryt
|
|
||||||
chose_all: Velg alle
|
|
||||||
chosen: Valgt %{name}
|
|
||||||
clear_all: Fjern alle
|
|
||||||
many_chars: eller færre tegn.
|
|
||||||
one_char: tegn.
|
|
||||||
optional: Valgfri
|
|
||||||
required: Påkrevd
|
|
||||||
save: Lagre
|
|
||||||
save_and_add_another: Lagre og legg til ny
|
|
||||||
save_and_edit: Lagre og rediger
|
|
||||||
select_choice: Kryss av for dine valg og klikk
|
|
||||||
build:
|
build:
|
||||||
duration: Varighet
|
duration: Varighet
|
||||||
finished_at: Fullført
|
finished_at: Fullført
|
||||||
|
@ -84,40 +30,6 @@ nb:
|
||||||
seconds_exact:
|
seconds_exact:
|
||||||
one: ! '%{count} sekund'
|
one: ! '%{count} sekund'
|
||||||
other: ! '%{count} sekunder'
|
other: ! '%{count} sekunder'
|
||||||
devise:
|
|
||||||
confirmations:
|
|
||||||
confirmed: Din konto er aktivert og du er nå innlogget.
|
|
||||||
send_instructions: Om noen få minutter så vil du få en e-post med informasjon om hvordan du bekrefter kontoen din.
|
|
||||||
failure:
|
|
||||||
inactive: Kontoen din har ikke blitt aktivert enda.
|
|
||||||
invalid: Ugyldig e-post eller passord.
|
|
||||||
invalid_token: Ugyldig autentiseringskode.
|
|
||||||
locked: Kontoen din er låst.
|
|
||||||
timeout: Du ble logget ut siden på grunn av mangel på aktivitet, vennligst logg inn på nytt.
|
|
||||||
unauthenticated: Du må logge inn eller registrere deg for å fortsette.
|
|
||||||
unconfirmed: Du må bekrefte kontoen din før du kan fortsette.
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject: Bekreftelsesinformasjon
|
|
||||||
reset_password_instructions:
|
|
||||||
subject: Instruksjoner for å få nytt passord
|
|
||||||
unlock_instructions:
|
|
||||||
subject: Opplåsningsinstruksjoner
|
|
||||||
omniauth_callbacks:
|
|
||||||
success:
|
|
||||||
passwords:
|
|
||||||
send_instructions: Om noen få minutter så vil du få en epost med informasjon om hvordan du kan få et nytt passord.
|
|
||||||
updated: Passordet ditt ble endret, og du er logget inn.
|
|
||||||
registrations:
|
|
||||||
destroyed: Adjø! Kontoen din ble kansellert. Vi håper vi ser deg igjen snart.
|
|
||||||
signed_up: Du er nå registrert.
|
|
||||||
updated: Kontoen din ble oppdatert.
|
|
||||||
sessions:
|
|
||||||
signed_in: Du er nå logget inn.
|
|
||||||
signed_out: Du er nå logget ut.
|
|
||||||
unlocks:
|
|
||||||
send_instructions: Om noen få minutter så kommer du til å få en e-post med informasjon om hvordan du kan låse opp kontoen din.
|
|
||||||
unlocked: Kontoen din ble låst opp, og du er nå logget inn igjen.
|
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
already_confirmed: har allerede blitt bekreftet
|
already_confirmed: har allerede blitt bekreftet
|
||||||
|
@ -234,7 +146,6 @@ nb:
|
||||||
repo_growth: Vekst i kodelager
|
repo_growth: Vekst i kodelager
|
||||||
total_builds: Totale jobber
|
total_builds: Totale jobber
|
||||||
total_projects: Antall prosjekter/kodelagre
|
total_projects: Antall prosjekter/kodelagre
|
||||||
test:
|
|
||||||
user:
|
user:
|
||||||
failure:
|
failure:
|
||||||
signed_out:
|
signed_out:
|
||||||
|
|
|
@ -1,58 +1,4 @@
|
||||||
nl:
|
nl:
|
||||||
admin:
|
|
||||||
actions:
|
|
||||||
create: aanmaken
|
|
||||||
created: aangemaakt
|
|
||||||
delete: verwijderen
|
|
||||||
deleted: verwijderd
|
|
||||||
update: bijwerken
|
|
||||||
updated: bijgewerkt
|
|
||||||
credentials:
|
|
||||||
log_out: Afmelden
|
|
||||||
dashboard:
|
|
||||||
add_new: Nieuwe toevoegen
|
|
||||||
ago: geleden
|
|
||||||
last_used: Laatst gebruikt
|
|
||||||
model_name: Model naam
|
|
||||||
modify: Wijzigen
|
|
||||||
name:
|
|
||||||
pagename: Site administratie
|
|
||||||
records: Gegevens
|
|
||||||
show: Laten zien
|
|
||||||
delete:
|
|
||||||
confirmation: Ja, ik ben zeker
|
|
||||||
flash_confirmation: ! '%{name} is vernietigd'
|
|
||||||
flash:
|
|
||||||
error: ! '%{name} kon niet worden %{action}'
|
|
||||||
noaction: Er zijn geen acties genomen
|
|
||||||
successful: ! '%{name} is %{action}'
|
|
||||||
history:
|
|
||||||
name: Geschiedenis
|
|
||||||
no_activity: Geen activiteit
|
|
||||||
page_name: Geschiedenis van %{name}
|
|
||||||
list:
|
|
||||||
add_new: Nieuwe toevoegen
|
|
||||||
delete_action: Verwijderen
|
|
||||||
delete_selected: Verwijder geselecteerden
|
|
||||||
edit_action: Bewerken
|
|
||||||
search: Zoeken
|
|
||||||
select: Selecteer %{name} om te bewerken
|
|
||||||
select_action: Selecteer
|
|
||||||
show_all: Laat allen zien
|
|
||||||
new:
|
|
||||||
basic_info: Basisinfo
|
|
||||||
cancel: Annuleren
|
|
||||||
chose_all: Kies allen
|
|
||||||
chosen: ! '%{name} gekozen'
|
|
||||||
clear_all: Deselecteer allen
|
|
||||||
many_chars: tekens of minder.
|
|
||||||
one_char: teken.
|
|
||||||
optional: Optioneel
|
|
||||||
required: Vereist
|
|
||||||
save: Opslaan
|
|
||||||
save_and_add_another: Opslaan en een nieuwe toevoegen
|
|
||||||
save_and_edit: Opslaan en bewerken
|
|
||||||
select_choice: Selecteer uw keuzes en klik
|
|
||||||
build:
|
build:
|
||||||
duration: Duur
|
duration: Duur
|
||||||
finished_at: Voltooid
|
finished_at: Voltooid
|
||||||
|
@ -84,40 +30,6 @@ nl:
|
||||||
seconds_exact:
|
seconds_exact:
|
||||||
one: ! '%{count} seconde'
|
one: ! '%{count} seconde'
|
||||||
other: ! '%{count} seconden'
|
other: ! '%{count} seconden'
|
||||||
devise:
|
|
||||||
confirmations:
|
|
||||||
confirmed: Uw account is bevestigd. U wordt nu ingelogd.
|
|
||||||
send_instructions: Binnen enkele minuten zal u een email ontvangen met instructies om uw account te bevestigen.
|
|
||||||
failure:
|
|
||||||
inactive: Uw account is nog niet geactiveerd.
|
|
||||||
invalid: Ongeldig email adres of wachtwoord.
|
|
||||||
invalid_token: Ongeldig authenticatie token.
|
|
||||||
locked: Uw account is vergrendeld.
|
|
||||||
timeout: Uw sessie is verlopen, gelieve opnieuw in te loggen om verder te gaan.
|
|
||||||
unauthenticated: U moet inloggen of u registeren voordat u verder gaat.
|
|
||||||
unconfirmed: U moet uw account bevestigen voordat u verder gaat.
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject: Bevestigings-instructies
|
|
||||||
reset_password_instructions:
|
|
||||||
subject: Wachtwoord herstel instructies
|
|
||||||
unlock_instructions:
|
|
||||||
subject: Ontgrendel-instructies
|
|
||||||
omniauth_callbacks:
|
|
||||||
success:
|
|
||||||
passwords:
|
|
||||||
send_instructions: Binnen enkele minuten zal u een email krijgen met instructies om uw wachtwoord opnieuw in te stellen.
|
|
||||||
updated: Uw wachtwoord is veranderd. U wordt nu ingelogd.
|
|
||||||
registrations:
|
|
||||||
destroyed: Dag! Uw account is geannuleerd. We hopen u vlug terug te zien.
|
|
||||||
signed_up: Uw registratie is voltooid. Als het ingeschakeld is wordt een bevestiging naar uw email adres verzonden.
|
|
||||||
updated: Het bijwerken van uw account is gelukt.
|
|
||||||
sessions:
|
|
||||||
signed_in: Inloggen gelukt.
|
|
||||||
signed_out: Uitloggen gelukt.
|
|
||||||
unlocks:
|
|
||||||
send_instructions: Binnen enkele minuten zal u een email krijgen met instructies om uw account te ontgrendelen.
|
|
||||||
unlocked: Uw account is ontgrendeld. U wordt nu ingelogd.
|
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
already_confirmed: was al bevestigd
|
already_confirmed: was al bevestigd
|
||||||
|
@ -236,7 +148,6 @@ nl:
|
||||||
repo_growth: Repository groei
|
repo_growth: Repository groei
|
||||||
total_builds: Bouw totaal
|
total_builds: Bouw totaal
|
||||||
total_projects: Projecten/Repository totaal
|
total_projects: Projecten/Repository totaal
|
||||||
test:
|
|
||||||
user:
|
user:
|
||||||
failure:
|
failure:
|
||||||
signed_out:
|
signed_out:
|
||||||
|
|
|
@ -1,58 +1,4 @@
|
||||||
pl:
|
pl:
|
||||||
admin:
|
|
||||||
actions:
|
|
||||||
create: utwórz
|
|
||||||
created: utworzono
|
|
||||||
delete: usuń
|
|
||||||
deleted: usunięto
|
|
||||||
update: nadpisz
|
|
||||||
updated: nadpisano
|
|
||||||
credentials:
|
|
||||||
log_out: Wyloguj się
|
|
||||||
dashboard:
|
|
||||||
add_new: Dodaj nowy
|
|
||||||
ago: temu
|
|
||||||
last_used: Ostatnio używane
|
|
||||||
model_name: Nazwa modelu
|
|
||||||
modify: Zmień
|
|
||||||
name: Kokpit
|
|
||||||
pagename: Administracja stroną
|
|
||||||
records: Rekordy
|
|
||||||
show: Pokaż
|
|
||||||
delete:
|
|
||||||
confirmation: Tak, jestem pewien
|
|
||||||
flash_confirmation: ! '%{name} zostało usunięty'
|
|
||||||
flash:
|
|
||||||
error: ! '%{name} nie zostało %{action}'
|
|
||||||
noaction:
|
|
||||||
successful:
|
|
||||||
history:
|
|
||||||
name:
|
|
||||||
no_activity:
|
|
||||||
page_name:
|
|
||||||
list:
|
|
||||||
add_new:
|
|
||||||
delete_action:
|
|
||||||
delete_selected:
|
|
||||||
edit_action:
|
|
||||||
search:
|
|
||||||
select:
|
|
||||||
select_action:
|
|
||||||
show_all:
|
|
||||||
new:
|
|
||||||
basic_info:
|
|
||||||
cancel:
|
|
||||||
chose_all:
|
|
||||||
chosen:
|
|
||||||
clear_all:
|
|
||||||
many_chars:
|
|
||||||
one_char:
|
|
||||||
optional:
|
|
||||||
required:
|
|
||||||
save:
|
|
||||||
save_and_add_another:
|
|
||||||
save_and_edit:
|
|
||||||
select_choice:
|
|
||||||
build:
|
build:
|
||||||
duration: Czas trwania
|
duration: Czas trwania
|
||||||
finished_at: Zakończono
|
finished_at: Zakończono
|
||||||
|
@ -84,40 +30,6 @@ pl:
|
||||||
seconds_exact:
|
seconds_exact:
|
||||||
one: ! '%{count} sekunda'
|
one: ! '%{count} sekunda'
|
||||||
other: ! '%{count} sekundy'
|
other: ! '%{count} sekundy'
|
||||||
devise:
|
|
||||||
confirmations:
|
|
||||||
confirmed:
|
|
||||||
send_instructions:
|
|
||||||
failure:
|
|
||||||
inactive:
|
|
||||||
invalid:
|
|
||||||
invalid_token:
|
|
||||||
locked:
|
|
||||||
timeout:
|
|
||||||
unauthenticated:
|
|
||||||
unconfirmed:
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject:
|
|
||||||
reset_password_instructions:
|
|
||||||
subject:
|
|
||||||
unlock_instructions:
|
|
||||||
subject:
|
|
||||||
omniauth_callbacks:
|
|
||||||
success:
|
|
||||||
passwords:
|
|
||||||
send_instructions:
|
|
||||||
updated:
|
|
||||||
registrations:
|
|
||||||
destroyed:
|
|
||||||
signed_up:
|
|
||||||
updated:
|
|
||||||
sessions:
|
|
||||||
signed_in:
|
|
||||||
signed_out:
|
|
||||||
unlocks:
|
|
||||||
send_instructions:
|
|
||||||
unlocked:
|
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
already_confirmed:
|
already_confirmed:
|
||||||
|
@ -234,7 +146,6 @@ pl:
|
||||||
repo_growth: Przyrost repozytoriów
|
repo_growth: Przyrost repozytoriów
|
||||||
total_builds: Łącznie Buildów
|
total_builds: Łącznie Buildów
|
||||||
total_projects: Łącznie projektów/repozytoriów
|
total_projects: Łącznie projektów/repozytoriów
|
||||||
test:
|
|
||||||
user:
|
user:
|
||||||
failure:
|
failure:
|
||||||
signed_out:
|
signed_out:
|
||||||
|
|
|
@ -1,58 +1,4 @@
|
||||||
pt-BR:
|
pt-BR:
|
||||||
admin:
|
|
||||||
actions:
|
|
||||||
create: criar
|
|
||||||
created: criado
|
|
||||||
delete: deletar
|
|
||||||
deleted: deletado
|
|
||||||
update: atualizar
|
|
||||||
updated: atualizado
|
|
||||||
credentials:
|
|
||||||
log_out: Deslogar
|
|
||||||
dashboard:
|
|
||||||
add_new: Adicionar novo
|
|
||||||
ago: atrás
|
|
||||||
last_used: Última utilização
|
|
||||||
model_name: Nome do modelo
|
|
||||||
modify: Modificar
|
|
||||||
name: Dashboard
|
|
||||||
pagename: Administração do site
|
|
||||||
records: Registros
|
|
||||||
show: Mostrar
|
|
||||||
delete:
|
|
||||||
confirmation: Sim, tenho certeza
|
|
||||||
flash_confirmation: ! '%{name} foi destruído com sucesso'
|
|
||||||
flash:
|
|
||||||
error: ! '%{name} falhou ao %{action}'
|
|
||||||
noaction: Nenhuma ação foi tomada
|
|
||||||
successful: ! '%{name} foi %{action} com sucesso'
|
|
||||||
history:
|
|
||||||
name: Histórico
|
|
||||||
no_activity: Nenhuma Atividade
|
|
||||||
page_name: Histórico para %{name}
|
|
||||||
list:
|
|
||||||
add_new: Adicionar novo
|
|
||||||
delete_action: Deletar
|
|
||||||
delete_selected: Deletar selecionados
|
|
||||||
edit_action: Editar
|
|
||||||
search: Buscar
|
|
||||||
select: Selecionar %{name} para editar
|
|
||||||
select_action: Selecionar
|
|
||||||
show_all: Mostrar todos
|
|
||||||
new:
|
|
||||||
basic_info: Informações básicas
|
|
||||||
cancel: Cancelar
|
|
||||||
chose_all: Escolher todos
|
|
||||||
chosen: Escolhido %{name}
|
|
||||||
clear_all: Limpar todos
|
|
||||||
many_chars: caracteres ou menos.
|
|
||||||
one_char: caractere.
|
|
||||||
optional: Opcional
|
|
||||||
required: Requerido
|
|
||||||
save: Salvar
|
|
||||||
save_and_add_another: Salvar e adicionar outro
|
|
||||||
save_and_edit: Salvar e alterar
|
|
||||||
select_choice: Selecione e clique
|
|
||||||
build:
|
build:
|
||||||
duration: Duração
|
duration: Duração
|
||||||
finished_at: Concluído em
|
finished_at: Concluído em
|
||||||
|
@ -84,40 +30,6 @@ pt-BR:
|
||||||
seconds_exact:
|
seconds_exact:
|
||||||
one: ! '%{count} segundo'
|
one: ! '%{count} segundo'
|
||||||
other: ! '%{count} segundos'
|
other: ! '%{count} segundos'
|
||||||
devise:
|
|
||||||
confirmations:
|
|
||||||
confirmed: Sua conta foi confirmada com sucesso. Você agora está logado.
|
|
||||||
send_instructions: Você receberá um email com instruções de como confirmar sua conta em alguns minutos.
|
|
||||||
failure:
|
|
||||||
inactive: Sua conta ainda não foi ativada.
|
|
||||||
invalid: Email ou senha inválidos.
|
|
||||||
invalid_token: Token de autenticação inválido.
|
|
||||||
locked: Sua conta está trancada.
|
|
||||||
timeout: Sua sessão expirou, por favor faça seu login novamente.
|
|
||||||
unauthenticated: Você precisa fazer o login ou cadastrar-se antes de continuar.
|
|
||||||
unconfirmed: Você precisa confirmar sua conta antes de continuar.
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject: Instruções de confirmação
|
|
||||||
reset_password_instructions:
|
|
||||||
subject: Instruções de atualização de senha
|
|
||||||
unlock_instructions:
|
|
||||||
subject: Instruções de destrancamento
|
|
||||||
omniauth_callbacks:
|
|
||||||
success:
|
|
||||||
passwords:
|
|
||||||
send_instructions: Você receberá um email com instruções de como atualizar sua senha em alguns minutos.
|
|
||||||
updated: Sua senha foi alterada com sucesso. Você agora está logado.
|
|
||||||
registrations:
|
|
||||||
destroyed: Tchau! Sua conta foi cancelada com sucesso. Esperamos vê-lo novamente em breve!
|
|
||||||
signed_up: Você se cadastrou com sucesso. Se ativada, uma confirmação foi enviada para seu email.
|
|
||||||
updated: Você atualizou sua conta com sucesso.
|
|
||||||
sessions:
|
|
||||||
signed_in: Logado com sucesso.
|
|
||||||
signed_out: Deslogado com sucesso.
|
|
||||||
unlocks:
|
|
||||||
send_instructions: Você receberá um email com instruções de como destrancar sua conta em alguns minutos.
|
|
||||||
unlocked: Sua conta foi destrancada com sucesso. Você agora está logado.
|
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
already_confirmed: já foi confirmado
|
already_confirmed: já foi confirmado
|
||||||
|
@ -234,7 +146,6 @@ pt-BR:
|
||||||
repo_growth: Crescimento de Repositório
|
repo_growth: Crescimento de Repositório
|
||||||
total_builds: Total de Builds
|
total_builds: Total de Builds
|
||||||
total_projects: Total de Projetos/Repositórios
|
total_projects: Total de Projetos/Repositórios
|
||||||
test:
|
|
||||||
user:
|
user:
|
||||||
failure:
|
failure:
|
||||||
signed_out:
|
signed_out:
|
||||||
|
|
|
@ -1,58 +1,4 @@
|
||||||
ru:
|
ru:
|
||||||
admin:
|
|
||||||
actions:
|
|
||||||
create: создать
|
|
||||||
created: создано
|
|
||||||
delete: удалить
|
|
||||||
deleted: удалено
|
|
||||||
update: обновить
|
|
||||||
updated: обновлено
|
|
||||||
credentials:
|
|
||||||
log_out: Выход
|
|
||||||
dashboard:
|
|
||||||
add_new: Добавить
|
|
||||||
ago: назад
|
|
||||||
last_used: Использовалось в последний раз
|
|
||||||
model_name: Имя модели
|
|
||||||
modify: Изменить
|
|
||||||
name: Панель управления
|
|
||||||
pagename: Управление сайтом
|
|
||||||
records: Записи
|
|
||||||
show: Показать
|
|
||||||
delete:
|
|
||||||
confirmation: Да, я уверен
|
|
||||||
flash_confirmation: ! '%{name} успешно удалено'
|
|
||||||
flash:
|
|
||||||
error: ! '%{name} не удалось %{action}'
|
|
||||||
noaction: Никаких действий не произведено
|
|
||||||
successful: ! '%{name} было успешно %{action}'
|
|
||||||
history:
|
|
||||||
name: История
|
|
||||||
no_activity: Нет активности
|
|
||||||
page_name: История %{name}
|
|
||||||
list:
|
|
||||||
add_new: Добавить
|
|
||||||
delete_action: Удалить
|
|
||||||
delete_selected: Удалить выбранные
|
|
||||||
edit_action: Редактировать
|
|
||||||
search: Поиск
|
|
||||||
select: Для редактирования выберите %{name}
|
|
||||||
select_action: Выбрать
|
|
||||||
show_all: Показать все
|
|
||||||
new:
|
|
||||||
basic_info: Основная информация
|
|
||||||
cancel: Отмена
|
|
||||||
chose_all: Выбрать все
|
|
||||||
chosen: Выбрано %{name}
|
|
||||||
clear_all: Очистить все
|
|
||||||
many_chars: символов или меньше.
|
|
||||||
one_char: символ.
|
|
||||||
optional: Необязательно
|
|
||||||
required: Обязательно
|
|
||||||
save: Сохранить
|
|
||||||
save_and_add_another: Сохранить и добавить другое
|
|
||||||
save_and_edit: Сохранить и продолжить редактирование
|
|
||||||
select_choice: Выберите и кликните
|
|
||||||
build:
|
build:
|
||||||
duration: Длительность
|
duration: Длительность
|
||||||
finished_at: Завершен
|
finished_at: Завершен
|
||||||
|
@ -90,40 +36,6 @@ ru:
|
||||||
many: ! '%{count} секунд'
|
many: ! '%{count} секунд'
|
||||||
one: ! '%{count} секунда'
|
one: ! '%{count} секунда'
|
||||||
other: ! '%{count} секунды'
|
other: ! '%{count} секунды'
|
||||||
devise:
|
|
||||||
confirmations:
|
|
||||||
confirmed: Ваш аккаунт успешно подтвержден. Приветствуем!
|
|
||||||
send_instructions: В течении нескольких минут вы получите электронное письмо с инструкциями для прохождения процедуры подтверждения аккаунта.
|
|
||||||
failure:
|
|
||||||
inactive: Ваш аккаунт еще не активирован.
|
|
||||||
invalid: Ошибка в адресе почты или пароле.
|
|
||||||
invalid_token: Неправильный токен аутентификации.
|
|
||||||
locked: Ваш аккаунт заблокирован.
|
|
||||||
timeout: Сессия окончена. Для продолжения работы войдите снова.
|
|
||||||
unauthenticated: Вам нужно войти или зарегистрироваться.
|
|
||||||
unconfirmed: Вы должны сначала подтвердить свой аккаунт.
|
|
||||||
mailer:
|
|
||||||
confirmation_instructions:
|
|
||||||
subject: Инструкции для подтверждению аккаунта
|
|
||||||
reset_password_instructions:
|
|
||||||
subject: Инструкции для сброса пароля
|
|
||||||
unlock_instructions:
|
|
||||||
subject: Инструкции для разблокирования аккаунта
|
|
||||||
omniauth_callbacks:
|
|
||||||
success:
|
|
||||||
passwords:
|
|
||||||
send_instructions: В течении нескольких минут вы получите электронное письмо с инструкциями для сброса пароля.
|
|
||||||
updated: Ваш пароль успешно изменен. Приветствуем!
|
|
||||||
registrations:
|
|
||||||
destroyed: Ваш аккаунт был успешно удален. Живите долго и процветайте!
|
|
||||||
signed_up: Вы успешно прошли регистрацию. Инструкции для подтверждения аккаунта отправлены на ваш электронный адрес.
|
|
||||||
updated: Аккаунт успешно обновлен.
|
|
||||||
sessions:
|
|
||||||
signed_in: Приветствуем!
|
|
||||||
signed_out: Удачи!
|
|
||||||
unlocks:
|
|
||||||
send_instructions: В течении нескольких минут вы получите электронное письмо с инструкциям для разблокировния аккаунта.
|
|
||||||
unlocked: Ваш аккаунт успешно разблокирован. Приветствуем!
|
|
||||||
errors:
|
errors:
|
||||||
messages:
|
messages:
|
||||||
already_confirmed: уже подтвержден
|
already_confirmed: уже подтвержден
|
||||||
|
@ -242,7 +154,6 @@ ru:
|
||||||
repo_growth: Рост числа репозиториев
|
repo_growth: Рост числа репозиториев
|
||||||
total_builds: Всего билдов
|
total_builds: Всего билдов
|
||||||
total_projects: Всего проектов/репозиториев
|
total_projects: Всего проектов/репозиториев
|
||||||
test:
|
|
||||||
user:
|
user:
|
||||||
failure:
|
failure:
|
||||||
signed_out:
|
signed_out:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user