1
0
Fork 0
mirror of https://github.com/nishiki/manage-password.git synced 2024-11-26 23:33:03 +00:00

fix translate for add template

This commit is contained in:
Adrien Waksberg 2016-08-20 09:18:32 +02:00
parent 4b8c87c17f
commit 166d1f141a
3 changed files with 27 additions and 29 deletions

View file

@ -61,16 +61,15 @@ en:
add_key: add_key:
valid: "Key has been added!" valid: "Key has been added!"
add_item: add_item:
title: "Add a new item" name: "The item's name (mandatory"
name: "Enter the name: " group: "The group's name"
group: "Enter the group (optional): " host: "The hostname or ip"
server: "Enter the hostname or ip: " protocol: "The protocol of the connection (ssh, http, ...)"
protocol: "Enter the protocol of the connection (ssh, http, other): " login: "The login of connection"
login: "Enter the login connection: " password: "The password"
password: "Enter the the password: " port: "The connection port"
port: "Enter the connection port (optional): " comment: "A comment"
comment: "Enter a comment (optional): " otp_key: "The OTP secret"
otp_key: "Enter the otp secret (base32 secret key): "
valid: "Item has been added!" valid: "Item has been added!"
clipboard: clipboard:
choice: "What do you want to copy ? [q = quit, p = password, l = login]: " choice: "What do you want to copy ? [q = quit, p = password, l = login]: "

View file

@ -61,16 +61,15 @@ fr:
add_key: add_key:
valid: "La clé a bien été ajoutée!" valid: "La clé a bien été ajoutée!"
add_item: add_item:
title: "Ajout d'un nouvel élément" name: "Le nom de l'élément (obligatoire)"
name: "Entrez le nom: " group: "Le nom du groupe"
group: "Entrez le groupe (optionnel): " host: "Le nom de domaine ou l'ip"
server: "Entrez le nom de domaine ou l'ip: " protocol: "Le protocole de connexion (ssh, http, ...)"
protocol: "Entrez le protocole de connexion (ssh, http, other): " login: "L'identifiant de connexion"
login: "Entrez l'identifiant de connexion: " password: "Le mot de passe"
password: "Entrez le mot de passe: " port: "Le port de connexion"
port: "Entrez le port de connexion (optionnel): " comment: "Un commentaire"
comment: "Entrez un commentaire (optionnel): " otp_key: "Le secret OTP"
otp_key: "Entrez le secret OTP: "
valid: "L'élément a bien été ajouté!" valid: "L'élément a bien été ajouté!"
clipboard: clipboard:
choice: "Que voulez-vous copier ? : " choice: "Que voulez-vous copier ? : "

View file

@ -1,10 +1,10 @@
--- ---
name: name: # <%= I18n.t('form.add_item.name') %>
group: group: # <%= I18n.t('form.add_item.group') %>
host: host: # <%= I18n.t('form.add_item.host') %>
protocol: protocol: # <%= I18n.t('form.add_item.protocol') %>
user: user: # <%= I18n.t('form.add_item.login') %>
password: password: # <%= I18n.t('form.add_item.password') %>
port: port: # <%= I18n.t('form.add_item.port') %>
comment: comment: # <%= I18n.t('form.add_item.comment') %>
otp_secret: otp_secret: # <%= I18n.t('form.add_item.otp_key') %>