1
0
Fork 0
mirror of https://github.com/nishiki/manage-password.git synced 2024-10-27 10:43:20 +00:00

translate help for interactive mode

This commit is contained in:
nishiki 2013-12-26 22:47:06 +01:00
parent 9b0cb597e4
commit 6bdfa4c28e
3 changed files with 26 additions and 21 deletions

View file

@ -78,6 +78,15 @@ en:
bad_password: "Bad password!"
goodbye: "Goodbye!"
unknown_command: "Unknown command!"
option:
title: "Help"
show: "Search and show the results"
group: "Change the group for the search"
add: "Add an item"
update: "Update an item"
remove: "Remove an item"
help: "Show this message"
quit: "Quit the software"
display:
comment: "Comment"
error: "ERROR"

View file

@ -78,6 +78,15 @@ fr:
bad_password: "Mauvais mot de passe!"
goodbye: "Au revoir!"
unknown_command: "Commande inconnue!"
option:
title: "Aide"
show: "Cherche et affiche les résulats"
group: "Change de groupe pour la recherche"
add: "Ajout un élément"
update: "Met à jour un élément"
remove: "Supprime un élément"
help: "Affiche ce message d'aide"
quit: "Quitte le programme"
display:
comment: "Commentaire"
error: "ERREUR"

View file

@ -279,28 +279,15 @@ class Cli
group = nil
end
when 'help', 'h', '?'
puts '# Help'
puts "# #{I18n.t('cli.interactive.option.title')}"
puts '# --------------------'
puts '# Display an item:'
puts '# display SEARCH'
puts '# show SEARCH'
puts '# s SEARCH'
puts '# d SEARCH'
puts '# Add an new item:'
puts '# add'
puts '# a'
puts '# Update an item:'
puts '# update ID'
puts '# u ID'
puts '# Remove an item:'
puts '# remove ID'
puts '# delete ID'
puts '# r ID'
puts '# d ID'
puts '# Quit the program:'
puts '# quit'
puts '# exit'
puts '# q'
puts "# display, show, d, s SEARCH #{I18n.t('cli.interactive.option.show')}"
puts "# group, g #{I18n.t('cli.interactive.option.group')}"
puts "# add, a #{I18n.t('cli.interactive.option.add')}"
puts "# update, u ID #{I18n.t('cli.interactive.option.update')}"
puts "# remove, delete, r, d ID #{I18n.t('cli.interactive.option.remove')}"
puts "# help, h, ? #{I18n.t('cli.interactive.option.help')}"
puts "# quit, exit, q #{I18n.t('cli.interactive.option.quit')}"
when 'quit', 'exit', 'q'
puts I18n.t('cli.interactive.goodbye')
break