php-censor/PHPCI/Languages/lang.en-gb.php

119 lines
4.9 KiB
PHP
Raw Normal View History

2014-12-04 12:14:04 +01:00
<?php
/**
* PHPCI - Continuous Integration for PHP
*
* @copyright Copyright 2014, Block 8 Limited.
* @license https://github.com/Block8/PHPCI/blob/master/LICENSE.md
* @link https://www.phptesting.org/
*/
$strings = array(
// 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',
2014-12-04 12:42:21 +01:00
'branch_x' => 'Branch: %s',
'created_x' => 'Created: %s',
'started_x' => 'Started: %s',
2014-12-04 12:14:04 +01:00
// Sidebar
'hello_name' => 'Hello, %s',
'dashboard' => 'Dashboard',
'admin_options' => 'Admin Options',
'add_project' => 'Add Project',
'settings' => 'Settings',
'manage_users' => 'Manage Users',
'plugins' => 'Plugins',
'view' => 'View',
'build_now' => 'Build Now',
'edit_project' => 'Edit Project',
'delete_project' => 'Delete Project',
// Dashboard:
'dashboard' => 'Dashboard',
// Project Summary:
'no_builds_yet' => 'No builds yet!',
'x_of_x_failed' => '%d out of the last %d builds failed.',
'x_of_x_failed_short' => '%d / %d 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.',
'all_builds_passed_short' => '%d / %d passed.',
'last_failed_build' => ' The last failed build was %s.',
'never_failed_build' => ' This project has never failed a build.',
'view_project' => 'View Project',
// Timeline:
'latest_builds' => 'Latest Builds',
2014-12-04 13:19:06 +01:00
'pending' => 'Pending',
'running' => 'Running',
'success' => 'Success',
2014-12-04 12:14:04 +01:00
'successful' => 'Successful',
'failed' => 'Failed',
2014-12-04 12:42:21 +01:00
// 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',
'remote' => 'Remote URL',
'local' => 'Local Path',
'hg' => 'Mercurial',
'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' => 'PHPCI build config for this project
(if you cannot add a phpci.yml file in the project repository)',
'default_branch' => 'Default branch name',
'allow_public_status' => 'Enable public status page and image for this project?',
'save_project' => 'Save Project',
'error_mercurial' => 'Mercurial repository URL must be start with http:// or https://',
'error_remote' => '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.',
2014-12-04 13:19:06 +01:00
// View Project:
'all_branches' => 'All Branches',
'builds' => 'Builds',
'id' => 'ID',
'project' => 'Project',
'commit' => 'Commit',
'branch' => 'Branch',
'status' => 'Status',
'prev_link' => '&laquo; Prev',
'next_link' => 'Next &raquo;',
'public_key' => 'Public Key',
'delete_build' => 'Delete Build',
'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_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.',
2014-12-04 12:14:04 +01:00
);