-
Notifications
You must be signed in to change notification settings - Fork 144
Expand file tree
/
Copy pathlang.en.php
More file actions
461 lines (412 loc) · 18.9 KB
/
Copy pathlang.en.php
File metadata and controls
461 lines (412 loc) · 18.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
<?php
return [
'language_name' => 'English',
'language' => 'Language',
'per_page' => 'Items per page',
'default' => 'Default',
// Log in:
'log_in_to_app' => 'Log in to PHP Censor',
'login_error' => 'Incorrect email address or password',
'forgotten_password_link' => 'Forgotten your password?',
'reset_emailed' => 'We\'ve emailed you a link to reset your password.',
'reset_header' => '<strong>Don\'t worry!</strong><br>Just enter your email address below and we\'ll email
you a link to reset your password.',
'reset_email_address' => 'Enter your email address:',
'reset_send_email' => 'Email password reset',
'reset_enter_password' => 'Please enter a new password',
'reset_new_password' => 'New password:',
'reset_change_password' => 'Change password',
'reset_no_user_exists' => 'No user exists with that email address, please try again.',
'reset_email_body' => 'Hi %s,
You have received this email because you, or someone else, has requested a password reset for PHP Censor.
If this was you, please click the following link to reset your password: %ssession/reset-password/%d/%s
Otherwise, please ignore this email and no action will be taken.
Thank you,
PHP Censor',
'reset_email_title' => 'PHP Censor Password Reset for %s',
'reset_invalid' => 'Invalid password reset request.',
'email_address' => 'Email Address',
'login' => 'Login / Email Address',
'password' => 'Password',
'remember_me' => 'Remember me',
'log_in' => 'Log in',
// Top Nav
'toggle_navigation' => 'Toggle Navigation',
'n_builds_pending' => '%d builds pending',
'n_builds_running' => '%d builds running',
'edit_profile' => 'Edit Profile',
'sign_out' => 'Sign Out',
'branch_x' => 'Branch: %s',
'created_x' => 'Created: %s',
'started_x' => 'Started: %s',
'environment_x' => 'Environment: %s',
// Sidebar
'hello_name' => 'Hello, %s',
'dashboard' => 'Dashboard',
'admin_options' => 'Admin Options',
'add_project' => 'Add Project',
'project_groups' => 'Project Groups',
'settings' => 'Settings',
'manage_users' => 'Manage Users',
'plugins' => 'Plugins',
'view' => 'View',
'build_now' => 'Build now',
'build_now_debug' => 'Build now with debug',
'edit_project' => 'Edit Project',
'clone_project' => 'Clone Project',
'delete_project' => 'Delete Project',
'delete_old_builds' => 'Delete old builds',
'delete_all_builds' => 'Delete all builds',
// Project Summary:
'no_builds_yet' => 'No builds yet!',
'x_of_x_failed' => '%d out of the last %d builds failed.',
'last_successful_build' => ' The last successful build was %s.',
'never_built_successfully' => ' This project has never built successfully.',
'all_builds_passed' => 'All of the last %d builds passed.',
'last_failed_build' => ' The last failed build was %s.',
'never_failed_build' => ' This project has never failed a build.',
'view_project' => 'View Project',
'projects_with_build_errors' => 'Build errors',
'no_build_errors' => 'No build errors',
// Timeline:
'latest_builds' => 'Latest Builds',
'pending' => 'Pending',
'running' => 'Running',
'success' => 'Success',
'failed' => 'Failed',
'failed_allowed' => 'Failed (Allowed)',
'error' => 'Error',
'skipped' => 'Skipped',
'trace' => 'Stack trace',
'manual_build' => 'Manual Build',
// Add/Edit Project:
'new_project' => 'New Project',
'project_x_not_found' => 'Project with ID %d does not exist.',
'project_details' => 'Project Details',
'public_key_help' => 'To make it easier to get started, we\'ve generated an SSH key pair for you to use
for this project. To use it, just add the following public key to the "deploy keys" section
of your chosen source code hosting platform.',
'select_repository_type' => 'Select repository type...',
'github' => 'GitHub',
'bitbucket' => 'Bitbucket',
'gitlab' => 'GitLab',
'git' => 'Git',
'local' => 'Local Path',
'hg' => 'Mercurial',
'svn' => 'Subversion',
'where_hosted' => 'Where is your project hosted?',
'choose_github' => 'Choose a GitHub repository:',
'repo_name' => 'Repository Name / URL (Remote) or Path (Local)',
'project_title' => 'Project Title',
'project_private_key' => 'Private key to use to access repository
(leave blank for local and/or anonymous remotes)',
'build_config' => 'PHP Censor build config for this project
(if you cannot add a .php-censor.yml file in the project repository)',
'default_branch' => 'Default branch name',
'default_branch_only' => 'Build default branch only',
'overwrite_build_config' => 'Overwrite in-repository file config by in-database config? If checkbox not checked then in-database config will be merged with file config.',
'allow_public_status' => 'Enable public status page and image for this project?',
'archived' => 'Archived',
'archived_menu' => 'Archived',
'save_project' => 'Save Project',
'environments_label' => 'Environments (yaml)',
'error_hg' => 'Mercurial repository URL must be start with http:// or https://',
'error_git' => 'Repository URL must be start with git://, http:// or https://',
'error_gitlab' => 'GitLab Repository name must be in the format "user@domain.tld:owner/repo.git"',
'error_github' => 'Repository name must be in the format "owner/repo"',
'error_bitbucket' => 'Repository name must be in the format "owner/repo"',
'error_path' => 'The path you specified does not exist.',
// View Project:
'all_branches' => 'All Branches',
'all' => 'All',
'builds' => 'Builds',
'id' => 'ID',
'date' => 'Date',
'project' => 'Project',
'commit' => 'Commit',
'branch' => 'Branch',
'environment' => 'Environment',
'status' => 'Status',
'prev_link' => '« Prev',
'next_link' => 'Next »',
'public_key' => 'Public Key',
'delete_build' => 'Delete Build',
'build_source' => 'Build source',
'source_unknown' => 'Unknown',
'source_manual_web' => 'Manual (from Web)',
'source_manual_console' => 'Manual (from CLI)',
'source_manual_rebuild_web' => 'Rebuild for %s (from Web)',
'source_manual_rebuild_console' => 'Rebuild for %s (from CLI)',
'source_periodical' => 'Periodical',
'source_webhook_push' => 'Webhook (Push)',
'source_webhook_pull_request_created' => 'Webhook (Created pull request)',
'source_webhook_pull_request_updated' => 'Webhook (Updated pull request)',
'source_webhook_pull_request_approved' => 'Webhook (Approved pull request)',
'source_webhook_pull_request_merged' => 'Webhook (Merged pull request)',
'webhooks' => 'Webhooks',
'webhooks_help_github' => 'To automatically build this project when new commits are pushed, add the URL below
as a new "Webhook" in the <a href="https://github.com/%s/settings/hooks">Webhooks
and Services</a> section of your GitHub repository.',
'webhooks_help_gitlab' => 'To automatically build this project when new commits are pushed, add the URL below
as a "WebHook URL" in the Web Hooks section of your GitLab repository.',
'webhooks_help_gogs' => 'To automatically build this project when new commits are pushed, add the URL below
as a "WebHook URL" in the Web Hooks section of your Gogs repository.',
'webhooks_help_bitbucket' => 'To automatically build this project when new commits are pushed, add the URL below
as a "POST" service in the
<a href="https://bitbucket.org/%s/admin/services">
Services</a> section of your Bitbucket repository.',
// Secrets
'secrets' => 'Secrets',
'secret' => 'Secret',
'secret_edit' => 'Edit',
'secret_delete' => 'Delete',
'secret_add' => 'Add Secret',
'secret_add_edit' => 'Add / Edit Secret',
'secret_name' => 'Secret Name',
'secret_value' => 'Secret Value',
'secret_save' => 'Save Secret',
// Project Groups
'group_projects' => 'Project groups',
'project_group' => 'Project group',
'group_count' => 'Projects count',
'group_edit' => 'Edit',
'group_delete' => 'Delete',
'group_add' => 'Add Group',
'group_add_edit' => 'Add / Edit Group',
'group_title' => 'Group Title',
'group_save' => 'Save Group',
// View Build
'errors' => 'Errors',
'information' => 'Information',
'is_new' => 'Is new?',
'new' => 'New',
'build_x_not_found' => 'Build with ID %d does not exist.',
'build_n' => 'Build %d',
'rebuild_now' => 'Rebuild now',
'rebuild_now_debug' => 'Rebuild now with debug',
'all_errors' => 'All errors',
'only_new' => 'Only new errors',
'only_old' => 'Only old errors',
'new_errors' => 'New errors',
'total_errors' => 'Errors',
'test_coverage' => 'Test coverage',
'committed_by_x' => 'Committed by %s',
'commit_id_x' => 'Commit: %s',
'chart_display' => 'This chart will display once the build has completed.',
'build' => 'Build',
'lines' => 'Lines',
'classes' => 'Classes',
'methods' => 'Methods',
'comment_lines' => 'Comment lines',
'noncomment_lines' => 'Non-Comment lines',
'logical_lines' => 'Logical Lines',
'lines_of_code' => 'Lines of code',
'coverage' => 'PHPUnit code coverage',
'build_log' => 'Build log',
'quality_trend' => 'Quality trend',
'codeception_errors' => 'Codeception errors',
'php_mess_detector_warnings' => 'PHPMD warnings',
'php_code_sniffer_warnings' => 'PHPCS warnings',
'php_code_sniffer_errors' => 'PHPCS errors',
'phan_warnings' => 'Phan warnings',
'php_cs_fixer_warnings' => 'PHP CS Fixer warnings',
'php_parallel_lint_errors' => 'Lint errors',
'php_unit_errors' => 'PHPUnit errors',
'php_cpd_warnings' => 'PHP Copy/Paste Detector warnings',
'php_docblock_checker_warnings' => 'Missing docblocks',
'php_tal_lint_warnings' => 'PHP Tal Lint warnings',
'php_tal_lint_errors' => 'PHP Tal Lint errors',
'behat_warnings' => 'Behat warnings',
'sensiolabs_insight_warnings' => 'Sensiolabs Insight warnings',
'technical_debt_warnings' => 'Technical Debt warnings',
'issues' => 'Issues',
'merged_branches' => 'Merged branches',
'codeception_feature' => 'Feature',
'codeception_suite' => 'Suite',
'codeception_time' => 'Time',
'codeception_synopsis' => '<strong>%1$d</strong> tests carried out in <strong>%2$f</strong> seconds.
<strong>%3$d</strong> failures.',
'suite' => 'Suite',
'test' => 'Test',
'file' => 'File',
'line' => 'Line',
'class' => 'Class',
'method' => 'Method',
'message' => 'Message',
'start' => 'Start',
'end' => 'End',
'from' => 'From',
'to' => 'To',
'result' => 'Result',
'ok' => 'OK',
'took_n_seconds' => 'Took %d seconds',
'build_started' => 'Build Started',
'build_finished' => 'Build Finished',
'test_message' => 'Message',
'test_no_message' => 'No message',
'test_success' => 'Successful: %d',
'test_fail' => 'Failures: %d',
'test_skipped' => 'Skipped: %d',
'test_error' => 'Errors: %d',
'test_todo' => 'Todos: %d',
'test_total' => '%d test(s)',
// Users
'name' => 'Name',
'password_change' => 'Password (leave blank if you don\'t want to change)',
'save' => 'Save »',
'update_your_details' => 'Update your details',
'your_details_updated' => 'Your details have been updated.',
'add_user' => 'Add User',
'is_admin' => 'Is Admin?',
'yes' => 'Yes',
'no' => 'No',
'edit' => 'Edit',
'edit_user' => 'Edit User',
'delete_user' => 'Delete User',
'user_n_not_found' => 'User with ID %d does not exist.',
'is_user_admin' => 'Is this user an administrator?',
'save_user' => 'Save User',
// Settings:
'settings_saved' => 'Your settings have been saved.',
'settings_check_perms' => 'Your settings could not be saved, check the permissions of your config.yml file.',
'settings_cannot_write' => 'PHP Censor cannot write to your config.yml file, settings may not be saved properly
until this is rectified.',
'settings_github_linked' => 'Your GitHub account has been linked.',
'settings_github_not_linked' => 'Your GitHub account could not be linked.',
'build_settings' => 'Build Settings',
'github_application' => 'GitHub Application',
'github_sign_in' => 'Before you can start using GitHub, you need to <a href="%s">sign in</a> and grant
PHP Censor access to your account.',
'github_app_linked' => 'PHP Censor is successfully linked to GitHub account.',
'github_where_to_find' => 'Where to find these...',
'github_where_help' => 'If you own the application you would like to use, you can find this information within your
<a href="https://github.com/settings/applications">applications</a> settings area.',
'email_settings' => 'Email Settings',
'email_settings_help' => 'Before PHP Censor can send build status emails,
you need to configure your SMTP settings below.',
'application_id' => 'Application ID',
'application_secret' => 'Application Secret',
'smtp_server' => 'SMTP Server',
'smtp_port' => 'SMTP Port',
'smtp_username' => 'SMTP Username',
'smtp_password' => 'SMTP Password',
'from_email_address' => 'From Email Address',
'default_notification_address' => 'Default Notification Email Address',
'use_smtp_encryption' => 'Use SMTP Encryption?',
'none' => 'None',
'ssl' => 'SSL',
'tls' => 'TLS',
'failed_after' => 'Consider a build failed after',
'5_mins' => '5 Minutes',
'15_mins' => '15 Minutes',
'30_mins' => '30 Minutes',
'1_hour' => '1 Hour',
'3_hours' => '3 Hours',
// Plugins
'cannot_update_composer' => 'PHP Censor cannot update composer.json for you as it is not writable.',
'x_has_been_removed' => '%s has been removed.',
'x_has_been_added' => '%s has been added to composer.json for you and will be installed next time
you run composer update.',
'enabled_plugins' => 'Enabled Plugins',
'provided_by_package' => 'Provided By Package',
'installed_packages' => 'Installed Packages',
'suggested_packages' => 'Suggested Packages',
'title' => 'Title',
'description' => 'Description',
'version' => 'Version',
'install' => 'Install »',
'remove' => 'Remove »',
'search_packagist_for_more' => 'Search Packagist for more packages',
'search' => 'Search »',
// Summary plugin
'build-summary' => 'Summary',
'stage' => 'Stage',
'step' => 'Step',
'duration' => 'Duration',
'seconds' => 'sec.',
'plugin' => 'Plugin',
'stage_setup' => 'Setup',
'stage_test' => 'Test',
'stage_deploy' => 'Deploy',
'stage_complete' => 'Complete',
'stage_success' => 'Success',
'stage_failure' => 'Failure',
'stage_broken' => 'Broken',
'stage_fixed' => 'Fixed',
'severity' => 'Severity',
'all_plugins' => 'All plugins',
'all_severities' => 'All severities',
'filters' => 'Filters',
'errors_selected' => 'Errors selected',
'build_details' => 'Build Details',
'commit_details' => 'Commit Details',
'committer' => 'Committer',
'commit_message' => 'Commit Message',
'timing' => 'Timing',
'created' => 'Created',
'started' => 'Started',
'finished' => 'Finished',
// Update
'update_app' => 'Update the database to reflect modified models.',
'updating_app' => 'Updating PHP Censor database: ',
'not_installed' => 'PHP Censor does not appear to be installed.',
'install_instead' => 'Please install PHP Censor via php-censor:install instead.',
// Create Build Command
'add_to_queue_failed' => 'Build created successfully, but failed to add to build queue. This usually happens
when PHP Censor is set to use a beanstalkd server that does not exist,
or your beanstalkd server has stopped.',
// Build Plugins:
'passing_build' => 'Passing Build',
'failing_build' => 'Failing Build',
'log_output' => 'Log Output: ',
// Error Levels:
'critical' => 'Critical',
'high' => 'High',
'normal' => 'Normal',
'low' => 'Low',
// Plugins that generate errors:
'php_mess_detector' => 'PHP Mess Detector',
'php_code_sniffer' => 'PHP Code Sniffer',
'php_unit' => 'PHP Unit',
'php_cpd' => 'PHP Copy/Paste Detector',
'php_docblock_checker' => 'PHP Docblock Checker',
'composer' => 'Composer',
'php_loc' => 'PHP LOC',
'php_parallel_lint' => 'PHP Parallel Lint',
'email_notify' => 'Email Notify',
'atoum' => 'Atoum',
'behat' => 'Behat',
'campfire_notify' => 'Campfire Notify',
'telegram_notify' => 'Telegram Notify',
'clean_build' => 'Clean Build',
'codeception' => 'Codeception',
'copy_build' => 'Copy Build',
'deployer' => 'Deployer',
'env' => 'Env',
'grunt' => 'Grunt',
'irc_notify' => 'IRC Notify',
'lint' => 'Lint',
'mysql' => 'MySQL',
'package_build' => 'Package Build',
'pdepend' => 'PDepend',
'pgsql' => 'PostgreSQL',
'phan' => 'Phan',
'phar' => 'Phar',
'phing' => 'Phing',
'php_cs_fixer' => 'PHP Coding Standards Fixer',
'php_spec' => 'PHP Spec',
'shell' => 'Shell',
'slack_notify' => 'Slack Notify',
'technical_debt' => 'Technical Debt',
'xmpp_notify' => 'XMPP Notify',
'security_checker' => 'SensioLabs Security Checker',
'confirm_message' => 'Item will be permanently deleted. Are you sure?',
'confirm_title' => 'Item delete confirmation',
'confirm_ok' => 'Delete',
'confirm_cancel' => 'Cancel',
'confirm_success' => 'Item successfully deleted.',
'confirm_failed' => 'Deletion failed! Server says: ',
'public_status_title' => 'Public status',
'public_status_image' => 'Status image',
'public_status_page' => 'Public status page',
];