Fix 2 TODO items:
[jvcard.git] / src / be / nikiroo / jvcard / resources / resources_en.properties
1 # English (en) translation file (UTF-8)
2 #
3 # Note that any key can be doubled with a _NOUTF suffix
4 # to use when the flag --noutf is passed
5 #
6 # Also, the comments always refer to the key below them.
7 #
8
9
10 # (WHAT: a key to press, WHERE: action keys, FORMAT: MUST BE 3 chars long)
11 # Tab key
12 KEY_TAB = TAB
13 # (WHAT: a key to press, WHERE: action keys, FORMAT: MUST BE 3 chars long)
14 # Enter key
15 KEY_ENTER = ENT
16 # (WHAT: Action key, WHERE: All screens except the first (KEY_ACTION_QUIT))
17 # Go back to previous screen
18 KEY_ACTION_BACK = Back
19 # (WHAT: Action key, WHERE: MainWindow)
20 # Get help text
21 KEY_ACTION_HELP = Help
22 # (WHAT: Action key, WHERE: FileList)
23 # View the selected card
24 KEY_ACTION_VIEW_CARD = Open
25 # (WHAT: Action key, WHERE: ContactList)
26 # View the selected contact
27 KEY_ACTION_VIEW_CONTACT = Open
28 # (WHAT: Action key, WHERE: ContactDetails)
29 # Edit the contact
30 KEY_ACTION_EDIT_CONTACT = Edit
31 # (WHAT: Action key, WHERE: ContactDetails)
32 # Edit the contact in RAW mode
33 KEY_ACTION_EDIT_CONTACT_RAW = Raw
34 # (WHAT: Action key, WHERE: ContactDetailsRaw)
35 # Edit the RAW field
36 KEY_ACTION_EDIT_FIELD = Edit
37 # (WHAT: Action key, WHERE: ContactList)
38 # Save the whole card
39 KEY_ACTION_SAVE_CARD = Save
40 # (WHERE: ContactList/ContactDetailsRaw)
41 # Delete the selected element
42 KEY_ACTION_DELETE = Delete
43 # (WHAT: Action key, WHERE: ContactList)
44 # Filter the displayed contacts
45 KEY_ACTION_SEARCH = Search
46 # (FORMAT: we could use: ' ', ┃, │...)
47 # Field separator
48 DEAULT_FIELD_SEPARATOR = ┃
49 DEAULT_FIELD_SEPARATOR_NOUTF = |
50 # (WHAT: Action key, WHERE: ContactDetails)
51 # Invert the photo's colours
52 KEY_ACTION_INVERT = Invert colours
53 # (WHAT: Action key, WHERE: ContactDetails)
54 # Show the photo in 'fullscreen'
55 KEY_ACTION_FULLSCREEN = Fullscreen
56 # (WHAT: Action key, WHERE: ContactList, ContactDetails, ContactDetailsRaw)
57 # Switch between the available display formats
58 KEY_ACTION_SWITCH_FORMAT = Change view
59 # (WHAT: Action key, WHERE: Contact list, Edit Contact)
60 # Add a new contact/field
61 KEY_ACTION_ADD = Add
62 # (WHAT: User question: TEXT, WHERE: Contact list)
63 # New contact
64 ASK_USER_CONTACT_NAME = New contact name:
65 # (WHAT: User question: [Y|N], WHERE: Contact list, FORMAT: %s = contact name)
66 # Delete contact
67 CONFIRM_USER_DELETE_CONTACT = Delete "%s"? [Y/N]
68 # (WHAT: Error, WHERE: Contact list, FORMAT: %s = contact name)
69 # cannot delete a contact
70 ERR_CANNOT_DELETE_CONTACT = Cannot delete "%s"
71 # (WHAT: CLI --help)
72 # The Help message header line
73 CLI_HELP = jVCard is a small contact manager written in Java\n\
74 It supports the VCF and aBook formats, though it uses VCF internally\n\
75 You can get the latest version at https://github.com/nikiroo/jvcard
76 # (WHAT: CLI --help)
77 # The Help message line before explaining the different modes
78 CLI_HELP_MODES = You can use jVCard in different modes:
79 # (WHAT: CLI --help)
80 # The Help message line for help usage
81 CLI_HELP_MODE_HELP = print this help message
82 # (WHAT: CLI --help)
83 # The Help message line for contact manager usage
84 CLI_HELP_MODE_CONTACT_MANAGER = launch the contact manager
85 # (WHAT: CLI --help)
86 # The Help message line for contact manager usage
87 CLI_HELP_MODE_I18N = generate the i18n resource file for LANG in the directory DIR
88 # (WHAT: CLI --help)
89 # The Help message line for jVCard server usage
90 CLI_HELP_MODE_SERVER = launch a jVCard remote server on port PORT
91 # (WHAT: CLI --help)
92 # The Help message line for --load-photo usage
93 CLI_HELP_MODE_LOAD_PHOTO = load the contact photos (following FORMAT) from DIR
94 # (WHAT: CLI --help)
95 # The Help message line for --save-photo usage
96 CLI_HELP_MODE_SAVE_PHOTO = save the contact photos (following FORMAT) into DIR
97 # (WHAT: CLI --help)
98 # The Help message line for config save usage
99 CLI_HELP_MODE_SAVE_CONFIG = save the configuration files into DIR
100 # (WHAT: CLI --help)
101 # The Help message line before the list of options
102 CLI_HELP_OPTIONS = The following options are supported:
103 # (WHAT: CLI --help)
104 # The Help message line for: --
105 CLI_HELP_DD = stop looking for options
106 # (WHAT: CLI --help)
107 # The Help message line for: --
108 CLI_HELP_LANG = manually set the language to LANG
109 # (WHAT: CLI --help)
110 # The Help message line for: --
111 CLI_HELP_GUI = force the SWING terminal emulator
112 # (WHAT: CLI --help)
113 # The Help message line for: --
114 CLI_HELP_TUI = force text mode (and supports headless JRE)
115 # (WHAT: CLI --help)
116 # The Help message line for: --
117 CLI_HELP_NOUTF_OPTION = do not use UTF-8, prefer simple ASCII
118 # (WHAT: CLI --help)
119 # The Help message line for: --
120 CLI_HELP_CONFIG = set the configuration directory to DIR
121 # (WHAT: CLI --help)
122 # The Help message footer about files and jvcard:// links
123 CLI_HELP_FOOTER = All other parameters are taken as cards:\n\
124 \t- files will be opened as VCF if they end in .vcf\n\
125 \t- files will be opened as aBook if they don't end in .vcf\n\
126 \t- directory will be scanned for files (not recursive)\n\
127 \t- remote jvcard cards "jvcard://server:port/name" are supported\n\
128 \t- remote jvcard cards lists "jvcard://server:port/" are supported
129 # (WHAT: CLI ERROR, FORMAT: %s = the error)
130 # Syntax error: SOME TEXT
131 CLI_SERR = Syntax error: %s
132 # (WHAT: CLI ERROR)
133 # More than one mode given
134 CLI_SERR_MODES = you can only use one of: \n\
135 \t--server\n\
136 \t--save-config\n\
137 \t--i18n\n\
138 \t--load-photo\n\
139 \t--save-photo
140 # (WHAT: CLI ERROR)
141 # --lang is required
142 CLI_SERR_NOLANG = language is required
143 # (WHAT: CLI ERROR)
144 # The dir is required
145 CLI_SERR_NODIR = directory is required
146 # (WHAT: CLI ERROR)
147 # The port is required
148 CLI_SERR_NOPORT = port is required
149 # (WHAT: CLI ERROR)
150 # The format is required
151 CLI_SERR_NOFORMAT = format is required
152 # (WHAT: CLI ERROR, FORMAT: %s = bad port)
153 # The port is not valid
154 CLI_SERR_BADPORT = not a valid port: %
155 # (WHAT: CLI ERROR, FORMAT: %s = mode)
156 # Card files are not supported in mode %s
157 CLI_SERR_CANNOT_CARDS = cards are not supported in mode %s
158 # (WHAT: CLI ERROR, FORMAT: %s = the error)
159 # Error: SOME TEXT
160 CLI_ERR = Error:
161 # (WHAT: CLI ERROR)
162 # No files given
163 CLI_ERR_NOFILES = no cards to open
164 # (WHAT: CLI ERROR, FORMAT: %s = dir)
165 # Cannot create conf dir %s
166 CLI_ERR_CANNOT_CREATE_CONFDIR = cannot create configuration directory: %s
167 # (WHAT: CLI ERROR)
168 # Remoting not available
169 CLI_ERR_NO_REMOTING = remoting support not available
170 # (WHAT: CLI ERROR)
171 # TUI not available
172 CLI_ERR_NO_TUI = TUI support not available
173 # (WHAT: CLI ERROR, FORMAT: %s = dir)
174 # Cannot create/update language in dir %s
175 CLI_ERR_CANNOT_CREATE_LANG = cannot create/update the language file in: %s
176 # (WHAT: CLI ERROR, FORMAT: %s = card)
177 # Cannot open card %s
178 CLI_ERR_CANNOT_OPEN = cannot open card: %s
179 # (WHAT: CLI ERROR, FORMAT: %s = contact FN)
180 # Cannot save photo of contact %s
181 CLI_ERR_CANNOT_SAVE_PHOTO = cannot save photo of contact: %s
182 # (WHAT: CLI ERROR)
183 # Cannot start the program with the given cards
184 CLI_ERR_CANNOT_START = cannot start the program with the given cards