Fixed naming (PHPCI -> PHP Censor)

This commit is contained in:
Dmitry Khomutov 2016-07-19 17:05:02 +06:00
parent a35160f627
commit 60d74b0b44
64 changed files with 536 additions and 585 deletions

View file

@ -1,4 +1,7 @@
Copyright (c) 2013-2014, Block 8 Limited
PHP Censor Copyright (c) 2016, Corpsee
All rights reserved.
PHPCI Copyright (c) 2013, Block 8 Limited
All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:

View file

@ -1,35 +1,34 @@
PHPCI
=====
PHP Censor
----------
PHPCI is a free and open source (BSD License) continuous integration tool specifically designed for PHP. We've built it with simplicity in mind, so whilst it doesn't do *everything* Jenkins can do, it is a breeze to set up and use.
PHP Censor is a fork of PHPCI (And B8Framework). PHP Censor is a free and open source (BSD-2-Clause license) continuous
integration tool specifically designed for PHP. We've built it with simplicity in mind, so whilst it doesn't
do *everything* Jenkins can do, it is a breeze to set up and use.
**Current Build Status**
What it does
============
[![Build Status](http://phpci.block8.net/build-status/image/2?branch=master)](http://phpci.block8.net/build-status/view/2?branch=master)
**Chat Room**
We have a chat room for discussing PHPCI, you can access it here: [![Gitter](https://badges.gitter.im/Join Chat.svg)](https://gitter.im/Block8/PHPCI?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=body_badge)
##What it does:
* Clones your project from Github, Bitbucket or a local path
* Allows you to set up and tear down test databases.
* Installs your project's Composer dependencies.
* Runs through any combination of the [supported plugins](https://www.phptesting.org/wiki#plugins).
* Runs through any combination of the [supported plugins](docs/README.md)).
* You can mark directories for the plugins to ignore.
* You can mark certain plugins as being allowed to fail (but still run.)
### What it doesn't do (yet):
What it doesn't do (yet)
========================
* Virtualised testing.
* Multiple PHP-version tests.
* Install PEAR or PECL extensions.
* Deployments - We strongly recommend using [Deployer](http://phpdeployment.org)
## Getting Started:
We've got documentation on our website on [installing PHPCI](https://www.phptesting.org/install-phpci) and [adding support for PHPCI to your projects](https://www.phptesting.org/wiki/Adding-PHPCI-Support-to-Your-Projects).
Documentation
=============
## Contributing
Contributions from others would be very much appreciated! Please read our [guide to contributing](https://github.com/Block8/PHPCI/blob/master/.github/CONTRIBUTING.md) for more information on how to get involved.
[PHP Censor documentation](docs/README.md)
## Questions?
Your best place to go is the [mailing list](https://groups.google.com/forum/#!forum/php-ci). If you're already a member of the mailing list, you can simply email php-ci@googlegroups.com.
License
=======
The PHP Censor is open source software licensed under the BSD-2-Clause license.

View file

@ -1,74 +1,80 @@
{
"name": "block8/phpci",
"description": "Simple continuous integration for PHP projects.",
"minimum-stability": "stable",
"type": "library",
"keywords": ["php", "phpci", "ci", "continuous", "integration", "testing", "phpunit", "continuous integration", "jenkins", "travis"],
"homepage": "http://www.phptesting.org/",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Dan Cryer",
"email": "dan.cryer@block8.co.uk",
"homepage": "http://www.block8.co.uk",
"role": "Developer"
}
],
"support": {
"email": "hello+phpci@block8.co.uk",
"issues": "https://github.com/Block8/PHPCI/issues",
"source": "https://github.com/Block8/PHPCI"
"name": "corpsee/php-censor",
"description": "Simple continuous integration for PHP projects. PHPCI fork.",
"minimum-stability": "stable",
"type": "library",
"keywords": ["php", "php-censor", "ci", "continuous integration"],
"homepage": "https://github.com/corpsee/php-censor",
"license": "BSD-2-Clause",
"authors": [
{
"name": "Corpsee",
"email": "poisoncorpsee@gmail.com",
"homepage": "http://corpsee.com",
"role": "PHP Censor developer"
},
"autoload": {
"psr-4": {
"PHPCI\\": "src/PHPCI/",
"b8\\": "src/B8Framework/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PHPCI\\": "tests/PHPCI/",
"Tests\\b8\\": "tests/B8Framework/"
}
},
"require": {
"php": ">=5.4.0",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ircmaxell/password-compat": "1.0.*",
"swiftmailer/swiftmailer": "5.4.*",
"symfony/yaml": "2.8.*",
"symfony/console": "2.8.*",
"psr/log": "1.0.*",
"monolog/monolog": "1.17.*",
"pimple/pimple": "3.0.*",
"robmorgan/phinx": "0.5.*",
"sensiolabs/ansi-to-html": "1.1.*",
"pda/pheanstalk": "3.1.*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"phpmd/phpmd": "2.4.*",
"sebastian/phpcpd": "2.0.*",
"squizlabs/php_codesniffer": "2.6.*",
"block8/php-docblock-checker": "1.0.*",
"phploc/phploc": "3.0.*",
"jakub-onderka/php-parallel-lint": "0.9.*"
},
"suggest": {
"block8/php-docblock-checker": "PHP Docblock Checker",
"phpmd/phpmd": "PHP Mess Detector",
"sebastian/phpcpd": "PHP Copy/Paste Detector",
"squizlabs/php_codesniffer": "PHP Code Sniffer",
"phpspec/phpspec": "PHP Spec",
"fabpot/php-cs-fixer": "PHP Coding Standards Fixer",
"phploc/phploc": "PHP Lines of Code",
"atoum/atoum": "Atoum",
"jakub-onderka/php-parallel-lint": "Parallel Linting Tool",
"behat/behat": "Behat BDD Testing",
"phptal/phptal": "PHPTAL templating engine",
"maknz/slack": "Slack",
"hipchat/hipchat-php": "Hipchat",
"mremi/flowdock": "Flowdock"
{
"name": "Dan Cryer",
"email": "dan.cryer@block8.co.uk",
"homepage": "http://www.block8.co.uk",
"role": "PHPCI developer"
}
],
"support": {
"issues": "https://github.com/corpsee/php-censor/issues",
"source": "https://github.com/corpsee/php-censor"
},
"autoload": {
"psr-4": {
"PHPCI\\": "src/PHPCI/",
"b8\\": "src/B8Framework/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\PHPCI\\": "tests/PHPCI/",
"Tests\\b8\\": "tests/B8Framework/"
}
},
"require": {
"php": ">=5.4.0",
"ext-pdo": "*",
"ext-pdo_mysql": "*",
"ircmaxell/password-compat": "1.0.*",
"swiftmailer/swiftmailer": "5.4.*",
"symfony/yaml": "2.8.*",
"symfony/console": "2.8.*",
"psr/log": "1.0.*",
"monolog/monolog": "1.17.*",
"pimple/pimple": "3.0.*",
"robmorgan/phinx": "0.5.*",
"sensiolabs/ansi-to-html": "1.1.*",
"pda/pheanstalk": "3.1.*"
},
"require-dev": {
"phpunit/phpunit": "4.8.*",
"phpmd/phpmd": "2.4.*",
"sebastian/phpcpd": "2.0.*",
"squizlabs/php_codesniffer": "2.6.*",
"block8/php-docblock-checker": "1.0.*",
"phploc/phploc": "3.0.*",
"jakub-onderka/php-parallel-lint": "0.9.*"
},
"suggest": {
"block8/php-docblock-checker": "PHP Docblock Checker",
"phpmd/phpmd": "PHP Mess Detector",
"sebastian/phpcpd": "PHP Copy/Paste Detector",
"squizlabs/php_codesniffer": "PHP Code Sniffer",
"phpspec/phpspec": "PHP Spec",
"fabpot/php-cs-fixer": "PHP Coding Standards Fixer",
"phploc/phploc": "PHP Lines of Code",
"atoum/atoum": "Atoum",
"jakub-onderka/php-parallel-lint": "Parallel Linting Tool",
"behat/behat": "Behat BDD Testing",
"phptal/phptal": "PHPTAL templating engine",
"maknz/slack": "Slack",
"hipchat/hipchat-php": "Hipchat",
"mremi/flowdock": "Flowdock"
}
}

View file

@ -1,21 +1,21 @@
PHPCI documentation
-------------------
PHP Censor documentation
------------------------
Getting Started
===============
* [Installing PHPCI](installing.md)
* [Installing PHP Censor](installing.md)
* [Adding a Virtual Host](virtual_host.md)
* [Run Builds Using a Worker](workers/worker.md)
* [Run Builds Using a Daemon](workers/daemon.md)
* [Run Builds Using Cron](workers/cron.md)
* [Adding PHPCI Support to Your Projects](config.md)
* [Adding PHP Censor Support to Your Projects](config.md)
* [Setting up Logging](logging.md)
* [Updating PHPCI](updating.md)
* [Configuring PHPCI](configuring.md)
* [Updating PHP Censor](updating.md)
* [Configuring PHP Censor](configuring.md)
Using PHPCI
===========
Using PHP Censor
================
* Automatically building commits pushed to
* [Github](sources/github.md)

View file

@ -1,7 +1,8 @@
Adding PHPCI Support to Your Projects
-------------------------------------
Adding PHP Censor Support to Your Projects
------------------------------------------
Similar to Travis CI, to support PHPCI in your project, you simply need to add a `phpci.yml` file to the root of your repository. The file should look something like this:
Similar to Travis CI, to support PHP Censor in your project, you simply need to add a `phpci.yml` file to the root of
your repository. The file should look something like this:
```yml
build_settings:
@ -48,7 +49,7 @@ complete:
- "DROP DATABASE IF EXISTS test;"
```
As mentioned earlier, PHPCI is powered by plugins, there are several phases in which plugins can be run:
As mentioned earlier, PHP Censor is powered by plugins, there are several phases in which plugins can be run:
* `setup` - This phase is designed to initialise the build procedure.
* `test` - The tests that should be run during the build. Plugins run during this phase will contribute to the success or failure of the build.

View file

@ -1,9 +1,9 @@
Configuring PHPCI
-----------------
Configuring PHP Censor
----------------------
The PHPCI configuration on the server is automatically generated into the `phpci/PHPCI/config.yml` file during installation. One might need to also edit the file manually.
The PHP Censor configuration on the server is automatically generated into the `config.yml` file during installation. One might need to also edit the file manually.
For example, to [disable authentication](https://www.phptesting.org/news/phpci-1-5-released), one could log into phpci and go into the settings to disable it. But if you have already set up a username/password pair and have forgotten the password, and if the server is on a local network, and it's not sending the `forgot password` email, then editing the config file manually would be handy. To do so, just edit the `phpci` section in the config file (which is in [yaml format](https://en.wikipedia.org/wiki/YAML)), and add
For example, one could log into phpci and go into the settings to disable it. But if you have already set up a username/password pair and have forgotten the password, and if the server is on a local network, and it's not sending the `forgot password` email, then editing the config file manually would be handy. To do so, just edit the `phpci` section in the config file (which is in [yaml format](https://en.wikipedia.org/wiki/YAML)), and add
phpci:
authentication_settings:

View file

@ -1,5 +1,5 @@
Installing PHPCI
----------------
Installing PHP Censor
---------------------
What you'll need
================
@ -12,24 +12,24 @@ What you'll need
* The following functions need to be enabled: `exec()`, `shell_exec()` and `proc_open()` in php.ini.
* PHP must have OpenSSL support enabled.
Installing PHPCI from Composer
Installing PHP Censor from Composer
===================================
* Go to the directory in which you want to install PHP Censor, for example: `/var/www`
* Download Composer if you haven't already: `curl -sS https://getcomposer.org/installer | php`
* Download PHP Censor: `./composer.phar create-project corpsee/php-censor php-censor --keep-vcs --no-dev`
* Go to the newly created PHP Censor directory, and install Composer dependencies: `cd php-censor && ../composer.phar install`
* Run the PHP Censor installer: `./console phpci:install`
* [Add a virtual host to your web server](virtual_host.md), pointing to the `public` directory within your new PHP Censor directory. You'll need to set up rewrite rules to point all non-existent requests to PHP Censor.
* [Set up the PHP Censor Worker](workers/worker.md), or you can run builds using the [daemon](workers/daemon.md) or [a cron-job](workers/cron.md) to run PHP Censor builds.
Installing PHP Censor Manually
==============================
* Go to the directory in which you want to install PHPCI, for example: `/var/www`
* Download Composer if you haven't already: `curl -sS https://getcomposer.org/installer | php`
* Download PHPCI: `./composer.phar create-project block8/phpci phpci --keep-vcs --no-dev`
* Go to the newly created PHPCI directory, and install Composer dependencies: `cd phpci && ../composer.phar install`
* Run the PHPCI installer: `./console phpci:install`
* [Add a virtual host to your web server](virtual_host.md), pointing to the `public` directory within your new PHPCI directory. You'll need to set up rewrite rules to point all non-existent requests to PHPCI.
* [Set up the PHPCI Worker](workers/worker.md), or you can run builds using the [PHPCI daemon](workers/daemon.md) or [a cron-job](workers/cron.md) to run PHPCI builds.
Installing PHPCI Manually
=========================
* Go to the directory in which you want to install PHPCI, for example: `/var/www`
* [Download PHPCI](https://github.com/Block8/PHPCI/releases/latest) and unzip it.
* Go to the PHPCI directory: `cd /var/www/phpci`
* Go to the directory in which you want to install PHP Censor, for example: `/var/www`
* [Download PHP Censor](https://github.com/corpsee/php-censor/releases/latest) and unzip it.
* Go to the PHP Censor directory: `cd /var/www/php-censor`
* Install dependencies using Composer: `composer install`
* Install PHPCI itself: `php ./console phpci:install`
* [Add a virtual host to your web server](virtual_host.md), pointing to the `public` directory within your new PHPCI directory. You'll need to set up rewrite rules to point all non-existent requests to PHPCI.
* [Set up the PHPCI Worker](workers/worker.md), or you can run builds using the [PHPCI daemon](workers/daemon.md) or [a cron-job](workers/cron.md) to run PHPCI builds.
* Install PHP Censor itself: `php ./console phpci:install`
* [Add a virtual host to your web server](virtual_host.md), pointing to the `public` directory within your new PHP Censor directory. You'll need to set up rewrite rules to point all non-existent requests to PHP Censor.
* [Set up the PHP Censor Worker](workers/worker.md), or you can run builds using the [daemon](workers/daemon.md) or [a cron-job](workers/cron.md) to run PHP Censor builds.

View file

@ -18,4 +18,4 @@ Where something can be one of the following:
* **BUILD** - The build number
* **PROJECT_TITLE** - The name of the project
* **BUILD_PATH** - The path to the build
* **BUILD_URI** - The URL to the build in PHPCI
* **BUILD_URI** - The URL to the build in PHP Censor

View file

@ -6,8 +6,8 @@ Basics
The phpci codebase makes use of the [psr3](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-3-logger-interface.md) logging standard. By default we use [Monolog](https://github.com/Seldaek/monolog) to handle the actual work implementing this standard.
How to Setup Logging (For people running a PHPCI instance)
==========================================================
How to Setup Logging (For people running a PHP Censor instance)
===============================================================
The only step required to activate logging is to create a file in the root directory called loggerconfig.php with content like the following:

View file

@ -11,7 +11,7 @@ Configuration
- **args** [string, optional] - Allows you to pass command line arguments to Atoum.
- **config** [string, optional] - Path to an Atoum configuration file.
- **directory** [string, optional] - Path in which to run Atom (defaults to the build root).
- **executable** [string, optional] - Allows you to provide a path to the Atom binary (defaults to PHPCI root, vendor/bin, or a system-provided Atom binary).
- **executable** [string, optional] - Allows you to provide a path to the Atom binary (defaults to PHP Censor root, vendor/bin, or a system-provided Atom binary).
### Examples
```yml

View file

@ -8,7 +8,7 @@ Configuration
### Options
- **executable** [string, optional] - Allows you to provide a path to the Behat binary (defaults to PHPCI root, vendor/bin, or a system-provided Behat binary).
- **executable** [string, optional] - Allows you to provide a path to the Behat binary (defaults to PHP Censor root, vendor/bin, or a system-provided Behat binary).
- **features** [string, optional] - Provide a list of Behat features to run.
### Examples

View file

@ -28,7 +28,7 @@ setup:
Warning
=======
If you are using a Composer private repository like Satis, with HTTP authentication, you must check your username and password inside the ```auth.json``` file. PHPCI uses the ```--no-interaction``` flag, so it will not warn if you must provide that info.
If you are using a Composer private repository like Satis, with HTTP authentication, you must check your username and password inside the ```auth.json``` file. PHP Censor uses the ```--no-interaction``` flag, so it will not warn if you must provide that info.
For more info, please check the Composer documentation.

View file

@ -9,7 +9,7 @@ Configuration
### Options
* **webhook_url** [required, string] - The URL to your Deployer WebHook
* **reason** [optional, string] - Your deployment message. Default - PHPCI Build #%BUILD% - %COMMIT_MESSAGE%
* **reason** [optional, string] - Your deployment message. Default - PHP Censor Build #%BUILD% - %COMMIT_MESSAGE%
* **update_only** [optional, bool, true|false] - Whether the deployment should only be run if the currently deployed branches matches the one being built. Default - true
### Examples
@ -18,6 +18,6 @@ Configuration
success:
deployer:
webhook_url: "https://deployer.example.com/deploy/QZaF1bMIUqbMFTmKDmgytUuykRN0cjCgW9SooTnwkIGETAYhDTTYoR8C431t"
reason: "PHPCI Build #%BUILD% - %COMMIT_MESSAGE%"
reason: "PHP Censor Build #%BUILD% - %COMMIT_MESSAGE%"
update_only: true
```

View file

@ -19,7 +19,7 @@ Configuration
### Examples
See [Adding PHPCI Support to Your Projects](https://www.phptesting.org/wiki/Adding-PHPCI-Support-to-Your-Projects) for more information about how to configure plugins.
See [Adding PHP Censor Support to Your Projects](../config.md) for more information about how to configure plugins.
Send an email to the committer as well as one@exameple.com if a build fails:
```yml

View file

@ -1,7 +1,7 @@
Plugin Env
----------
Sets environment variables on the PHPCI server for the build.
Sets environment variables on the PHP Censor server for the build.
Configuration
=============

View file

@ -9,7 +9,7 @@ Configuration
### Options
- **directory** [string, optional] - The directory in which to run Grunt (defaults to build root.)
- **grunt** [string, optional] - Allows you to provide a path to Grunt (defaults to PHPCI root, vendor/bin, or a system-provided Grunt).
- **grunt** [string, optional] - Allows you to provide a path to Grunt (defaults to PHP Censor root, vendor/bin, or a system-provided Grunt).
- **gruntfile** [string, optional] - Gruntfile to run (defaults to `Gruntfile.js`).
- **task** [string, optional] - The Grunt task to run.

View file

@ -1,7 +1,7 @@
Plugin PHP Parallel Lint
------------------------
Similar to the [standard PHP Lint plugin](https://github.com/Block8/PHPCI/wiki/Lint-plugin), except that it uses the [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint) project to run.
Similar to the [standard PHP Lint plugin](lint.md), except that it uses the [PHP Parallel Lint](https://github.com/JakubOnderka/PHP-Parallel-Lint) project to run.
Configuration
=============

View file

@ -39,8 +39,8 @@ test:
Troubleshooting
===============
If standard logging of PHPCI is not enough, to get standard output from any command, including PHPUnit, edit `BaseCommandExecutor::executeCommand()` to see what exactly is wrong
* Run `composer update` in phpunit plugin directory of PHPCI to get all of its dependencies
* If phpunit is inside of the project's composer.json, it might interfere with PHPCI's phpunit installation
If standard logging of PHP Censor is not enough, to get standard output from any command, including PHPUnit, edit `BaseCommandExecutor::executeCommand()` to see what exactly is wrong
* Run `composer update` in phpunit plugin directory of PHP Censor to get all of its dependencies
* If phpunit is inside of the project's composer.json, it might interfere with PHP Censor's phpunit installation
* Make sure you have XDebug installed.`The Xdebug extension is not loaded. No code coverage will be generated.`
Otherwise test report parsing in `TapParser` will fail, wanting coverage report as well `Invalid TAP string, number of tests does not match specified test count.`

View file

@ -3,19 +3,6 @@ Plugin Shell
Runs a given Shell command.
**Note: ** Because this plugin could potentially be abused, it requires extra steps to enable it:
1. In the root of your PHPCI system, in the same directory where you'll find composer.json and vars.php, look for a file local_vars.php. If it does not exist, create it.
2. In local_vars.php add this code:
```php
<?php
define('ENABLE_SHELL_PLUGIN', true);
```
If `ENABLE_SHELL_PLUGIN` is either false or undefined, the shell plugin won't work.
Configuration
=============

View file

@ -12,7 +12,7 @@ Configuration
|-------|-----------|-------------|
| `webhook_url` | Yes | The URL to your Slack WebHook |
| `room` | No | Your Slack room name. Default - #phpci |
| `username` | No | The name to send the message as. Default - PHPCI |
| `username` | No | The name to send the message as. Default - PHP Censor |
| `icon` | No | The URL to the user icon or an emoji such as :ghost:. Default - The value configured on Slack's WebHook setup |
| `message` | No | The message to send to the room. Default - `<%PROJECT_URI%|%PROJECT_TITLE%> - <%BUILD_URI%|Build #%BUILD%> has finished for commit <%COMMIT_URI%|%SHORT_COMMIT% (%COMMIT_EMAIL%)> on branch <%BRANCH_URI%|%BRANCH%>` |
| `show_status` | No | Whether or not to append the build status as an attachment in slack. Default - true
@ -24,8 +24,8 @@ Send a message if the build fails:
failure:
slack_notify:
webhook_url: "https://hooks.slack.com/services/R212T827A/G983UY31U/aIp0yuW9u0iTqwAMOEwTg"
room: "#phpci"
username: "PHPCI"
room: "#php-censor"
username: "PHP Censor"
icon: ":ghost:"
message: "%PROJECT_TITLE% - build %BUILD% failed! :angry:"
show_status: false
@ -37,8 +37,8 @@ Send a message if the build is successful:
success:
slack_notify:
webhook_url: "https://hooks.slack.com/services/R212T827A/G983UY31U/aIp0yuW9u0iTqwAMOEwTg"
room: "#phpci"
username: "PHPCI"
room: "#php-censor"
username: "PHP Censor"
icon: ":ghost:"
message: "%PROJECT_TITLE% - build %BUILD% succeeded! :smiley:"
show_status: false
@ -50,8 +50,8 @@ Send a message every time the build runs:
complete:
slack_notify:
webhook_url: "https://hooks.slack.com/services/R212T827A/G983UY31U/aIp0yuW9u0iTqwAMOEwTg"
room: "#phpci"
username: "PHPCI"
room: "#php-censor"
username: "PHP Censor"
icon: ":ghost:"
message: "%PROJECT_TITLE% - build %BUILD% completed"
show_status: true

View file

@ -3,7 +3,7 @@ Automatically building commits pushed to Bitbucket
If you would like your builds to run automatically whenever there is a commit or other similar activity in your Bitbucket repository, perform the following steps:
1. Log into PHPCI.
1. Log into PHP Censor.
2. Click on your Bitbucket project.
3. Copy the web hook link specified on the left.
4. Log into Bitbucket and go to your repo.

View file

@ -3,12 +3,12 @@ Automatically building commits pushed to GitHub
If you would like your builds to run automatically whenever there is a commit or other similar activity in your GitHub repository, perform the following steps:
1. Log into PHPCI.
1. Log into PHP Censor.
2. Click on your GitHub project.
3. Copy the web hook link specified on the right of the page.
4. Log into GitHub and go to your repository.
5. Click the settings icon on the lower right sidebar.
6. Click on "Webhooks & Services".
7. Add your web hook link you copied above, and specify when you would like it to run.
8. Add the public key for the project in PHPCI to the deploy keys for the repository on GitHub.
9. Verify that the initial test delivery was successful. If not, make sure that your PHPCI machine is reachable from the internet.
8. Add the public key for the project in PHP Censor to the deploy keys for the repository on GitHub.
9. Verify that the initial test delivery was successful. If not, make sure that your PHP Censor machine is reachable from the internet.

View file

@ -3,12 +3,12 @@ Automatically building commits pushed to GitLab
If you would like your builds to run automatically whenever there is a commit or other similar activity in your GitLab repository, perform the following steps:
1. Log into PHPCI.
1. Log into PHP Censor.
2. Click on your Gitlab project.
3. Copy the web hook link specified on the left.
4. Log into Gitlab and go to your repo.
5. Click the "settings" tab in the top right corner of the page.
6. Click on "Web Hooks".
7. Paste the link you copied from PHPCI into the "URL" textbox.
8. Select the events which you want to trigger a PHPCI build. The default and recommended setup is to only enable "push events."
7. Paste the link you copied from PHP Censor into the "URL" textbox.
8. Select the events which you want to trigger a PHP Censor build. The default and recommended setup is to only enable "push events."
9. Click "Add Web Hook," and verify that the test was successful.

View file

@ -4,31 +4,31 @@ Project Status Images and Status Page
Status Image
============
Most Continuous Integration systems provide a simple image URL that you can use to display your project status on other web sites (like Github) - PHPCI is no different.
Most Continuous Integration systems provide a simple image URL that you can use to display your project status on other web sites (like Github) - PHP Censor is no different.
You can find the status image at the following location: `http://{PHPCI URL}/build-status/image/{PROJECT ID}`
You can find the status image at the following location: `http://{PHP_CENSOR_URL}/build-status/image/{PROJECT ID}`
So for example, our instance of PHPCI is at `phpci.block8.net`, and our PHPCI project ID is `2`, so the image URL is: `http://phpci.block8.net/build-status/image/2`.
So for example, our instance of PHP Censor is at `php-censor.local`, and our PHP Censor project ID is `2`, so the image URL is: `http://php-censor.local/build-status/image/2`.
Example:
![](http://phpci.block8.net/build-status/image/2)
![](http://php-censor.local/build-status/image/2)
Status Page
===========
PHPCI also provides a public project status page, that is accessible for everyone.
PHP Censor also provides a public project status page, that is accessible for everyone.
You can find the status page at the following location: `http://{PHPCI URL}/build-status/view/{PROJECT ID}`
You can find the status page at the following location: `http://{PHP_CENSOR_URL}/build-status/view/{PROJECT ID}`
Example:
http://phpci.block8.net/build-status/view/2
http://php-censor.local/build-status/view/2
### Where do I find my project ID?
Go to your instance of PHPCI, and open the project you are interested in. The project ID is the number in the last part of the URL in your browser.
Go to your instance of PHP Censor, and open the project you are interested in. The project ID is the number in the last part of the URL in your browser.
Example:
http://phpci.block8.net/project/view/2 ~> PROJECT ID: `2`
http://php-censor.local/project/view/2 ~> PROJECT ID: `2`
### Enable/disable status image and page
You can enable or disable access to the public status image and page in your project's settings.

View file

@ -1,11 +1,11 @@
Updating PHPCI
--------------
Updating PHP Censor
-------------------
Updating PHPCI to the latest release, or even dev-master updates is something that will need to be done from time to time. Most of this may be self-explanatory, but for clarity and completeness, it should be added to the documentation.
Updating PHP Censor to the latest release, or even dev-master updates is something that will need to be done from time to time. Most of this may be self-explanatory, but for clarity and completeness, it should be added to the documentation.
1. Go to your PHPCI root folder in a Terminal.
1. Go to your PHP Censor root folder in a Terminal.
2. Pull the latest code. This would look like this: `git pull`
3. Update the PHPCI database: `./console phpci:update`
3. Update the PHP Censor database: `./console phpci:update`
4. Update the composer and its packages: `composer self-update && composer update`
5. Return to the PHPCI admin screens and check your desired plugins are still installed correctly.
5. Return to the PHP Censor admin screens and check your desired plugins are still installed correctly.
7. Run a build to make sure everything is working as expected.

View file

@ -1,7 +1,7 @@
Adding a Virtual Host
---------------------
In order to access the PHPCI web interface, you need to set up a virtual host in your web server.
In order to access the PHP Censor web interface, you need to set up a virtual host in your web server.
Below are a few examples of how to do this for various different web servers.
@ -31,7 +31,7 @@ server {
Apache Example
==============
For Apache, you can use a standard virtual host, as long as your server supports PHP. All you need to do is add the following to a `.htaccess` file in your PHPCI `/public` directory.
For Apache, you can use a standard virtual host, as long as your server supports PHP. All you need to do is add the following to a `.htaccess` file in your PHP Censor `/public` directory.
```
<IfModule mod_rewrite.c>

View file

@ -1,17 +1,17 @@
Run Builds Using Cron
---------------------
Running builds using cron is a quick and simple method of getting up and running with PHPCI. It also removes the need for PHPCI to be running all the time.
Running builds using cron is a quick and simple method of getting up and running with PHP Censor. It also removes the need for PHP Censor to be running all the time.
If you want a little more control over how PHPCI runs, you may want to [set up the PHPCI daemon](workers/daemon.md) instead.
If you want a little more control over how PHP Censor runs, you may want to [set up the PHP Censor daemon](workers/daemon.md) instead.
Setting up the Cron Job
=======================
You'll want to set up PHPCI to run as a regular cronjob, so run `crontab -e` and enter the following:
You'll want to set up PHP Censor to run as a regular cronjob, so run `crontab -e` and enter the following:
```sh
* * * * * /usr/bin/php /path/to/phpci/console phpci:run-builds
```
**Note:** Make sure you change the `/path/to/phpci` to the directory in which you installed PHPCI, and update the PHP path if necessary.
**Note:** Make sure you change the `/path/to/phpci` to the directory in which you installed PHP Censor, and update the PHP path if necessary.

View file

@ -1,11 +1,11 @@
Run Builds Using a Daemon
-------------------------
The PHPCI daemon runs in the background on your server and continuously checks for new builds. Unless already running a build, the daemon should pick up and start running new builds within seconds of being created.
The PHP Censor daemon runs in the background on your server and continuously checks for new builds. Unless already running a build, the daemon should pick up and start running new builds within seconds of being created.
The daemon is also useful if you want to run multiple PHPCI workers in a virtualised environment (i.e. Docker)
The daemon is also useful if you want to run multiple PHP Censor workers in a virtualised environment (i.e. Docker)
If you want to run PHPCI builds on a regular schedule instead, you should [set up a cron-job](workers/cron.md).
If you want to run PHP Censor builds on a regular schedule instead, you should [set up a cron-job](workers/cron.md).
Starting the Daemon
===================

View file

@ -1,9 +1,9 @@
Run Builds Using a Worker
-------------------------
The PHPCI Worker (added in v1.7) runs in the background on your server and waits for new builds to be added to a Beanstalkd queue. Unless already running a build, the worker will pick up and start running new builds almost immediately after their creation.
The PHP Censor Worker runs in the background on your server and waits for new builds to be added to a Beanstalkd queue. Unless already running a build, the worker will pick up and start running new builds almost immediately after their creation.
The worker is the recommended way to run PHPCI builds. You can run several workers all watching one queue, allowing jobs to be run simultaneously without the overhead of polling your MySQL database.
The worker is the recommended way to run PHP Censor builds. You can run several workers all watching one queue, allowing jobs to be run simultaneously without the overhead of polling your MySQL database.
If you can't run Beanstalkd on your server, or would prefer to run builds on a regular schedule, you should consider using the [build daemon](workers/daemon.md) or [running builds via Cron](workers/cron.md).
@ -13,25 +13,25 @@ Pre-Requisites
* You need to install [Beanstalkd](http://kr.github.io/beanstalkd/) - On Ubuntu, this is as simple as running `apt-get install beanstalkd`.
* [Supervisord](http://supervisord.org/) needs to be installed and running on your server.
Setting up the PHPCI Worker
===========================
Setting up the PHP Censor worker
================================
### On a new installation
Setting up the worker on a new installation of PHPCI is as simple as entering the appropriate values for your Beanstalkd server hostname and queue name when running the PHPCI installer. By default, the installer assumes that you'll be using beanstalkd on `localhost` and will use the queue name `phpci`.
Setting up the worker on a new installation of PHP Censor is as simple as entering the appropriate values for your Beanstalkd server hostname and queue name when running the PHP Censor installer. By default, the installer assumes that you'll be using beanstalkd on `localhost` and will use the queue name `phpci`.
![PHPCI Worker Installer](https://www.phptesting.org/media/render/f48f63699a04444630352643af18b643)
![PHP Censor Worker Installer](https://www.phptesting.org/media/render/f48f63699a04444630352643af18b643)
### On an existing installation
On an existing installation, to set up the worker, you simply need to add the beanstalkd host and queue names directly into your `/PHPCI/config.yml` file. You should add a `worker` key beneath the `phpci` section, with the properties `host` and `queue` as outlined in the screenshot below:
On an existing installation, to set up the worker, you simply need to add the beanstalkd host and queue names directly into your `config.yml` file. You should add a `worker` key beneath the `phpci` section, with the properties `host` and `queue` as outlined in the screenshot below:
![PHPCI Worker Config](https://www.phptesting.org/media/render/9a88e9298670f2913f5798e68b94c9ed)
![PHP Censor Worker Config](https://www.phptesting.org/media/render/9a88e9298670f2913f5798e68b94c9ed)
Running the PHPCI Worker
========================
Running the PHP Censor worker
=============================
Once you've set up PHPCI to add your jobs to a beanstalkd queue, you need to start the worker so that it can pick up and run your builds. On most servers, it is best to manage this using supervisord. The following instructions work on Ubuntu, but will need slight amendments for other distributions.
Once you've set up PHP Censor to add your jobs to a beanstalkd queue, you need to start the worker so that it can pick up and run your builds. On most servers, it is best to manage this using supervisord. The following instructions work on Ubuntu, but will need slight amendments for other distributions.
Using your preferred text editor, create a file named `phpci.conf` under `/etc/supervisor/conf.d`. In it, enter the following config:
@ -48,9 +48,9 @@ environment=HOME="/home/phpci",USER="phpci"
numprocs=2
```
You'll need to edit the '/path/to/phpci', the `user` value and the `environment` value to suit your server. The user needs to be an actual system user with suitable permissions to execute PHP and PHPCI.
You'll need to edit the '/path/to/phpci', the `user` value and the `environment` value to suit your server. The user needs to be an actual system user with suitable permissions to execute PHP and PHP Censor.
Once you've created this file, simply restart supervisord using the command `service supervisor restart` and 2 instances of PHPCI's worker should start immediately. You can verify this by running the command `ps aux | grep phpci`, which should give you output as follows:
Once you've created this file, simply restart supervisord using the command `service supervisor restart` and 2 instances of PHP Censor's worker should start immediately. You can verify this by running the command `ps aux | grep phpci`, which should give you output as follows:
```
➜ ~ ps aux | grep phpci
@ -58,4 +58,4 @@ phpci 19057 0.0 0.9 200244 18720 ? S 03:00 0:01 php /phpci/cons
phpci 19058 0.0 0.9 200244 18860 ? S 03:00 0:01 php /phpci/console phpci:worker
```
That's it! Now, whenever you create a new build in PHPCI, it should start building immediately.
That's it! Now, whenever you create a new build in PHP Censor, it should start building immediately.

View file

@ -1,19 +1,19 @@
<?xml version="1.0"?>
<ruleset name="PHPCI">
<ruleset name="PHP Censor">
<description>Codestyle ruleset for PHPCI</description>
<description>Codestyle ruleset for PHP Censor</description>
<rule ref="PSR2"/>
<file>PHPCI</file>
<file>PHP Censor</file>
<arg name="encoding" value="UTF-8"/>
<arg name="extensions" value="php"/>
<exclude-pattern>PHPCI/Migrations/*</exclude-pattern>
<exclude-pattern>PHPCI/Model/Base/*</exclude-pattern>
<exclude-pattern>PHPCI/Languages/*</exclude-pattern>
<exclude-pattern>Tests/*</exclude-pattern>
<exclude-pattern>src/PHPCI/Migrations/*</exclude-pattern>
<exclude-pattern>src/PHPCI/Model/Base/*</exclude-pattern>
<exclude-pattern>src/PHPCI/Languages/*</exclude-pattern>
<exclude-pattern>tests/*</exclude-pattern>
<exclude-pattern>vendor/*</exclude-pattern>
</ruleset>

View file

@ -1,5 +1,5 @@
<?xml version="1.0"?>
<ruleset name="PHPCI"
<ruleset name="PHP Censor"
xmlns="http://pmd.sf.net/ruleset/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://pmd.sf.net/ruleset/1.0.0
@ -7,7 +7,7 @@
xsi:noNamespaceSchemaLocation="
http://pmd.sf.net/ruleset_xml_schema.xsd">
<description>
PHPCI rule set
PHP Censor rule set
</description>
<rule ref="rulesets/codesize.xml" />

View file

@ -12,28 +12,28 @@
bootstrap="./tests/bootstrap.php"
>
<testsuites>
<!--<testsuite name="PHPCI Command Test Suite">
<!--<testsuite name="PHP Censor Command Test Suite">
<directory suffix="Test.php">./tests/PHPCI/Command</directory>
</testsuite>-->
<testsuite name="PHPCI Controller Test Suite">
<testsuite name="PHP Censor Controller Test Suite">
<directory suffix="Test.php">./tests/PHPCI/Controller</directory>
</testsuite>
<testsuite name="PHPCI Helper Test Suite">
<testsuite name="PHP Censor Helper Test Suite">
<directory suffix="Test.php">./tests/PHPCI/Helper</directory>
</testsuite>
<testsuite name="PHPCI Logging Test Suite">
<testsuite name="PHP Censor Logging Test Suite">
<directory suffix="Test.php">./tests/PHPCI/Logging</directory>
</testsuite>
<testsuite name="PHPCI Model Test Suite">
<testsuite name="PHP Censor Model Test Suite">
<directory suffix="Test.php">./tests/PHPCI/Model</directory>
</testsuite>
<testsuite name="PHPCI Plugin Test Suite">
<testsuite name="PHP Censor Plugin Test Suite">
<directory suffix="Test.php">./tests/PHPCI/Plugin</directory>
</testsuite>
<!--<testsuite name="PHPCI ProcessControl Test Suite">
<!--<testsuite name="PHP Censor ProcessControl Test Suite">
<directory suffix="Test.php">./tests/PHPCI/ProcessControl</directory>
</testsuite>-->
<testsuite name="PHPCI Service Test Suite">
<testsuite name="PHP Censor Service Test Suite">
<directory suffix="Test.php">./tests/PHPCI/Service</directory>
</testsuite>
<!--<testsuite name="B8Framework Test Suite">

View file

@ -1,5 +1,5 @@
.phpci .main-header .logo, .phpci .main-header .logo:hover {
background-image: url('/assets/img/logo-large.png');
background-image: url('/assets/img/php-censor-logo.png');
background-repeat: no-repeat;
background-size: 40%;
background-position: 65px;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -1 +0,0 @@
<svg viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M107.7 141.3V58.3C100.4 52.2 95.8 43.1 95.8 32.95 95.8 14.75 110.6 0 128.8 0 143.6 0 156.2 9.86 160.3 23.4 166.2 19.1 177.4 12.45 192.5 12.45 213.3 12.45 251.5 19.1 251.5 92.2 251.5 165.3 216.1 176.3 191.9 176.3 170.2 176.3 156.3 164.4 148.7 159V196.9C156.6 202.9 161.7 212.4 161.7 223.1 161.7 241.2 147 256 128.8 256 110.6 256 95.8 241.2 95.8 223.1 95.8 212.9 100.4 203.8 107.7 197.7V178.9C104.6 175.5 99.6 171.2 92 168.3 81.5 164.4 72.7 167.2 56.4 160.8 41 154.8 25.2 141.4 23.53 114.9 12 109.8 4 98.2 4 84.8 4 66.6 18.75 51.85 36.95 51.85 55.1 51.85 69.89 66.6 69.89 84.8 69.89 96.6 63.7 107 54.3 112.8 55.5 126.6 66.5 136 85 136 95.2 136 102.7 138.7 107.7 141.3M148.7 61.67V131.8C154.1 136.5 163.6 143.2 178.9 143.2 195.7 143.2 211.7 129.6 211.7 94.2 211.7 58.71 192.8 44.62 177 44.62 163.4 44.62 155.9 53.6 148.7 61.67M36.95 100.5C45.6 100.5 52.61 93.4 52.61 84.8 52.61 76.1 45.6 69.1 36.95 69.1 28.3 69.1 21.28 76.1 21.28 84.8 21.28 93.4 28.3 100.5 36.95 100.5M128.8 238.7C137.4 238.7 144.4 231.7 144.4 223.1 144.4 214.4 137.4 207.4 128.8 207.4 120.1 207.4 113.1 214.4 113.1 223.1 113.1 231.7 120.1 238.7 128.8 238.7M128.8 48.61C137.4 48.61 144.4 41.6 144.4 32.95 144.4 24.3 137.4 17.28 128.8 17.28 120.1 17.28 113.1 24.3 113.1 32.95 113.1 41.6 120.1 48.61 128.8 48.61" fill="#2f749f"/></g></svg>

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

View file

@ -123,7 +123,7 @@ class Application extends b8\Application
{
$controller = parent::loadController($class);
$controller->layout = new View('layout');
$controller->layout->title = 'PHPCI';
$controller->layout->title = 'PHP Censor';
$controller->layout->breadcrumb = [];
return $controller;

View file

@ -51,7 +51,7 @@ class RebuildQueueCommand extends Command
{
$this
->setName('phpci:rebuild-queue')
->setDescription('Rebuilds the PHPCI worker queue.');
->setDescription('Rebuilds the PHP Censor worker queue.');
}
protected function execute(InputInterface $input, OutputInterface $output)

View file

@ -66,7 +66,7 @@ class RunCommand extends Command
$this
->setName('phpci:run-builds')
->setDescription(Lang::get('run_all_pending'))
->addOption('debug', null, null, 'Run PHPCI in Debug Mode');
->addOption('debug', null, null, 'Run PHP Censor in Debug Mode');
}
/**

View file

@ -50,8 +50,8 @@ class WorkerCommand extends Command
{
$this
->setName('phpci:worker')
->setDescription('Runs the PHPCI build worker.')
->addOption('debug', null, null, 'Run PHPCI in Debug Mode');
->setDescription('Runs the PHP Censor build worker.')
->addOption('debug', null, null, 'Run PHP Censor in Debug Mode');
}
protected function execute(InputInterface $input, OutputInterface $output)

View file

@ -18,11 +18,11 @@ use PHPCI\Builder;
*/
class Email
{
const DEFAULT_FROM = 'PHPCI <no-reply@phptesting.org>';
const DEFAULT_FROM = 'PHP Censor <no-reply@php-censor.local>';
protected $emailTo = [];
protected $emailCc = [];
protected $subject = 'Email from PHPCI';
protected $subject = 'Email from PHP Censor';
protected $body = '';
protected $isHtml = false;
protected $config;

View file

@ -12,7 +12,7 @@ return [
'language' => 'Sprog',
// Log in:
'log_in_to_phpci' => 'Log ind i PHPCI',
'log_in_to_phpci' => 'Log ind i PHP Censor',
'login_error' => 'Forkert email-adresse eller adgangskode',
'forgotten_password_link' => 'Har du glemt din adgangskode?',
'reset_emailed' => 'Vi har sendt dig en email med et link til at nulstille din adgangskode.',
@ -26,7 +26,7 @@ vi dig et link til at nulstille din adgangskode.',
'reset_no_user_exists' => 'Der findes ingen bruger med den email-adresse, prøv igen.',
'reset_email_body' => 'Hej %s,
Du modtager denne email fordi du eller en anden person har anmodet om at nulstille din adgangskode til PHPCI.
Du modtager denne email fordi du eller en anden person har anmodet om at nulstille din adgangskode til PHP Censor.
Hvis det var dig kan du klikke følgende link for at nulstille din adgangskode: %ssession/reset-password/%d/%s
@ -34,9 +34,9 @@ Hvis det ikke var dig kan du ignorere denne email og intet vil ske.
Tak,
PHPCI',
PHP Censor',
'reset_email_title' => 'PHPCI Adgangskode-nulstilling for %s',
'reset_email_title' => 'PHP Censor Adgangskode-nulstilling for %s',
'reset_invalid' => 'Ugyldig anmodning om adgangskode-nulstilling.',
'email_address' => 'Email-addresse',
'login' => 'Login / Email Address',
@ -109,7 +109,7 @@ i din foretrukne hosting-platform.',
'project_title' => 'Projekt-titel',
'project_private_key' => 'Privat nøgle med adgang til dette repository
(tom for lokal nøgle og/eller anonym adgang)',
'build_config' => 'PHPCI build-konfiguration for dette projekt
'build_config' => 'PHP Censor build-konfiguration for dette projekt
(hvis du ikke har mulighed for at tilføje en phpci.yml fil i projektets repository)',
'default_branch' => 'Default branch navn',
'allow_public_status' => 'Tillad offentlig status-side og -billede for dette projekt?',
@ -231,20 +231,20 @@ Services</a> sektionen under dit Bitbucket-repository.',
// Settings:
'settings_saved' => 'Dine indstillinger blev gemt.',
'settings_check_perms' => 'Dine indstillinger kunne ikke gemmes, kontrollér rettighederne på din config.yml fil.',
'settings_cannot_write' => 'PHPCI kan ikke skrive til din config.yml fil, indstillinger bliver muligvis ikke gemt korrekt før dette problem løses.',
'settings_cannot_write' => 'PHP Censor kan ikke skrive til din config.yml fil, indstillinger bliver muligvis ikke gemt korrekt før dette problem løses.',
'settings_github_linked' => 'Din GitHub-konto er nu tilsluttet.',
'settings_github_not_linked' => 'Din GitHub-konto kunne ikke tilsluttes.',
'build_settings' => 'Build-indstillinger',
'github_application' => 'GitHub-applikation',
'github_sign_in' => 'Før du kan bruge GitHub skal du <a href="%s">logge ind</a> og give PHPCI
'github_sign_in' => 'Før du kan bruge GitHub skal du <a href="%s">logge ind</a> og give PHP Censor
adgang til din konto.',
'github_phpci_linked' => 'PHPCI blev tilsluttet din GitHub-konto.',
'github_phpci_linked' => 'PHP Censor blev tilsluttet din GitHub-konto.',
'github_where_to_find' => 'Hvor disse findes...',
'github_where_help' => 'Hvis du ejer applikationen du ønsker at bruge kan du finde denne information i
<a href="https://github.com/settings/applications">applications</a> under indstillinger.',
'email_settings' => 'Email-indstillinger',
'email_settings_help' => 'Før PHPCI kan sende build-notifikationer via email
'email_settings_help' => 'Før PHP Censor kan sende build-notifikationer via email
skal du konfigurere nedenstående SMTP-indstillinger.',
'application_id' => 'Application ID',
@ -269,7 +269,7 @@ skal du konfigurere nedenstående SMTP-indstillinger.',
'3_hours' => '3 timer',
// Plugins
'cannot_update_composer' => 'PHPCI kan ikke opdatere composer.json da filen ikke kan skrives.',
'cannot_update_composer' => 'PHP Censor kan ikke opdatere composer.json da filen ikke kan skrives.',
'x_has_been_removed' => '%s er blevet slettet.',
'x_has_been_added' => '%s blev tilføjet til composer.json for dig og vil blive installeret næste gang
du kører composer update.',
@ -286,7 +286,7 @@ du kører composer update.',
'search' => 'Søg &raquo;',
// Installer
'installation_url' => 'PHPCI Installations-URL',
'installation_url' => 'PHP Censor Installations-URL',
'db_host' => 'Database-hostnavn',
'db_name' => 'Database-navn',
'db_user' => 'Database-brugernavn',
@ -295,37 +295,37 @@ du kører composer update.',
'admin_pass' => 'Administrator-adgangskode',
'admin_email' => 'Administrators email-adresse',
'config_path' => 'Konfigurations-fil',
'install_phpci' => 'Installér PHPCI',
'welcome_to_phpci' => 'Velkommen til PHPCI',
'install_phpci' => 'Installér PHP Censor',
'welcome_to_phpci' => 'Velkommen til PHP Censor',
'please_answer' => 'Besvar venligst følgende spørgsmål:',
'phpci_php_req' => 'PHPCI kræver minimum PHP version 5.3.8 for at fungere.',
'phpci_php_req' => 'PHP Censor kræver minimum PHP version 5.3.8 for at fungere.',
'extension_required' => 'Extension påkrævet: %s',
'function_required' => 'PHPCI behøver adgang til funktion %s() i PHP. Er den deaktiveret i php.ini?',
'requirements_not_met' => 'PHPCI kan ikke installeres da nogle krav ikke opfyldtes.
'function_required' => 'PHP Censor behøver adgang til funktion %s() i PHP. Er den deaktiveret i php.ini?',
'requirements_not_met' => 'PHP Censor kan ikke installeres da nogle krav ikke opfyldtes.
Kontrollér venligst nedenstående fejl før du fortsætter.',
'must_be_valid_email' => 'Skal være en gyldig email-adresse.',
'must_be_valid_url' => 'Skal være en gyldig URL.',
'enter_name' => 'Administrator-navn: ',
'enter_email' => 'Administrators email-adresse: ',
'enter_password' => 'Administrator-adgangskode: ',
'enter_phpci_url' => 'Din PHPCI URL (eksempelvis "http://phpci.local"): ',
'enter_phpci_url' => 'Din PHP Censor URL (eksempelvis "http://phpci.local"): ',
'enter_db_host' => 'Indtast dit MySQL-hostnavn [localhost]: ',
'enter_db_name' => 'Indtast dit MySQL database-navn [phpci]: ',
'enter_db_user' => 'Indtast dit MySQL-brugernavn [phpci]: ',
'enter_db_pass' => 'Indtast dit MySQL-password: ',
'could_not_connect' => 'PHPCI kunne ikke forbinde til MySQL med de angivning oplysninger. Forsøg igen.',
'could_not_connect' => 'PHP Censor kunne ikke forbinde til MySQL med de angivning oplysninger. Forsøg igen.',
'setting_up_db' => 'Indlæser database...',
'user_created' => 'Brugerkonto oprettet!',
'failed_to_create' => 'PHPCI kunne ikke oprette din administrator-konto.',
'config_exists' => 'PHPCI konfigurationsfilen findes og er ikke tom.',
'update_instead' => 'Hvis du forsøgte at opdatere PHPCI, forsøg da venligst med phpci:update istedet.',
'failed_to_create' => 'PHP Censor kunne ikke oprette din administrator-konto.',
'config_exists' => 'PHP Censor konfigurationsfilen findes og er ikke tom.',
'update_instead' => 'Hvis du forsøgte at opdatere PHP Censor, forsøg da venligst med phpci:update istedet.',
// Update
'update_phpci' => 'Opdatér databasen med ændrede modeller',
'updating_phpci' => 'Opdaterer PHPCI-database:',
'not_installed' => 'PHPCI lader til ikke at være installeret.',
'install_instead' => 'Installér venligst PHPCI via phpci:install istedet.',
'updating_phpci' => 'Opdaterer PHP Censor-database:',
'not_installed' => 'PHP Censor lader til ikke at være installeret.',
'install_instead' => 'Installér venligst PHP Censor via phpci:install istedet.',
// Poll Command
'poll_github' => 'Check via GitHub om et build skal startes.',
@ -347,7 +347,7 @@ Kontrollér venligst nedenstående fejl før du fortsætter.',
'branch_name_option' => 'Branch to build',
// Run Command
'run_all_pending' => 'Kør alle PHPCI builds i køen.',
'run_all_pending' => 'Kør alle PHP Censor builds i køen.',
'finding_builds' => 'Finder builds der skal køres',
'found_n_builds' => '%d builds fundet',
'skipping_build' => 'Springer over Build %d - projektet kører et build lige nu.',
@ -381,7 +381,7 @@ Kontrollér venligst nedenstående fejl før du fortsætter.',
'n_emails_sent' => '%d emails afsendt.',
'n_emails_failed' => '%d emails kunne ikke afsendes.',
'unable_to_set_env' => 'Kunne ikke sætte environment-variabel',
'tag_created' => 'Tag oprettet af PHPCI: %s',
'tag_created' => 'Tag oprettet af PHP Censor: %s',
'x_built_at_x' => '%PROJECT_TITLE% bygget på %BUILD_URI%',
'hipchat_settings' => 'Angiv venligst rum og autoToken i hipchat_notify plugin',
'irc_settings' => 'Du skal som minimum indstille en server, et rum og et nicknavn.',

View file

@ -12,7 +12,7 @@ return [
'language' => 'Sprache',
// Log in:
'log_in_to_phpci' => 'In PHPCI einloggen',
'log_in_to_phpci' => 'In PHP Censor einloggen',
'login_error' => 'Fehlerhafte Emailadresse oder fehlerhaftes Passwort',
'forgotten_password_link' => 'Passwort vergessen?',
'reset_emailed' => 'Wir haben Ihnen einen Link geschickt, um Ihr Passwort zurückzusetzen',
@ -26,7 +26,7 @@ return [
'reset_no_user_exists' => 'Es existiert kein User mit dieser Emailadresse, versuchen Sie es bitte noch einmal.',
'reset_email_body' => 'Hallo %s,
Sie haben diese Email erhalten, weil Sie, oder jemand anders, einen Link zum Zurücksetzen Ihres Passwortes für PHPCI verlangt hat.
Sie haben diese Email erhalten, weil Sie, oder jemand anders, einen Link zum Zurücksetzen Ihres Passwortes für PHP Censor verlangt hat.
Wenn Sie diesen Link verlangt haben, klicken Sie bitte hier, um Ihr Passwort zurückzusetzen: %ssession/reset-password/%d/%s
@ -34,9 +34,9 @@ Falls nicht, ignorieren Sie diese Email bitte, und es wird nichts geändert.
Danke,
PHPCI',
PHP Censor',
'reset_email_title' => 'PHPCI Passwort zurücksetzen für %s',
'reset_email_title' => 'PHP Censor Passwort zurücksetzen für %s',
'reset_invalid' => 'Fehlerhafte Anfrage für das Zurücksetzen eines Passwortes',
'email_address' => 'Emailadresse',
'login' => 'Login / Emailadresse',
@ -111,7 +111,7 @@ generiert. Um es zu verwenden, fügen Sie einfach den folgenden Public Key im Ab
'project_title' => 'Projekttitel',
'project_private_key' => 'Private Key für den Zugang zum Repository
(leer lassen für lokale und oder anonyme externe Zugriffe)',
'build_config' => 'PHPCI Buildkonfiguration für dieses Projekt
'build_config' => 'PHP Censor Buildkonfiguration für dieses Projekt
(falls Sie Ihrem Projektrepository kein phpci.yml hinzufügen können)',
'default_branch' => 'Name des Standardbranches',
'allow_public_status' => 'Öffentliche Statusseite und -bild für dieses Projekt einschalten?',
@ -242,20 +242,20 @@ generiert. Um es zu verwenden, fügen Sie einfach den folgenden Public Key im Ab
'settings_saved' => 'Ihre Einstellungen wurden gespeichert.',
'settings_check_perms' => 'Ihre Einstellungen konnten nicht gespeichert werden, bitte überprüfen Sie die
Berechtigungen Ihrer config.yml-Datei',
'settings_cannot_write' => 'PHPCI konnte config.yml nicht schreiben. Einstellungen könnten nicht richtig gespeichert werden, bis das Problem behoben ist.',
'settings_cannot_write' => 'PHP Censor konnte config.yml nicht schreiben. Einstellungen könnten nicht richtig gespeichert werden, bis das Problem behoben ist.',
'settings_github_linked' => 'Ihr GitHub-Konto wurde verknüpft.',
'settings_github_not_linked' => 'Ihr GitHub-Konto konnte nicht verknüpft werden.',
'build_settings' => 'Buildeinstellungen',
'github_application' => 'GitHub-Applikation',
'github_sign_in' => 'Bevor Sie anfangen GitHub zu verwenden, müssen Sie sich erst <a href="%s">einloggen</a> und PHPCI Zugriff auf Ihr Nutzerkonto gewähren',
'github_phpci_linked' => 'PHPCI wurde erfolgreich mit Ihrem GitHub-Konto verknüpft.',
'github_sign_in' => 'Bevor Sie anfangen GitHub zu verwenden, müssen Sie sich erst <a href="%s">einloggen</a> und PHP Censor Zugriff auf Ihr Nutzerkonto gewähren',
'github_phpci_linked' => 'PHP Censor wurde erfolgreich mit Ihrem GitHub-Konto verknüpft.',
'github_where_to_find' => 'Wo Sie diese finden...',
'github_where_help' => 'Wenn Sie der Besitzer der Applikation sind, die Sie gerne verwenden möchten, können Sie
diese Einstellungen in Ihrem "<a href="https://github.com/settings/applications">applications</a>
settings"-Bereich finden.',
'email_settings' => 'Emaileinstellungen',
'email_settings_help' => 'Bevor PHPCI E-Mails zum Buildstatus verschicken kann,
'email_settings_help' => 'Bevor PHP Censor E-Mails zum Buildstatus verschicken kann,
müssen Sie Ihre SMTP-Einstellungen unten konfigurieren',
'application_id' => 'Applikations-ID',
@ -280,7 +280,7 @@ generiert. Um es zu verwenden, fügen Sie einfach den folgenden Public Key im Ab
'3_hours' => '3 Stunden',
// Plugins
'cannot_update_composer' => 'PHPCI kann composer.json nicht für Sie aktualisieren, da Schreibrechte benötigt werden.',
'cannot_update_composer' => 'PHP Censor kann composer.json nicht für Sie aktualisieren, da Schreibrechte benötigt werden.',
'x_has_been_removed' => '%s wurde entfernt.',
'x_has_been_added' => '%s wurde für Sie dem composer.json hinzugefügt und wird installiert, sobald Sie das nächste mal composer update ausführen.',
'enabled_plugins' => 'Eingeschaltene Plugins',
@ -309,7 +309,7 @@ generiert. Um es zu verwenden, fügen Sie einfach den folgenden Public Key im Ab
'stage_fixed' => 'Behoben',
// Installer
'installation_url' => 'PHPCI Installations-URL',
'installation_url' => 'PHP Censor Installations-URL',
'db_host' => 'Datenbankserver',
'db_name' => 'Datenbankname',
'db_user' => 'Datenbankbenutzer',
@ -318,37 +318,37 @@ generiert. Um es zu verwenden, fügen Sie einfach den folgenden Public Key im Ab
'admin_pass' => 'Administratorpasswort',
'admin_email' => 'Emailadresse des Administrators',
'config_path' => 'Dateipfad für Konfiguration',
'install_phpci' => 'PHPCI installieren',
'welcome_to_phpci' => 'Willkommen bei PHPCI',
'install_phpci' => 'PHP Censor installieren',
'welcome_to_phpci' => 'Willkommen bei PHP Censor',
'please_answer' => 'Bitte beantworten Sie die folgenden Fragen:',
'phpci_php_req' => 'PHPCI benötigt mindestens PHP 5.3.8 um zu funktionieren.',
'phpci_php_req' => 'PHP Censor benötigt mindestens PHP 5.3.8 um zu funktionieren.',
'extension_required' => 'Benötigte Extensions: %s',
'function_required' => 'PHPCI muss die Funktion %s() aufrufen können. Ist sie in php.ini deaktiviert?',
'requirements_not_met' => 'PHPCI konnte nicht installiert werden, weil nicht alle Bedingungen erfüllt sind.
'function_required' => 'PHP Censor muss die Funktion %s() aufrufen können. Ist sie in php.ini deaktiviert?',
'requirements_not_met' => 'PHP Censor konnte nicht installiert werden, weil nicht alle Bedingungen erfüllt sind.
Bitte überprüfen Sie die Fehler, bevor Sie fortfahren,',
'must_be_valid_email' => 'Muss eine gültige Emailadresse sein.',
'must_be_valid_url' => 'Muss eine valide URL sein.',
'enter_name' => 'Name des Administrators: ',
'enter_email' => 'Emailadresse des Administrators: ',
'enter_password' => 'Passwort des Administrators: ',
'enter_phpci_url' => 'Ihre PHPCI-URL (z.B. "http://phpci.local"): ',
'enter_phpci_url' => 'Ihre PHP Censor-URL (z.B. "http://phpci.local"): ',
'enter_db_host' => 'Bitte geben Sie Ihren MySQL-Host ein [localhost]: ',
'enter_db_name' => 'Bitte geben Sie Ihren MySQL-Namen ein [phpci]: ',
'enter_db_user' => 'Bitte geben Sie Ihren MySQL-Benutzernamen ein [phpci]: ',
'enter_db_pass' => 'Bitte geben Sie Ihr MySQL-Passwort ein: ',
'could_not_connect' => 'PHPCI konnte wegen folgender Details nicht mit MySQL verbinden. Bitte versuchen Sie es erneut.',
'could_not_connect' => 'PHP Censor konnte wegen folgender Details nicht mit MySQL verbinden. Bitte versuchen Sie es erneut.',
'setting_up_db' => 'Ihre Datenbank wird aufgesetzt... ',
'user_created' => 'Benutzerkonto wurde erstellt!',
'failed_to_create' => 'PHPCI konnte Ihr Administratorenkonto nicht erstellen.',
'config_exists' => 'Die PHPCI-Konfigurationsdatei existiert und ist nicht leer..',
'update_instead' => 'Falls Sie versucht haben PHPCI zu aktualisieren, benutzen Sie bitte stattdessen phpci:update.',
'failed_to_create' => 'PHP Censor konnte Ihr Administratorenkonto nicht erstellen.',
'config_exists' => 'Die PHP Censor-Konfigurationsdatei existiert und ist nicht leer..',
'update_instead' => 'Falls Sie versucht haben PHP Censor zu aktualisieren, benutzen Sie bitte stattdessen phpci:update.',
// Update
'update_phpci' => 'Datenbank wird aktualisiert, um den Änderungen der Models zu entsprechen.',
'updating_phpci' => 'Aktualisiere PHPCI-Datenbank:',
'not_installed' => 'PHPCI scheint nicht installiert zu sein.',
'install_instead' => 'Bitte installieren Sie PHPCI stattdessen via phpci:install.',
'updating_phpci' => 'Aktualisiere PHP Censor-Datenbank:',
'not_installed' => 'PHP Censor scheint nicht installiert zu sein.',
'install_instead' => 'Bitte installieren Sie PHP Censor stattdessen via phpci:install.',
// Poll Command
'poll_github' => 'GitHub abfragen, um herauszufinden, ob ein Build gestartet werden muss.',
@ -370,7 +370,7 @@ generiert. Um es zu verwenden, fügen Sie einfach den folgenden Public Key im Ab
'branch_name_option' => 'Branch to build',
// Run Command
'run_all_pending' => 'Führe alle ausstehenden PHPCI Builds aus.',
'run_all_pending' => 'Führe alle ausstehenden PHP Censor Builds aus.',
'finding_builds' => 'Suche verarbeitbare Builds',
'found_n_builds' => '%d Builds gefunden',
'skipping_build' => 'Überspringe Build %d - Es wird bereits ein Build auf diesem Projekt ausgeführt.',
@ -404,7 +404,7 @@ generiert. Um es zu verwenden, fügen Sie einfach den folgenden Public Key im Ab
'n_emails_sent' => '%d Emails verschickt.',
'n_emails_failed' => 'Konnte %d Emails nicht verschicken.',
'unable_to_set_env' => 'Konnte Umgebungsvariable nicht setzen',
'tag_created' => 'Tag erstellt durch PHPCI: %s',
'tag_created' => 'Tag erstellt durch PHP Censor: %s',
'x_built_at_x' => '%PROJECT_TITLE% gebuildet auf %BUILD_URI%',
'hipchat_settings' => 'Bitte definieren Sie Room und AuthToken für das hipchat_notify-Plugin',
'irc_settings' => 'Sie müssen einen Server, Room und Nick definieren.',

View file

@ -12,7 +12,7 @@ return [
'language' => 'Γλώσσα',
// Log in:
'log_in_to_phpci' => 'Είσοδος στο PHPCI',
'log_in_to_phpci' => 'Είσοδος στο PHP Censor',
'login_error' => 'Λάθος διεύθυνση e-mail ή κωδικός πρόσβασης',
'forgotten_password_link' => 'Ξεχάσατε τον κωδικό σας;',
'reset_emailed' => 'Σας έχουμε αποσταλεί ένα σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας.',
@ -26,7 +26,7 @@ return [
'reset_no_user_exists' => 'Δεν υπάρχει χρήστης με αυτή την διεύθυνση ηλεκτρονικού ταχυδρομείου, παρακαλώ προσπαθήστε ξανά.',
'reset_email_body' => 'Γεια %s,
Έχετε λάβει αυτό το μήνυμα επειδή εσείς, ή κάποιος άλλος, ζήτησε επαναφορά κωδικού πρόσβασης για το PHPCI.
Έχετε λάβει αυτό το μήνυμα επειδή εσείς, ή κάποιος άλλος, ζήτησε επαναφορά κωδικού πρόσβασης για το PHP Censor.
Αν ήσασταν εσείς, παρακαλώ κάντε κλικ στον παρακάτω σύνδεσμο για να επαναφέρετε τον κωδικό πρόσβασής σας: %ssession/reset-password/%d/%s
@ -34,9 +34,9 @@ return [
Σας ευχαριστούμε,
PHPCI',
PHP Censor',
'reset_email_title' => 'PHPCI Επαναφορά Κωδικού για %s',
'reset_email_title' => 'PHP Censor Επαναφορά Κωδικού για %s',
'reset_invalid' => 'Μη έγκυρο αίτημα επαναφοράς κωδικού πρόσβασης.',
'email_address' => 'Διεύθυνση email',
'login' => 'Login / Email Address',
@ -110,7 +110,7 @@ PHPCI',
'project_title' => 'Τίτλος Έργου',
'project_private_key' => 'Ιδιωτικό κλειδί για πρόσβαση σε αποθετήριο
(αφήστε κενό για την τοπική ή / και ανώνυμα απομακρυσμένα)',
'build_config' => 'Kατασκευή διαμόρφωσης PHPCI για αυτό το έργο
'build_config' => 'Kατασκευή διαμόρφωσης PHP Censor για αυτό το έργο
(αν δεν μπορείτε να προσθέσετε ένα αρχείο phpci.yml στο αποθετήριο έργων)',
'default_branch' => 'Προκαθορισμένο όνομα διακλάδωσης',
'allow_public_status' => 'Ενεργοποίηση της σελίδας δημόσιας κατάστασης και την εικόνα για το έργο αυτό;',
@ -232,21 +232,21 @@ Services</a> του Bitbucket αποθετηρίου σας.',
// Settings:
'settings_saved' => 'Οι ρυθμίσεις σας έχουν αποθηκευτεί.',
'settings_check_perms' => 'Οι ρυθμίσεις σας δεν αποθηκεύτηκαν, ελέγξτε τα δικαιώματα του αρχείου σας config.yml.',
'settings_cannot_write' => 'Το PHPCI δεν μπορεί να γράψει στο αρχείο config.yml, οι ρυθμίσεις ενδέχεται να μην αποθηκευτούν σωστά
'settings_cannot_write' => 'Το PHP Censor δεν μπορεί να γράψει στο αρχείο config.yml, οι ρυθμίσεις ενδέχεται να μην αποθηκευτούν σωστά
μέχρι να διορθωθεί.',
'settings_github_linked' => 'Ο λογαριασμός σας GitHub έχει συνδεθεί.',
'settings_github_not_linked' => 'Ο λογαριασμός σας Github δεν μπόρεσε να συνδεθεί.',
'build_settings' => 'Ρυθμίσεις κατασκευής',
'github_application' => 'GitHub Εφαρμογή',
'github_sign_in' => 'Πριν αρχίσετε να χρησιμοποιείτε το GitHub, θα πρέπει να <a href="%s"> συνδεθείται </a> και να δώσει
το PHPCI πρόσβαση στο λογαριασμό σας.',
'github_phpci_linked' => 'Το PHPCI συνδέθηκε με επιτυχία με το λογαριασμό Github.',
το PHP Censor πρόσβαση στο λογαριασμό σας.',
'github_phpci_linked' => 'Το PHP Censor συνδέθηκε με επιτυχία με το λογαριασμό Github.',
'github_where_to_find' => 'Πού να βρείτε αυτά ...',
'github_where_help' => 'Εάν έχετε στην κατοχή σας την εφαρμογή που θέλετε να χρησιμοποιήσετε, μπορείτε να βρείτε αυτές τις πληροφορίες στην περιοχή
<a href="https://github.com/settings/applications">Ρυθμίσεις εφαρμογών </a> ',
'email_settings' => 'Ρυθμίσεις email',
'email_settings_help' => 'Πριν το PHPCI μπορεί να στείλει μηνύματα ηλεκτρονικού ταχυδρομείου για την κατάσταση κατασκευής,
'email_settings_help' => 'Πριν το PHP Censor μπορεί να στείλει μηνύματα ηλεκτρονικού ταχυδρομείου για την κατάσταση κατασκευής,
θα πρέπει να διαμορφώσετε τις ρυθμίσεις SMTP παρακάτω.',
'application_id' => 'Αναγνωριστικό εφαρμογής',
@ -271,7 +271,7 @@ Services</a> του Bitbucket αποθετηρίου σας.',
'3_hours' => '3 ώρες',
// Plugins
'cannot_update_composer' => 'To PHPCI δεν μπορεί να ενημερώσει to composer.json για σας, γιατί δεν είναι εγγράψιμο.',
'cannot_update_composer' => 'To PHP Censor δεν μπορεί να ενημερώσει to composer.json για σας, γιατί δεν είναι εγγράψιμο.',
'x_has_been_removed' => '%s έχει αφαιρεθεί.',
'x_has_been_added' => '%s προσθέιηκε στο αρχείο composer.json για εσάς και θα εγκατασταθεί την επόμενη φορά
που θα τρέξετε την ενημέρωση για το composer.',
@ -288,7 +288,7 @@ Services</a> του Bitbucket αποθετηρίου σας.',
'search' => 'Αναζήτηση &raquo;',
// Installer
'installation_url' => 'Σύνδεσμος URL εγκατάστασης του PHPCI',
'installation_url' => 'Σύνδεσμος URL εγκατάστασης του PHP Censor',
'db_host' => 'Φιλοξενία βάσης δεδομένων',
'db_name' => 'Όνομα βάσης δεδομένων',
'db_user' => 'Όνομα χρήστη βάσης δεδομένων',
@ -297,37 +297,37 @@ Services</a> του Bitbucket αποθετηρίου σας.',
'admin_pass' => 'Κωδικός πρόσβασης διαχειριστή',
'admin_email' => 'Διεύθυνση email διαχειριστή',
'config_path' => 'Διαδρομή αρχείου ρυθμίσεων',
'install_phpci' => 'Εγκατάσταση PHPCI',
'welcome_to_phpci' => 'Καλώς ήρθατε στο PHPCI',
'install_phpci' => 'Εγκατάσταση PHP Censor',
'welcome_to_phpci' => 'Καλώς ήρθατε στο PHP Censor',
'please_answer' => 'Παρακαλώ απαντήστε στις ακόλουθες ερωτήσεις:',
'phpci_php_req' => 'Το PHPCI απαιτεί τουλάχιστον την έκδοση PHP 5.3.8 για να λειτουργήσει',
'phpci_php_req' => 'Το PHP Censor απαιτεί τουλάχιστον την έκδοση PHP 5.3.8 για να λειτουργήσει',
'extension_required' => 'Απαιτούμενη επέκταση: %s ',
'function_required' => 'Το PHPCI πρέπει να είναι σε θέση να καλέσει την %s() συνάρτηση. Είναι απενεργοποιημένη στο php.ini;',
'requirements_not_met' => 'Το PHPCI δεν μπορεί να εγκατασταθεί, καθώς όλες οι απαιτήσεις δεν ικανοποιούνται.
'function_required' => 'Το PHP Censor πρέπει να είναι σε θέση να καλέσει την %s() συνάρτηση. Είναι απενεργοποιημένη στο php.ini;',
'requirements_not_met' => 'Το PHP Censor δεν μπορεί να εγκατασταθεί, καθώς όλες οι απαιτήσεις δεν ικανοποιούνται.
Παρακαλούμε διαβάστε τα παραπάνω λάθη πριν συνεχίσετε.',
'must_be_valid_email' => 'Πρέπει να είναι μια έγκυρη διεύθυνση ηλεκτρονικού ταχυδρομείου.',
'must_be_valid_url' => 'Πρέπει να είναι μια έγκυρη διεύθυνση URL.',
'enter_name' => 'Όνομα διαχειριστή: ',
'enter_email' => 'Ηλ. Διεύθυνση διαχειριστή: ',
'enter_password' => 'Κωδικός πρόσβασης διαχειριστή: ',
'enter_phpci_url' => 'Ο URL σύνδεσμος σας για το PHPCI ("http://phpci.local" για παράδειγμα): ',
'enter_phpci_url' => 'Ο URL σύνδεσμος σας για το PHP Censor ("http://phpci.local" για παράδειγμα): ',
'enter_db_host' => 'Παρακαλώ εισάγετε τον MySQL οικοδεσπότη σας [localhost]: ',
'enter_db_name' => 'Παρακαλώ εισάγετε το όνομα της MySQL βάσης δεδομένων σας [phpci]: ',
'enter_db_user' => 'Παρακαλώ εισάγετε το όνομα χρήστη της MySQL σας [phpci]: ',
'enter_db_pass' => 'Παρακαλώ εισάγετε τον κωδικό χρήστη της MySQL σας: ',
'could_not_connect' => 'Το PHPCI δεν μπόρεσε να συνδεθεί με την MySQL με τα στοχεία που δώσατε. Παρακαλώ δοκιμάστε ξανά.',
'could_not_connect' => 'Το PHP Censor δεν μπόρεσε να συνδεθεί με την MySQL με τα στοχεία που δώσατε. Παρακαλώ δοκιμάστε ξανά.',
'setting_up_db' => 'Γίνεται ρύθμιση της βάσης δεδομένων σας ...',
'user_created' => 'Λογαριασμός χρήστη δημιουργήθηκε!',
'failed_to_create' => 'Το PHPCI απέτυχε να δημιουργήσει το λογαριασμό διαχειριστή σας.',
'config_exists' => 'Το αρχείο ρυθμίσεων PHPCI υπάρχει και δεν είναι άδειο.',
'update_instead' => 'Εάν προσπαθούσατε να ενημερώσετε PHPCI, παρακαλούμε χρησιμοποιήστε καλύτερα το phpci:update αντ \'αυτού.',
'failed_to_create' => 'Το PHP Censor απέτυχε να δημιουργήσει το λογαριασμό διαχειριστή σας.',
'config_exists' => 'Το αρχείο ρυθμίσεων PHP Censor υπάρχει και δεν είναι άδειο.',
'update_instead' => 'Εάν προσπαθούσατε να ενημερώσετε PHP Censor, παρακαλούμε χρησιμοποιήστε καλύτερα το phpci:update αντ \'αυτού.',
// Update
'update_phpci' => 'Ενημέρωστε την βάση δεδομένων ώστε να αντικατοπτρίζει τροποποιημένα μοντέλα.',
'updating_phpci' => 'Γίνεται ενημέρωση της βάσης δεδομένων PHPCI:',
'not_installed' => 'Το PHPCI δεν φένεται να είναι εγκατεστημένο',
'install_instead' => 'Παρακαλούμε εγκαταστήστε το PHPCI καλύτερα με το phpci:install αντ \'αυτού.',
'updating_phpci' => 'Γίνεται ενημέρωση της βάσης δεδομένων PHP Censor:',
'not_installed' => 'Το PHP Censor δεν φένεται να είναι εγκατεστημένο',
'install_instead' => 'Παρακαλούμε εγκαταστήστε το PHP Censor καλύτερα με το phpci:install αντ \'αυτού.',
// Poll Command
'poll_github' => 'Δημοσκόπηση στο GitHub για να ελέγξετε αν θα πρέπει να ξεκινήσει μια κατασκευή.',
@ -349,7 +349,7 @@ Services</a> του Bitbucket αποθετηρίου σας.',
'branch_name_option' => 'Branch to build',
// Run Command
'run_all_pending' => 'Εκτελέστε όλες τις εκκρεμείς PHPCI κατασκευές.',
'run_all_pending' => 'Εκτελέστε όλες τις εκκρεμείς PHP Censor κατασκευές.',
'finding_builds' => 'Αναζήτηση κατασκευών για επεξεργασία',
'found_n_builds' => 'Βρέθηκαν %d κατασκευές',
'skipping_build' => 'Παράκαμψη κατασκευής %d - Η διαδικασία κατασκευής του έργου βρίσκεται ήδη σε εξέλιξη.',
@ -383,7 +383,7 @@ Services</a> του Bitbucket αποθετηρίου σας.',
'n_emails_sent' => 'Στάλθηκαν %d emails ',
'n_emails_failed' => 'Δεν στάλθηκαν %d emails ',
'unable_to_set_env' => 'Δεν είναι δυνατός ο ορισμος μεταβλητής περιβάλλοντος',
'tag_created' => 'Ετικέτα δημιουργήθηκε από PHPCI: %s',
'tag_created' => 'Ετικέτα δημιουργήθηκε από PHP Censor: %s',
'x_built_at_x' => '%PROJECT_TITLE% χτισμένο σε %BUILD_URI%',
'hipchat_settings' => 'Παρακαλώ ορίστε δωμάτιο και authToken για το πρόσθετο hipchat_notify',
'irc_settings' => 'Θα πρέπει να ρυθμίσετε ένα διακομιστή, το δωμάτιο και το ψευδώνυμο.',

View file

@ -12,7 +12,7 @@ return [
'language' => 'Language',
// Log in:
'log_in_to_phpci' => 'Log in to PHPCI',
'log_in_to_phpci' => '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.',
@ -26,7 +26,7 @@ return [
'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 PHPCI.
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
@ -34,9 +34,9 @@ Otherwise, please ignore this email and no action will be taken.
Thank you,
PHPCI',
PHP Censor',
'reset_email_title' => 'PHPCI Password Reset for %s',
'reset_email_title' => 'PHP Censor Password Reset for %s',
'reset_invalid' => 'Invalid password reset request.',
'email_address' => 'Email Address',
'login' => 'Login / Email Address',
@ -112,7 +112,7 @@ PHPCI',
'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
'build_config' => 'PHP Censor 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?',
@ -252,21 +252,21 @@ PHPCI',
// 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' => 'PHPCI cannot write to your config.yml file, settings may not be saved properly
'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
PHPCI access to your account.',
'github_phpci_linked' => 'PHPCI is successfully linked to GitHub account.',
PHP Censor access to your account.',
'github_phpci_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 PHPCI can send build status emails,
'email_settings_help' => 'Before PHP Censor can send build status emails,
you need to configure your SMTP settings below.',
'application_id' => 'Application ID',
@ -291,7 +291,7 @@ PHPCI',
'3_hours' => '3 Hours',
// Plugins
'cannot_update_composer' => 'PHPCI cannot update composer.json for you as it is not writable.',
'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.',
@ -331,7 +331,7 @@ PHPCI',
'finished' => 'Finished',
// Installer
'installation_url' => 'PHPCI Installation URL',
'installation_url' => 'PHP Censor Installation URL',
'db_host' => 'Database Host',
'db_name' => 'Database Name',
'db_user' => 'Database Username',
@ -340,38 +340,38 @@ PHPCI',
'admin_pass' => 'Admin Password',
'admin_email' => 'Admin Email Address',
'config_path' => 'Config File Path',
'install_phpci' => 'Install PHPCI',
'welcome_to_phpci' => 'Welcome to PHPCI',
'install_phpci' => 'Install PHP Censor',
'welcome_to_phpci' => 'Welcome to PHP Censor',
'please_answer' => 'Please answer the following questions:',
'phpci_php_req' => 'PHPCI requires at least PHP 5.3.8 to function.',
'phpci_php_req' => 'PHP Censor requires at least PHP 5.3.8 to function.',
'extension_required' => 'Extension required: %s',
'function_required' => 'PHPCI needs to be able to call the %s() function. Is it disabled in php.ini?',
'requirements_not_met' => 'PHPCI cannot be installed, as not all requirements are met.
'function_required' => 'PHP Censor needs to be able to call the %s() function. Is it disabled in php.ini?',
'requirements_not_met' => 'PHP Censor cannot be installed, as not all requirements are met.
Please review the errors above before continuing.',
'must_be_valid_email' => 'Must be a valid email address.',
'must_be_valid_url' => 'Must be a valid URL.',
'enter_name' => 'Admin Name: ',
'enter_email' => 'Admin Email: ',
'enter_password' => 'Admin Password: ',
'enter_phpci_url' => 'Your PHPCI URL ("http://phpci.local" for example): ',
'enter_phpci_url' => 'Your PHP Censor URL ("http://phpci.local" for example): ',
'enter_db_host' => 'Please enter your MySQL host [localhost]: ',
'enter_db_port' => 'Please enter your MySQL port [3306]: ',
'enter_db_name' => 'Please enter your MySQL database name [phpci]: ',
'enter_db_user' => 'Please enter your MySQL username [phpci]: ',
'enter_db_pass' => 'Please enter your MySQL password: ',
'could_not_connect' => 'PHPCI could not connect to MySQL with the details provided. Please try again.',
'could_not_connect' => 'PHP Censor could not connect to MySQL with the details provided. Please try again.',
'setting_up_db' => 'Setting up your database... ',
'user_created' => 'User account created!',
'failed_to_create' => 'PHPCI failed to create your admin account.',
'config_exists' => 'The PHPCI config file exists and is not empty.',
'update_instead' => 'If you were trying to update PHPCI, please use phpci:update instead.',
'failed_to_create' => 'PHP Censor failed to create your admin account.',
'config_exists' => 'The PHP Censor config file exists and is not empty.',
'update_instead' => 'If you were trying to update PHP Censor, please use phpci:update instead.',
// Update
'update_phpci' => 'Update the database to reflect modified models.',
'updating_phpci' => 'Updating PHPCI database: ',
'not_installed' => 'PHPCI does not appear to be installed.',
'install_instead' => 'Please install PHPCI via phpci:install instead.',
'updating_phpci' => 'Updating PHP Censor database: ',
'not_installed' => 'PHP Censor does not appear to be installed.',
'install_instead' => 'Please install PHP Censor via phpci:install instead.',
// Poll Command
'poll_github' => 'Poll GitHub to check if we need to start a build.',
@ -392,11 +392,11 @@ PHPCI',
'commit_id_option' => 'Commit ID to build',
'branch_name_option' => 'Branch to build',
'add_to_queue_failed' => 'Build created successfully, but failed to add to build queue. This usually happens
when PHPCI is set to use a beanstalkd server that does not exist,
when PHP Censor is set to use a beanstalkd server that does not exist,
or your beanstalkd server has stopped.',
// Run Command
'run_all_pending' => 'Run all pending PHPCI builds.',
'run_all_pending' => 'Run all pending PHP Censor builds.',
'finding_builds' => 'Finding builds to process',
'found_n_builds' => 'Found %d builds',
'skipping_build' => 'Skipping Build %d - Project build already in progress.',
@ -431,7 +431,7 @@ PHPCI',
'n_emails_sent' => '%d emails sent.',
'n_emails_failed' => '%d emails failed to send.',
'unable_to_set_env' => 'Unable to set environment variable',
'tag_created' => 'Tag created by PHPCI: %s',
'tag_created' => 'Tag created by PHP Censor: %s',
'x_built_at_x' => '%PROJECT_TITLE% built at %BUILD_URI%',
'hipchat_settings' => 'Please define room and authToken for hipchat_notify plugin',
'irc_settings' => 'You must configure a server, room and nick.',

View file

@ -12,7 +12,7 @@ return [
'language' => 'Lenguaje',
// Log in:
'log_in_to_phpci' => 'Ingresar a PHPCI',
'log_in_to_phpci' => 'Ingresar a PHP Censor',
'login_error' => 'Email o contraseña incorrectos',
'forgotten_password_link' => '¿Olvidaste tu contraseña?',
'reset_emailed' => 'Te hemos enviado un email para reiniciar tu contraseña.',
@ -26,7 +26,7 @@ return [
'reset_no_user_exists' => 'No existe ningún usuario con ese email, por favor intenta nuevamente.',
'reset_email_body' => 'Hola %s,
Has recibido este correo porque , o alguien más, ha solicitado reiniciar la contraseña de PHPCI
Has recibido este correo porque , o alguien más, ha solicitado reiniciar la contraseña de PHP Censor
Si fuiste , por favor haz click en el siguiente enlace para reiniciar tu contraseña: %ssession/reset-password/%d/%s
@ -34,9 +34,9 @@ De lo contrario, por favor ignora este correo y ninguna acción será realizada.
Gracias,
PHPCI',
PHP Censor',
'reset_email_title' => 'Reiniciar contraseña de PHPCI para %s',
'reset_email_title' => 'Reiniciar contraseña de PHP Censor para %s',
'reset_invalid' => 'Pedido inválido.',
'email_address' => 'Dirección de email',
'password' => 'Contraseña',
@ -110,7 +110,7 @@ PHPCI',
'project_title' => 'Titulo del proyecto',
'project_private_key' => 'Clave privada a usar para acceder al repositorio
(dejar en blanco para remotos locales o anónimos)',
'build_config' => 'Configuración PHPCI para builds del proyecto
'build_config' => 'Configuración PHP Censor para builds del proyecto
(en caso que no puedas agregar el archivo phpci.yml al repositorio)',
'default_branch' => 'Nombre de la rama por defecto',
'allow_public_status' => '¿Activar página pública con el estado del proyecto?',
@ -227,21 +227,21 @@ PHPCI',
// Settings:
'settings_saved' => 'Tu configuración ha sido guardada.',
'settings_check_perms' => 'Tu configuración no fue guardada, verificar los permisos del archivo config.yml.',
'settings_cannot_write' => 'PHPCI no puede escribir en el archivo config.yml file, la configuración no será guardada correctamente
'settings_cannot_write' => 'PHP Censor no puede escribir en el archivo config.yml file, la configuración no será guardada correctamente
hasta no corregir esto.',
'settings_github_linked' => 'Tu cuenta GitHub ha sido conectada.',
'settings_github_not_linked' => 'No se pudo conectar a tu cuenta GitHub.',
'build_settings' => 'Configuración del Build ',
'github_application' => 'Aplicación GitHub',
'github_sign_in' => 'Antes de comenzar a utilizar GitHub, tienes que <a href="%s">ingresar</a> y permitir
el acceso a tu cuenta a PHPCI.',
'github_phpci_linked' => 'PHPCI ha sido conectado a tu cuenta GitHub.',
el acceso a tu cuenta a PHP Censor.',
'github_phpci_linked' => 'PHP Censor ha sido conectado a tu cuenta GitHub.',
'github_where_to_find' => 'Donde encontrar estos...',
'github_where_help' => 'Si eres priopietario de la aplicaión que quieres usar, puedes encontrar esta información en
el área de configuración de <a href="https://github.com/settings/applications">aplicaciones</a>.',
'email_settings' => 'Configuraciones de Email',
'email_settings_help' => 'Para que PHPCI pueda enviar email con el status de los builds,
'email_settings_help' => 'Para que PHP Censor pueda enviar email con el status de los builds,
debes configurar las siguientes propiedades SMTP.',
'application_id' => 'ID de aplicación',
@ -266,7 +266,7 @@ PHPCI',
'3_hours' => '3 Horas',
// Plugins
'cannot_update_composer' => 'PHPCI no puede actualizar composer.json porque no tiene permisos de escritura.',
'cannot_update_composer' => 'PHP Censor no puede actualizar composer.json porque no tiene permisos de escritura.',
'x_has_been_removed' => '%s ha sido elimiando.',
'x_has_been_added' => '%s ha sido agregado a composer.json y será instalado la próxima vez que ejecutes composer update.',
'enabled_plugins' => 'Activar Plugins',
@ -282,7 +282,7 @@ PHPCI',
'search' => 'Buscar &raquo;',
// Installer
'installation_url' => 'URL de la instalación PHPCI',
'installation_url' => 'URL de la instalación PHP Censor',
'db_host' => 'Host',
'db_name' => 'Nombre de la base de datos',
'db_user' => 'Usuario de la base de datos',
@ -291,37 +291,37 @@ PHPCI',
'admin_pass' => 'Clave del Admin',
'admin_email' => 'Email de Admin',
'config_path' => 'Ruta al archivo config',
'install_phpci' => 'Instalar PHPCI',
'welcome_to_phpci' => 'Bienvenido a PHPCI',
'install_phpci' => 'Instalar PHP Censor',
'welcome_to_phpci' => 'Bienvenido a PHP Censor',
'please_answer' => 'Por favor, responde las siguientes preguntas:',
'phpci_php_req' => 'PHPCI requiere al menos PHP 5.3.8 para funcionar.',
'phpci_php_req' => 'PHP Censor requiere al menos PHP 5.3.8 para funcionar.',
'extension_required' => 'Extensión requerida: %s',
'function_required' => 'PHPCI debe poder invocar la función %s(). Está deshabilitada en php.ini?',
'requirements_not_met' => 'PHPCI no pudo ser instalado, ya que no se cumplen todos los requerimientos.
'function_required' => 'PHP Censor debe poder invocar la función %s(). Está deshabilitada en php.ini?',
'requirements_not_met' => 'PHP Censor no pudo ser instalado, ya que no se cumplen todos los requerimientos.
Por favor, corrige los errores antes de continuar.',
'must_be_valid_email' => 'Debe ser una dirección de correos válida.',
'must_be_valid_url' => 'Debe ser una URL válida.',
'enter_name' => 'Nombre del Admin:',
'enter_email' => 'Email del Admin:',
'enter_password' => 'Contraseña de Admin:',
'enter_phpci_url' => 'La URL de PHPCI ("Por ejemplo: http://phpci.local"): ',
'enter_phpci_url' => 'La URL de PHP Censor ("Por ejemplo: http://phpci.local"): ',
'enter_db_host' => 'Por favor, ingresa el servidor MySQL [localhost]: ',
'enter_db_name' => 'Por favor, ingresa el nombre de la base de datos MySQL [phpci]: ',
'enter_db_user' => 'Por favor, ingresa el usuario MySQL [phpci]: ',
'enter_db_pass' => 'Por favor, ingresa la contraseña MySQL: ',
'could_not_connect' => 'PHPCI no pudo conectarse a MySQL con los datos dados. Por favor, intenta nuevamente.',
'could_not_connect' => 'PHP Censor no pudo conectarse a MySQL con los datos dados. Por favor, intenta nuevamente.',
'setting_up_db' => 'Configurando base de datos... ',
'user_created' => '¡Cuenta de usuario creada!',
'failed_to_create' => 'PHPCI no pudo crear la cuenta de admin.',
'config_exists' => 'El archivo config de PHPCI ya existe y no es vacío.',
'update_instead' => 'Si está intentando actualizar PHPCI, por favor, utiliza phpci:update.',
'failed_to_create' => 'PHP Censor no pudo crear la cuenta de admin.',
'config_exists' => 'El archivo config de PHP Censor ya existe y no es vacío.',
'update_instead' => 'Si está intentando actualizar PHP Censor, por favor, utiliza phpci:update.',
// Update
'update_phpci' => 'Actuliza la base de datos para reflejar los modelos actualizados.',
'updating_phpci' => 'Actualizando base de datos PHPCI: ',
'not_installed' => 'PHPCI no está instalado.',
'install_instead' => 'Por favor, instala PHPCI via phpci:install.',
'updating_phpci' => 'Actualizando base de datos PHP Censor: ',
'not_installed' => 'PHP Censor no está instalado.',
'install_instead' => 'Por favor, instala PHP Censor via phpci:install.',
// Poll Command
'poll_github' => 'Chequear en GitHub si se necesita comenzar un Build.',
@ -337,7 +337,7 @@ PHPCI',
'incorrect_format' => 'Formato incorrecto',
// Run Command
'run_all_pending' => 'Ejecutar todos los builds PHPCI pendientes.',
'run_all_pending' => 'Ejecutar todos los builds PHP Censor pendientes.',
'finding_builds' => 'Buscando builds a procesar',
'found_n_builds' => 'Se encontraron %d builds',
'skipping_build' => 'Saltando Build %d - Build del proyecto ya en ejecución.',
@ -371,7 +371,7 @@ PHPCI',
'n_emails_sent' => '%d emails enviados.',
'n_emails_failed' => '%d emails no pudieron ser enviados.',
'unable_to_set_env' => 'Imposible setear variable de entorno',
'tag_created' => 'Tag creado por PHPCI: %s',
'tag_created' => 'Tag creado por PHP Censor: %s',
'x_built_at_x' => 'Build de %PROJECT_TITLE% en %BUILD_URI%',
'hipchat_settings' => 'Por favor, definir room y authToken para el plugin hipchat_notify',
'irc_settings' => 'Debes configurar un servidor, room y apodo.',

View file

@ -12,7 +12,7 @@ return [
'language' => 'Langue',
// Log in:
'log_in_to_phpci' => 'Connectez-vous à PHPCI',
'log_in_to_phpci' => 'Connectez-vous à PHP Censor',
'login_error' => 'Adresse email ou mot de passe invalide',
'forgotten_password_link' => 'Mot de passe oublié&nbsp;?',
'reset_emailed' => 'Nous vous avons envoyé un email avec un lien pour réinitialiser votre mot de passe.',
@ -26,7 +26,7 @@ return [
'reset_no_user_exists' => 'Il n\'existe aucun utilisateur avec cette adresse email, merci de réessayer.',
'reset_email_body' => 'Bonjour %s,
Vous avez reçu cet email parce qu\'une demande de réinitialisation de mot de passe a été faite pour votre compte PHPCI.
Vous avez reçu cet email parce qu\'une demande de réinitialisation de mot de passe a été faite pour votre compte PHP Censor.
Si c\'est bien vous, merci de cliquer sur le lien suivant pour réinitialiser votre mot de passe&nbsp;: %ssession/reset-password/%d/%s
@ -34,9 +34,9 @@ Sinon, merci d\'ignorer ce message.
Merci,
PHPCI',
PHP Censor',
'reset_email_title' => 'Réinitialisation du mot de passe PHPCI pour %s',
'reset_email_title' => 'Réinitialisation du mot de passe PHP Censor pour %s',
'reset_invalid' => 'Requête de réinitialisation de mot de passe invalide.',
'email_address' => 'Adresse email',
'login' => 'Login / Email Address',
@ -110,7 +110,7 @@ PHPCI',
'project_title' => 'Titre du projet',
'project_private_key' => 'Clé privée à utiliser pour accéder au dépôt
(laissez le champ vide pour les dépôts locaux ou les URLs distantes anonymes)',
'build_config' => 'Configuration PHPCI spécifique pour ce projet
'build_config' => 'Configuration PHP Censor spécifique pour ce projet
(si vous ne pouvez pas ajouter de fichier phpci.yml à la racine du dépôt)',
'default_branch' => 'Nom de la branche par défaut',
'allow_public_status' => 'Activer la page de statut publique et l\'image pour ce projet&nbsp;?',
@ -236,21 +236,21 @@ PHPCI',
// Settings:
'settings_saved' => 'Vos paramètres ont été sauvegardés.',
'settings_check_perms' => 'Vos paramètres n\'ont pas pu être sauvegardés, vérifiez les permissions sur le fichier config.yml.',
'settings_cannot_write' => 'PHPCI ne peut pas écrire dans votre fichier config.yml, les paramètres ne pourront pas être sauvegardés correctement
'settings_cannot_write' => 'PHP Censor ne peut pas écrire dans votre fichier config.yml, les paramètres ne pourront pas être sauvegardés correctement
tant que ce ne sera pas corrigé.',
'settings_github_linked' => 'Votre compte GitHub n\'a pas été lié.',
'settings_github_not_linked' => 'Votre compte GitHub ne peut pas être lié.',
'build_settings' => 'Configuration du Build',
'github_application' => 'Application GitHub',
'github_sign_in' => 'Avant de commencer à utiliser GitHub, vous devez vous <a href="%s">connecter</a> et autoriser
PHPCI à accéder à votre compte.',
'github_phpci_linked' => 'PHPCI s\'est connecté avec succès au compte GitHub.',
PHP Censor à accéder à votre compte.',
'github_phpci_linked' => 'PHP Censor s\'est connecté avec succès au compte GitHub.',
'github_where_to_find' => 'Où trouver ces informations...',
'github_where_help' => 'Si vous souhaitez utiliser une application qui vous appartient, vous pouvez trouver ces informations dans
la zone de paramètres <a href="https://github.com/settings/applications">applications</a>.',
'email_settings' => 'Configuration Email',
'email_settings_help' => 'Avant que PHPCI puisse envoyer des emails concernant les statuts de build,
'email_settings_help' => 'Avant que PHP Censor puisse envoyer des emails concernant les statuts de build,
vous devez entrer les configurations SMTP ci-dessous.',
'application_id' => 'Identifiant d\'application',
@ -275,7 +275,7 @@ PHPCI',
'3_hours' => '3 Heures',
// Plugins
'cannot_update_composer' => 'PHPCI ne peut pas mettre à jour le fichier composer.json pour vous, il n\'est pas modifiable.',
'cannot_update_composer' => 'PHP Censor ne peut pas mettre à jour le fichier composer.json pour vous, il n\'est pas modifiable.',
'x_has_been_removed' => '%s a été supprimé.',
'x_has_been_added' => '%s a été ajouté au fichier composer.json pour vous et il sera installé la prochaine fois
que vous lancerez "composer update".',
@ -303,7 +303,7 @@ PHPCI',
'stage_failure' => 'Échec',
// Installer
'installation_url' => 'URL d\'installation de PHPCI',
'installation_url' => 'URL d\'installation de PHP Censor',
'db_host' => 'Hôte de la BDD',
'db_name' => 'Nom de la BDD',
'db_user' => 'Nom d\'utilisateur de la BDD',
@ -312,37 +312,37 @@ PHPCI',
'admin_pass' => 'Mot de passe admin',
'admin_email' => 'Adresse email de l\'admin',
'config_path' => 'Chemin vers le fichier de configuration',
'install_phpci' => 'Installer PHPCI',
'welcome_to_phpci' => 'Bienvenue sur PHPCI',
'install_phpci' => 'Installer PHP Censor',
'welcome_to_phpci' => 'Bienvenue sur PHP Censor',
'please_answer' => 'Merci de répondre aux questions suivantes :',
'phpci_php_req' => 'PHPCI requiert au moins PHP 5.3.8 pour fonctionner.',
'phpci_php_req' => 'PHP Censor requiert au moins PHP 5.3.8 pour fonctionner.',
'extension_required' => 'Extensions requises : %s',
'function_required' => 'PHPCI doit être capable d\'appeler la fonction %s(). Est-ce qu\'elle est désactivée dans votre php.ini?',
'requirements_not_met' => 'PHPCI ne peut pas être installé parce que toutes les conditions requises ne sont pas respectées.
'function_required' => 'PHP Censor doit être capable d\'appeler la fonction %s(). Est-ce qu\'elle est désactivée dans votre php.ini?',
'requirements_not_met' => 'PHP Censor ne peut pas être installé parce que toutes les conditions requises ne sont pas respectées.
Merci de corriger les erreurs ci-dessus avant de continuer.',
'must_be_valid_email' => 'Doit être une adresse email valide.',
'must_be_valid_url' => 'Doit être une URL valide.',
'enter_name' => 'Nom de l\'admin: ',
'enter_email' => 'Email de l\'admin: ',
'enter_password' => 'Mot de passe de l\'admin: ',
'enter_phpci_url' => 'Votre URL vers PHPCI (par exemple "http://phpci.local"): ',
'enter_phpci_url' => 'Votre URL vers PHP Censor (par exemple "http://phpci.local"): ',
'enter_db_host' => 'Merci d\'entrer le nom d\'hôte MySQL [localhost]: ',
'enter_db_name' => 'Merci d\'entrer le nom de la base MySQL [phpci]: ',
'enter_db_user' => 'Merci d\'entrer le nom d\'utilisateur MySQL [phpci]: ',
'enter_db_pass' => 'Merci d\'entrer le mot de passe MySQL: ',
'could_not_connect' => 'PHPCI ne peut pas se connecter à MySQL à partir des informations fournies. Veuillez réessayer..',
'could_not_connect' => 'PHP Censor ne peut pas se connecter à MySQL à partir des informations fournies. Veuillez réessayer..',
'setting_up_db' => 'Paramétrage de la base de données... ',
'user_created' => 'Le compte utilisateur a été créé !',
'failed_to_create' => 'PHPCI n\'a pas réussi à créer votre compte admin.',
'config_exists' => 'Le fichier de configuration PHPCI existe et n\'est pas vide.',
'update_instead' => 'Si vous essayez de mettre à jour PHPCI, merci d\'utiliser la commande phpci:update.',
'failed_to_create' => 'PHP Censor n\'a pas réussi à créer votre compte admin.',
'config_exists' => 'Le fichier de configuration PHP Censor existe et n\'est pas vide.',
'update_instead' => 'Si vous essayez de mettre à jour PHP Censor, merci d\'utiliser la commande phpci:update.',
// Update
'update_phpci' => 'Mise à jour de la base de données pour refléter les modifications apportées aux modèles.',
'updating_phpci' => 'Mise à jour de la base de données PHPCI : ',
'not_installed' => 'PHPCI n\'a pas l\'air d\'être installé.',
'install_instead' => 'Merci d\'installer PHPCI grâce à la commande phpci:install.',
'updating_phpci' => 'Mise à jour de la base de données PHP Censor : ',
'not_installed' => 'PHP Censor n\'a pas l\'air d\'être installé.',
'install_instead' => 'Merci d\'installer PHP Censor grâce à la commande phpci:install.',
// Poll Command
'poll_github' => 'Demander à GitHub de vérifier si nous devons démarrer un build.',
@ -364,7 +364,7 @@ PHPCI',
'branch_name_option' => 'Branche',
// Run Command
'run_all_pending' => 'Démarrage de tout les builds PHPCI en attente.',
'run_all_pending' => 'Démarrage de tout les builds PHP Censor en attente.',
'finding_builds' => 'Découverte des builds à traiter',
'found_n_builds' => '%d builds trouvés',
'skipping_build' => 'Saut du build %d - Un build sur le projet est déjà en cours.',
@ -398,7 +398,7 @@ PHPCI',
'n_emails_sent' => '%d emails envoyés.',
'n_emails_failed' => '%d emails dont l\'envoi a échoué.',
'unable_to_set_env' => 'Impossible d\'initialiser la variable d\'environnement',
'tag_created' => 'Tag créé par PHPCI : %s',
'tag_created' => 'Tag créé par PHP Censor : %s',
'x_built_at_x' => '%PROJECT_TITLE% construit à %BUILD_URI%',
'hipchat_settings' => 'Merci de définir une "room" et un "authToken" pour le plugin hipchat_notify',
'irc_settings' => 'Vous devez configurer un serveur, une "room" et un "nick".',

View file

@ -12,7 +12,7 @@ return [
'language' => 'Lingua',
// Log in:
'log_in_to_phpci' => 'Accedi a PHPCI',
'log_in_to_phpci' => 'Accedi a PHP Censor',
'login_error' => 'Indirizzo email o password errati',
'forgotten_password_link' => 'Hai dimenticato la tua password?',
'reset_emailed' => 'Ti abbiamo inviato un link via email per ripristinare la tua password.',
@ -25,7 +25,7 @@ return [
'reset_no_user_exists' => 'Non esiste nessun utente con questo indirizzo email, per favore prova ancora.',
'reset_email_body' => 'Ciao %s,
hai ricevuto questa email perché tu, o qualcun\'altro, ha richiesto un reset della password per PHPCI.
hai ricevuto questa email perché tu, o qualcun\'altro, ha richiesto un reset della password per PHP Censor.
Se questa mail è tua, per favore apri il seguente link per ripristinare la tua password: %ssession/reset-password/%d/%s
@ -33,9 +33,9 @@ altrimenti, per favore, ignora questa email e nessuna azione verrà intrapresa.
Grazie,
PHPCI',
PHP Censor',
'reset_email_title' => 'Ripristino della password di PHPCI per %s',
'reset_email_title' => 'Ripristino della password di PHP Censor per %s',
'reset_invalid' => 'Richeista di ripristino password non valida.',
'email_address' => 'Indirizzo Email',
'login' => 'Login / Email Address',
@ -108,7 +108,7 @@ PHPCI',
'project_title' => 'Titolo del Progetto',
'project_private_key' => 'Chiave provata da usare per accedere al repository
(lascia vuota per repository locali o remoti con accesso anonimo)',
'build_config' => 'condigurazione della build di PHPCI per questo progetto
'build_config' => 'condigurazione della build di PHP Censor per questo progetto
(se non puoi aggiungere il file phpci.yml nel repository di questo progetto)',
'default_branch' => 'Nome del branch di default',
'allow_public_status' => 'Vuoi rendere pubblica la pagina dello stato e l\'immagine per questo progetto?',
@ -233,21 +233,21 @@ PHPCI',
// Settings:
'settings_saved' => 'Le configurazioni sono state salvate.',
'settings_check_perms' => 'Le configurazioni non possono essere salvate, controlla i permessi del filer config.yml.',
'settings_cannot_write' => 'PHPCI non può scrivere il file config.yml, le configurazioni potrebbero non essere
'settings_cannot_write' => 'PHP Censor non può scrivere il file config.yml, le configurazioni potrebbero non essere
salvate correttamente fintanto che il problema non verrà risolto.',
'settings_github_linked' => 'Il tuo account GitHub è stato collegato.',
'settings_github_not_linked' => 'Il tuo account GitHub non può essere collegato.',
'build_settings' => 'Configurazioni della build',
'github_application' => 'Applicazione GitHub',
'github_sign_in' => 'Prima di poter iniziare ad usare GitHub, è necessario <a href="%s">collegarsi</a> e garantire
a PHPCI l\'accesso al tuo account.',
'github_phpci_linked' => 'PHPCI è stato collegato correttamente al tuo account GitHub.',
a PHP Censor l\'accesso al tuo account.',
'github_phpci_linked' => 'PHP Censor è stato collegato correttamente al tuo account GitHub.',
'github_where_to_find' => 'Dove trovare queste...',
'github_where_help' => 'Se sei il proprietario dell\'applicazione, puoi trovare queste informazioni nell\'area delle
configurazioni dell\'<a href="https://github.com/settings/applications">applicazione</a>.',
'email_settings' => 'Impostazioni Email',
'email_settings_help' => 'Prima che possa inviare le email con lo status PHPCI, devi configurare l\'SMTP qui sotto.',
'email_settings_help' => 'Prima che possa inviare le email con lo status PHP Censor, devi configurare l\'SMTP qui sotto.',
'application_id' => 'ID dell\'Applicazione',
'application_secret' => 'Secret dell\'Applicazione',
@ -271,7 +271,7 @@ PHPCI',
'3_hours' => '3 Ore',
// Plugins
'cannot_update_composer' => 'PHPCI non può aggiornare composer.json per te non essendo scrivibile.',
'cannot_update_composer' => 'PHP Censor non può aggiornare composer.json per te non essendo scrivibile.',
'x_has_been_removed' => '%s è stato rimosso.',
'x_has_been_added' => '%s è stato aggiunto al file composer.json per te, verrà installato la prossima volta che eseguirai
composer update.',
@ -288,7 +288,7 @@ PHPCI',
'search' => 'Cerca &raquo;',
// Installer
'installation_url' => 'URL di installazione di PHPCI',
'installation_url' => 'URL di installazione di PHP Censor',
'db_host' => 'Host del Database',
'db_name' => 'Nome del Database',
'db_user' => 'Username del Database',
@ -297,38 +297,38 @@ PHPCI',
'admin_pass' => 'Password dell\'amministratore',
'admin_email' => 'Email dell\'amministratore',
'config_path' => 'Percorso del file di configurazione',
'install_phpci' => 'Installa PHPCI',
'welcome_to_phpci' => 'Benvenuto in PHPCI',
'install_phpci' => 'Installa PHP Censor',
'welcome_to_phpci' => 'Benvenuto in PHP Censor',
'please_answer' => 'Per favore rispondi alle seguenti domande:',
'phpci_php_req' => 'PHPCI richiede come minimo PHP 5.3.8 per funzionare.',
'phpci_php_req' => 'PHP Censor richiede come minimo PHP 5.3.8 per funzionare.',
'extension_required' => 'Le estensioni richieste sono: %s',
'function_required' => 'PHPCI richiede di poter chiamare la funzione %s(). Questa funzionalità è disabibiltata nel
'function_required' => 'PHP Censor richiede di poter chiamare la funzione %s(). Questa funzionalità è disabibiltata nel
php.ini?',
'requirements_not_met' => 'PHPCI non può essere installato, non tutti i requisiti sono soddisfatti.
'requirements_not_met' => 'PHP Censor non può essere installato, non tutti i requisiti sono soddisfatti.
Per favore controlla gli errori riportati prima di proseguire.',
'must_be_valid_email' => 'Deve essere un indirizzo email valido.',
'must_be_valid_url' => 'Deve essere un URL valido.',
'enter_name' => 'Nome dell\'amministratore: ',
'enter_email' => 'Email dell\'amministratore: ',
'enter_password' => 'Password dell\'amministratore: ',
'enter_phpci_url' => 'L\'URL di PHPCI ("http://phpci.locale" ad esempio): ',
'enter_phpci_url' => 'L\'URL di PHP Censor ("http://phpci.locale" ad esempio): ',
'enter_db_host' => 'Per favore inserisci l\'host MySQL [localhost]: ',
'enter_db_name' => 'Per favore inserisci il nome MySQL [phpci]: ',
'enter_db_user' => 'Per favore inserisci l\'username MySQL [phpci]: ',
'enter_db_pass' => 'Per favore inserisci la password MySQL: ',
'could_not_connect' => 'PHPCI non può connettersi a MySQL con le informazioni fornite. Per favore prova ancora.',
'could_not_connect' => 'PHP Censor non può connettersi a MySQL con le informazioni fornite. Per favore prova ancora.',
'setting_up_db' => 'Configurzione del tuo database... ',
'user_created' => 'Account utente creato!',
'failed_to_create' => 'PHPCI non è riuscito a creare il tuo account amministrativo.',
'config_exists' => 'Il file di configurazione di PHPCI esiste e non è vuoto.',
'update_instead' => 'Se stai cercando di aggiornare PHPCI, per favore usa phpci:update.',
'failed_to_create' => 'PHP Censor non è riuscito a creare il tuo account amministrativo.',
'config_exists' => 'Il file di configurazione di PHP Censor esiste e non è vuoto.',
'update_instead' => 'Se stai cercando di aggiornare PHP Censor, per favore usa phpci:update.',
// Update
'update_phpci' => 'Aggiorna il database per riflettere le modifiche ai model.',
'updating_phpci' => 'Aggiornamenti del database di PHPCI: ',
'not_installed' => 'PHPCI sembra non essere installato.',
'install_instead' => 'Per favore installa PHPCI tramite phpci:install.',
'updating_phpci' => 'Aggiornamenti del database di PHP Censor: ',
'not_installed' => 'PHP Censor sembra non essere installato.',
'install_instead' => 'Per favore installa PHP Censor tramite phpci:install.',
// Poll Command
'poll_github' => 'Richiesta a GitHub per verificare se è necessario avviare una build.',
@ -350,7 +350,7 @@ PHPCI',
'branch_name_option' => 'Branch to build',
// Run Command
'run_all_pending' => 'Esegui tutte le build in attesa su PHPCI.',
'run_all_pending' => 'Esegui tutte le build in attesa su PHP Censor.',
'finding_builds' => 'Ricerca delel build da processare',
'found_n_builds' => 'Trovate %d build',
'skipping_build' => 'Saltata la build %d - La build del progetto è già in corso.',
@ -384,7 +384,7 @@ PHPCI',
'n_emails_sent' => '%d email inviate.',
'n_emails_failed' => '%d email da inviare fallite.',
'unable_to_set_env' => 'Errore nel settare la variabile di ambiente',
'tag_created' => 'Tag creato da PHPCI: %s',
'tag_created' => 'Tag creato da PHP Censor: %s',
'x_built_at_x' => '%PROJECT_TITLE% buildato in %BUILD_URI%',
'hipchat_settings' => 'Per favore definire la stanza e authToken per il plugin hipchat_notify',
'irc_settings' => 'Devi configurare server, stanza e nick.',

View file

@ -12,7 +12,7 @@ return [
'language' => 'Taal',
// Log in:
'log_in_to_phpci' => 'Log in op PHPCI',
'log_in_to_phpci' => 'Log in op PHP Censor',
'login_error' => 'Incorrect e-mailadres of wachtwoord',
'forgotten_password_link' => 'Wachtwoord vergeten?',
'reset_emailed' => 'We hebben je een link gemaild om je wachtwoord opnieuw in te stellen.',
@ -26,7 +26,7 @@ je een link on je wachtwoord te resetten.',
'reset_no_user_exists' => 'Er bestaat geen gebruiker met dit e-mailadres, gelieve opnieuw te proberen.',
'reset_email_body' => 'Hallo %s,
Je ontvangt deze email omdat jij, of iemand anders, je wachtwoord voor PHPCI opnieuw wenst in te stellen.
Je ontvangt deze email omdat jij, of iemand anders, je wachtwoord voor PHP Censor opnieuw wenst in te stellen.
Indien jij dit was, klik op deze link op je wachtwoord opnieuw in te stellen: %ssession/reset-password/%d/%s
@ -34,9 +34,9 @@ Zoniet, negeer deze e-mail en er zal geen verdere actie ondernomen worden.
Bedankt,
PHPCI',
PHP Censor',
'reset_email_title' => 'PHPCI wachtwoord reset voor %s',
'reset_email_title' => 'PHP Censor wachtwoord reset voor %s',
'reset_invalid' => 'Ongeldig wachtwoord reset verzoek',
'email_address' => 'E-mailadres',
'login' => 'Login / Email Address',
@ -110,7 +110,7 @@ van je gekozen source code hosting platform',
'project_title' => 'Projecttitel',
'project_private_key' => 'Private key voor toegang tot repository
(laat leeg voor lokaal en/of anonieme externen)',
'build_config' => 'PHPCI build configuratie voor dit project
'build_config' => 'PHP Censor build configuratie voor dit project
(indien je geen phpci.yml bestand aan de project repository kan toevoegen)',
'default_branch' => 'Standaard branch naam',
'allow_public_status' => 'Publieke statuspagina en afbeelding beschikbaar maken voor dit project?',
@ -232,21 +232,21 @@ Services</a> sectie van je Bitbucket repository toegevoegd worden.',
// Settings:
'settings_saved' => 'Je instellingen werden opgeslagen.',
'settings_check_perms' => 'Je instellingen konden niet worden opgeslagen, controleer de permissies van je config.yml bestand.',
'settings_cannot_write' => 'PHPCI kan niet schrijven naar je config.yml bestand, instellingen worden mogelijks
'settings_cannot_write' => 'PHP Censor kan niet schrijven naar je config.yml bestand, instellingen worden mogelijks
niet goed opgeslagen tot dit opgelost is.',
'settings_github_linked' => 'Je GitHub account werd gelinkt.',
'settings_github_not_linked' => 'Je GitHub account kon niet gelinkt worden.',
'build_settings' => 'Build instellingen',
'github_application' => 'GitHub toepassing',
'github_sign_in' => 'Vooraleer je GitHub kan gebruiken, dien je <a href="%s">in te loggen</a> en
PHPCI toegang te verlenen tot je account.',
PHP Censor toegang te verlenen tot je account.',
'github_phpci_linked' => 'PHP werd succesvol gelinkt aan je GitHub account.',
'github_where_to_find' => 'Waar zijn deze te vinden...',
'github_where_help' => 'Indien je eigenaar bent van de toepassing die je wens te gebruiken, kan je deze informatie
in je <a href="https://github.com/settings/applications">applications</a> instellingen pagina vinden.',
'email_settings' => 'E-mail instellingen',
'email_settings_help' => 'Vooraleer PHPCI je build status e-mails kan sturen,
'email_settings_help' => 'Vooraleer PHP Censor je build status e-mails kan sturen,
dien je eerst je SMTP instellingen te configureren.',
'application_id' => 'Toepassings ID',
@ -271,7 +271,7 @@ dien je eerst je SMTP instellingen te configureren.',
'3_hours' => '3 uur',
// Plugins
'cannot_update_composer' => 'PHPCI kan composer.json niet aanpassen gezien het niet schrijfbaar is.',
'cannot_update_composer' => 'PHP Censor kan composer.json niet aanpassen gezien het niet schrijfbaar is.',
'x_has_been_removed' => '%s werd verwijderd.',
'x_has_been_added' => '%s werd toegevoegd aan composer.json en zal geïnstalleerd worden de volgende
keer je composer update uitvoert.',
@ -288,7 +288,7 @@ keer je composer update uitvoert.',
'search' => 'Zoek &raquo;',
// Installer
'installation_url' => 'PHPCI installatie URL',
'installation_url' => 'PHP Censor installatie URL',
'db_host' => 'Database host',
'db_name' => 'Database naam',
'db_user' => 'Database gebruikersnaam',
@ -297,37 +297,37 @@ keer je composer update uitvoert.',
'admin_pass' => 'Administrator wachtwoord',
'admin_email' => 'Administrator e-mailadres',
'config_path' => 'Pad naar configuratiebestand',
'install_phpci' => 'Installeer PHPCI',
'welcome_to_phpci' => 'Welkom bij PHPCI',
'install_phpci' => 'Installeer PHP Censor',
'welcome_to_phpci' => 'Welkom bij PHP Censor',
'please_answer' => 'Gelieve onderstaande vragen te beantwoorden:',
'phpci_php_req' => 'PHPCI heeft ten minste PHP 5.3.8 nodig om te werken.',
'phpci_php_req' => 'PHP Censor heeft ten minste PHP 5.3.8 nodig om te werken.',
'extension_required' => 'Extensie benodigd: %s',
'function_required' => 'PHPCI moet functie %s() kunnen aanroepen. Is deze uitgeschakeld in php.ini?',
'requirements_not_met' => 'PHPCI kan niet worden geïnstalleerd omdat niet aan alle vereisten is voldaan.
'function_required' => 'PHP Censor moet functie %s() kunnen aanroepen. Is deze uitgeschakeld in php.ini?',
'requirements_not_met' => 'PHP Censor kan niet worden geïnstalleerd omdat niet aan alle vereisten is voldaan.
Gelieve de fouten na te kijken vooraleer verder te gaan.',
'must_be_valid_email' => 'Moet een geldig e-mailadres zijn.',
'must_be_valid_url' => 'Moet een geldige URL zijn.',
'enter_name' => 'Administrator naam: ',
'enter_email' => 'Administrator e-mailadres: ',
'enter_password' => 'Administrator wachtwoord: ',
'enter_phpci_url' => 'Je PHPCI URL (bijvoorbeeld "http://phpci.local"): ',
'enter_phpci_url' => 'Je PHP Censor URL (bijvoorbeeld "http://phpci.local"): ',
'enter_db_host' => 'Vul je MySQL host in [localhost]: ',
'enter_db_name' => 'Vul je MySQL databasenaam in [phpci]: ',
'enter_db_user' => 'Vul je MySQL gebruikersnaam in [phpci]: ',
'enter_db_pass' => 'Vul je MySQL watchtwoord in: ',
'could_not_connect' => 'PHPCI kon met deze gegevens geen verbinding maken met MySQL. Gelieve opnieuw te proberen.',
'could_not_connect' => 'PHP Censor kon met deze gegevens geen verbinding maken met MySQL. Gelieve opnieuw te proberen.',
'setting_up_db' => 'Database wordt aangemaakt...',
'user_created' => 'Gebruikersprofiel aangemaakt!',
'failed_to_create' => 'PHPCI kon je administratorprofiel niet aanmaken.',
'config_exists' => 'Het PHPCI configuratiebestand bestaat en is niet leeg.',
'update_instead' => 'Liever phpci:update te gebruiken indien je PHPCI probeerde te updaten, ',
'failed_to_create' => 'PHP Censor kon je administratorprofiel niet aanmaken.',
'config_exists' => 'Het PHP Censor configuratiebestand bestaat en is niet leeg.',
'update_instead' => 'Liever phpci:update te gebruiken indien je PHP Censor probeerde te updaten, ',
// Update
'update_phpci' => 'Update de database naar het beeld van gewijzigde modellen.',
'updating_phpci' => 'PHPCI database wordt geüpdatet:',
'not_installed' => 'PHPCI lijkt niet geïnstalleerd te zijn.',
'install_instead' => 'Gelieve PHPCI via phpci:install te installeren.',
'updating_phpci' => 'PHP Censor database wordt geüpdatet:',
'not_installed' => 'PHP Censor lijkt niet geïnstalleerd te zijn.',
'install_instead' => 'Gelieve PHP Censor via phpci:install te installeren.',
// Poll Command
'poll_github' => 'Poll GitHub om te controleren of we een build moeten starten.',
@ -349,7 +349,7 @@ Gelieve de fouten na te kijken vooraleer verder te gaan.',
'branch_name_option' => 'Branch to build',
// Run Command
'run_all_pending' => 'Voer alle wachtende PHPCI builds uit.',
'run_all_pending' => 'Voer alle wachtende PHP Censor builds uit.',
'finding_builds' => 'Zoekt builds om te verwerken',
'found_n_builds' => '%d builds gevonden',
'skipping_build' => 'Build %d overslaan - Project build reeds aan de gang.',
@ -383,7 +383,7 @@ Gelieve de fouten na te kijken vooraleer verder te gaan.',
'n_emails_sent' => '%d e-mails versuurd.',
'n_emails_failed' => '%d e-mails faalden te versturen.',
'unable_to_set_env' => 'Niet geslaagd om environment variable in te stellen',
'tag_created' => 'Tag aangemaakt door PHPCI: %s',
'tag_created' => 'Tag aangemaakt door PHP Censor: %s',
'x_built_at_x' => '%PROJECT_TITLE% built op %BUILD_URI%',
'hipchat_settings' => 'Gelieve kamer & authToken voor hipchat_notify plugin te definiëren',
'irc_settings' => 'Je dient server, kamer & nick op te geven.',

View file

@ -12,7 +12,7 @@ return [
'language' => 'Język',
// Log in:
'log_in_to_phpci' => 'Zaloguj się do PHPCI',
'log_in_to_phpci' => 'Zaloguj się do PHP Censor',
'login_error' => 'Nieprawidłowy email lub hasło',
'forgotten_password_link' => 'Zapomniałeś hasła?',
'reset_emailed' => 'Email z linkiem resetującym hasło został wysłany.',
@ -26,7 +26,7 @@ resetujący hasło.',
'reset_no_user_exists' => 'Użytkownik o takim emailu nie istnieje. Spróbuj jeszcze raz.',
'reset_email_body' => 'Witaj %s,
Otrzymałeś ten email ponieważ Ty, lub ktoś inny, wysłał prośbę o zmianę hasła w PHPCI.
Otrzymałeś ten email ponieważ Ty, lub ktoś inny, wysłał prośbę o zmianę hasła w PHP Censor.
Jeśli to faktycznie Ty, kliknij w następujący link aby zresetować hasło: %ssession/reset-password/%d/%s
@ -34,9 +34,9 @@ Jeśli nie, zignoruj tego emaila i wszystko pozostanie bez zmian,
Pozdrawiamy,
PHPCI',
PHP Censor',
'reset_email_title' => 'Reset Hasła PHPCI dla %s',
'reset_email_title' => 'Reset Hasła PHP Censor dla %s',
'reset_invalid' => 'Prośba o zmianę hasła jest nieważna.',
'email_address' => 'Adres email',
'login' => 'Login / Email Address',
@ -111,7 +111,7 @@ od wybranego kodu źródłowego platformy hostingowej.',
'project_title' => 'Tytuł Projektu',
'project_private_key' => 'Prywanty klucz dostępu do repozytoriów
(pozostaw puste pole dla zdalnych lokalnych i/lub anonimowych)',
'build_config' => 'PHPCI zbudowało config dla tego projektu
'build_config' => 'PHP Censor zbudowało config dla tego projektu
(jeśli nie możesz dodać pliku phpci.yml do repozytorium projektu)',
'default_branch' => 'Domyślna nazwa gałęzi',
'allow_public_status' => 'Włączyć status publiczny dla tego projektu?',
@ -235,20 +235,20 @@ Services</a> repozytoria Bitbucket.',
// Settings:
'settings_saved' => 'Ustawienia zostały zapisane.',
'settings_check_perms' => 'Twoje ustawienia nie mogły zostać zapisane. Sprawdź uprawnienia do pliku config.yml.',
'settings_cannot_write' => 'PHPCI nie może zapisać do pliku config.yml. Dopóty nie będzie można poprawnie zachować ustawie,
'settings_cannot_write' => 'PHP Censor nie może zapisać do pliku config.yml. Dopóty nie będzie można poprawnie zachować ustawie,
dopóki nie będzie to naprawione.',
'settings_github_linked' => 'Połaczono z Twoim kontem Github',
'settings_github_not_linked' => 'Nie udało się połaczyć z Twoim kontem Github',
'build_settings' => 'Ustawienia budowania',
'github_application' => 'Aplikacja GitHub',
'github_sign_in' => 'Zanim będzie można zacząć korzystać z GitHub, musisz najpierw <a href="%s">Sign in</a>, a następnie udzielić dostęp dla PHPCI do Twojego konta.',
'github_phpci_linked' => 'PHPCI zostało pomyślnie połączone z konten GitHub.',
'github_sign_in' => 'Zanim będzie można zacząć korzystać z GitHub, musisz najpierw <a href="%s">Sign in</a>, a następnie udzielić dostęp dla PHP Censor do Twojego konta.',
'github_phpci_linked' => 'PHP Censor zostało pomyślnie połączone z konten GitHub.',
'github_where_to_find' => 'Gdzie można znaleźć...',
'github_where_help' => 'Jeśli to jest Twoja aplikacjia i chcesz jej użyć to więcej informacji znajdziesz w sekcji ustawień:
<a href="https://github.com/settings/applications">applications</a>',
'email_settings' => 'Ustawienia Email',
'email_settings_help' => 'Aby PHPCI mógł wysyłać emaile z stanem budowy, musisz najpierw skonfigurować poniższe ustawienia SMTP.',
'email_settings_help' => 'Aby PHP Censor mógł wysyłać emaile z stanem budowy, musisz najpierw skonfigurować poniższe ustawienia SMTP.',
'application_id' => 'ID Aplikacji',
'application_secret' => 'Klucz Secret aplikacji',
@ -272,7 +272,7 @@ dopóki nie będzie to naprawione.',
'3_hours' => '3 Godzinach',
// Plugins
'cannot_update_composer' => 'PHPCI nie może zaktualizować copmposer.json, ponieważ nie ma uprawnień do zapisu.',
'cannot_update_composer' => 'PHP Censor nie może zaktualizować copmposer.json, ponieważ nie ma uprawnień do zapisu.',
'x_has_been_removed' => 'Usunięto %s. ',
'x_has_been_added' => 'Dodano %s do composer.json. Zostanie zainstalowane po
wywołaniu polecenia composer update.',
@ -289,7 +289,7 @@ wywołaniu polecenia composer update.',
'search' => 'Szukaj &raquo;',
// Installer
'installation_url' => 'URL instalacyjny PHPCI',
'installation_url' => 'URL instalacyjny PHP Censor',
'db_host' => 'Host Bazy Danych',
'db_name' => 'Nazwa Bazy Danych',
'db_user' => 'Nazwa Użytkownika Bazy Danych',
@ -298,37 +298,37 @@ wywołaniu polecenia composer update.',
'admin_pass' => 'Hasło Admina',
'admin_email' => 'Adres Email Admina',
'config_path' => 'Ścieżka Pliku Config',
'install_phpci' => 'Zainstaluj PHPCI',
'welcome_to_phpci' => 'Witaj w PHPCI',
'install_phpci' => 'Zainstaluj PHP Censor',
'welcome_to_phpci' => 'Witaj w PHP Censor',
'please_answer' => 'Odpowiedz na poniższe pytania:',
'phpci_php_req' => 'PHPCI wymaga przynajmniej PHP 5.3.8 do prawidłowego funkcjonowania.',
'phpci_php_req' => 'PHP Censor wymaga przynajmniej PHP 5.3.8 do prawidłowego funkcjonowania.',
'extension_required' => 'Wymagane rozszerzenie: %s',
'function_required' => 'PHPCI musi mieć możliwość wywołania funkcji %s(). Czy ona jest wyłączona w php.ini?',
'requirements_not_met' => 'Nie można zainstalować PHPCI, ponieważ nie wszystkie wymagania zostały spełnione.
'function_required' => 'PHP Censor musi mieć możliwość wywołania funkcji %s(). Czy ona jest wyłączona w php.ini?',
'requirements_not_met' => 'Nie można zainstalować PHP Censor, ponieważ nie wszystkie wymagania zostały spełnione.
Przejrzyj powyższą listę błędów przed kontynuowaniem.',
'must_be_valid_email' => 'Poprawny adres email jest wymagany.',
'must_be_valid_url' => 'Poprawny URL jest wymagany.',
'enter_name' => 'Imię Admina: ',
'enter_email' => 'Email Admina: ',
'enter_password' => 'Hasło Admina: ',
'enter_phpci_url' => 'URL PHPCI (na przykład "http://phpci.local"): ',
'enter_phpci_url' => 'URL PHP Censor (na przykład "http://phpci.local"): ',
'enter_db_host' => 'Wpisz hosta MySQL [host lokalny]: ',
'enter_db_name' => 'Wpisz nazwę bazy danych MySQL [phpci]: ',
'enter_db_user' => 'Wpisz nazwę użytkownika MySQL [phpci]: ',
'enter_db_pass' => 'Wpisz hasło MySQL: ',
'could_not_connect' => 'Z podanymi ustawieniami PHPCI nie udało się połączyć z MySQL. Spróbuj ponownie.',
'could_not_connect' => 'Z podanymi ustawieniami PHP Censor nie udało się połączyć z MySQL. Spróbuj ponownie.',
'setting_up_db' => 'Ustawianie Twojej bazy danych...',
'user_created' => 'Utworzono konto użytkownika!',
'failed_to_create' => 'PHPCI nie udało się założyc Twojego konta administratora.',
'config_exists' => 'Plik konfiguracji PHPCI istnieje i nie jest pusty.',
'update_instead' => 'Jeśli próbowałeś zaktualizować PHPCI, użyj phpci:update.',
'failed_to_create' => 'PHP Censor nie udało się założyc Twojego konta administratora.',
'config_exists' => 'Plik konfiguracji PHP Censor istnieje i nie jest pusty.',
'update_instead' => 'Jeśli próbowałeś zaktualizować PHP Censor, użyj phpci:update.',
// Update
'update_phpci' => 'Zaktualizuj bazę danych zgodnie ze zmodyfikowanymi modelami.',
'updating_phpci' => 'Aktualizacja bazy danych PHPCI:',
'not_installed' => 'Wygląda na to, że PHPCI nie jest zainstalowane.',
'install_instead' => 'Proszę zainstalować PHPCI poprzez phpci:install',
'updating_phpci' => 'Aktualizacja bazy danych PHP Censor:',
'not_installed' => 'Wygląda na to, że PHP Censor nie jest zainstalowane.',
'install_instead' => 'Proszę zainstalować PHP Censor poprzez phpci:install',
// Poll Command
'poll_github' => 'Odpytuj GitHub, aby sprawdzić czy należy uruchomić budowę.',
@ -350,7 +350,7 @@ Przejrzyj powyższą listę błędów przed kontynuowaniem.',
'branch_name_option' => 'Gałąź do budowania',
// Run Command
'run_all_pending' => 'Uruchom wszystkie oczekujące budowy w PHPCI',
'run_all_pending' => 'Uruchom wszystkie oczekujące budowy w PHP Censor',
'finding_builds' => 'Szukam budów do przetwarzania.',
'found_n_builds' => 'Znaleziono %d budowań',
'skipping_build' => 'Budowanie %d jest pomijane - Budowanie projektu jest już w toku',
@ -384,7 +384,7 @@ Przejrzyj powyższą listę błędów przed kontynuowaniem.',
'n_emails_sent' => 'Wysłano %d emaili.',
'n_emails_failed' => 'Nie wysłano %d emaili.',
'unable_to_set_env' => 'Nie można ustawić zmiennej środowiskowej',
'tag_created' => 'Tag stworzony przez PHPCI: %s',
'tag_created' => 'Tag stworzony przez PHP Censor: %s',
'x_built_at_x' => '%PROJECT_TITLE% zbudowano pod %BUILD_URI%',
'hipchat_settings' => 'Proszę podać pokój i authToken dla pluginu hipchat_notify.',
'irc_settings' => 'Musisz skonfigurować serwer, pokój i swoją nazwę.',

View file

@ -12,7 +12,7 @@ return [
'language' => 'язык',
// Log in:
'log_in_to_phpci' => 'Войти в PHPCI',
'log_in_to_phpci' => 'Войти в PHP Censor',
'login_error' => 'Неправильный email или пароль',
'forgotten_password_link' => 'Забыли пароль?',
'reset_emailed' => 'Вы получите письмо со ссылкой на сброс пароля.',
@ -25,7 +25,7 @@ return [
'reset_no_user_exists' => 'Пользователь с таким email-адресом не найден, пожалуйста, попробуйте еще раз.',
'reset_email_body' => 'Привет %s,
Вы получили это письмо, потому что вы или кто-то другой запросили сброс пароля в PHPCI.
Вы получили это письмо, потому что вы или кто-то другой запросили сброс пароля в PHP Censor.
Если это были вы, пожалуйста, перейдите по ссылке для сброса пароля: %ssession/reset-password/%d/%s,
@ -33,9 +33,9 @@ return [
Спасибо,
PHPCI',
PHP Censor',
'reset_email_title' => 'Сброс пароля PHPCI для %s',
'reset_email_title' => 'Сброс пароля PHP Censor для %s',
'reset_invalid' => 'Некорректный запрос на сброс пароля.',
'email_address' => 'Email',
'login' => 'Логин / Email',
@ -109,7 +109,7 @@ PHPCI',
'project_title' => 'Название проекта',
'project_private_key' => 'Приватный ключ для доступа к репозиторию
(оставьте поле пустым для локального использования и/или анонимного доступа)',
'build_config' => 'Конфигурация сборки проекта для PHPCI
'build_config' => 'Конфигурация сборки проекта для PHP Censor
(если вы не добавили файл phpci.yml в репозиторий вашего проекта)',
'default_branch' => 'Ветка по умолчанию',
'allow_public_status' => 'Разрешить публичный статус и изображение (статуса) для проекта',
@ -243,20 +243,20 @@ PHPCI',
// Settings:
'settings_saved' => 'Ваши настройки были сохранены.',
'settings_check_perms' => 'Ваши настройки не могут быть сохранены, проверьте права на файл настроек config.yml.',
'settings_cannot_write' => 'PHPCI не может записать config.yml файл, настройки не могут быть сохранены корректно, пока это не будет исправлено.',
'settings_cannot_write' => 'PHP Censor не может записать config.yml файл, настройки не могут быть сохранены корректно, пока это не будет исправлено.',
'settings_github_linked' => 'Ваш GitHub аккаунт привязан.',
'settings_github_not_linked' => 'Ваш GitHub аккаунт не может быть привязан.',
'build_settings' => 'Настройки сборки',
'github_application' => 'GitHub приложение',
'github_sign_in' => 'Перед тем как начать использовать GitHub аккаунт, вам необходимо <a href="%s">войти</a> и разрешить доступ для
PHPCI до вашего аккаунта.',
'github_phpci_linked' => 'PHPCI успешно привязал GitHub аккаунт.',
PHP Censor до вашего аккаунта.',
'github_phpci_linked' => 'PHP Censor успешно привязал GitHub аккаунт.',
'github_where_to_find' => 'Где это найти...',
'github_where_help' => 'Если вы владелец приложения, которое вы хотели бы использовать, то вы можете найти информацию об этом в разделе
<a href="https://github.com/settings/applications">applications</a> настроек.',
'email_settings' => 'Настройки email',
'email_settings_help' => 'Перед тем, как PHPCI начнет отсылать статус сборок по почте,
'email_settings_help' => 'Перед тем, как PHP Censor начнет отсылать статус сборок по почте,
вам необходимо настроить параметры SMTP ниже.',
'application_id' => 'ID приложения',
@ -281,7 +281,7 @@ PHPCI',
'3_hours' => '3 часов',
// Plugins
'cannot_update_composer' => 'PHPCI не может обновить composer.json, если он недоступен на запись.',
'cannot_update_composer' => 'PHP Censor не может обновить composer.json, если он недоступен на запись.',
'x_has_been_removed' => '%s был удален.',
'x_has_been_added' => '%s был добавлен в composer.json и будет установлен, как только вы запустите composer update.',
'enabled_plugins' => 'Включенные плагины',
@ -320,7 +320,7 @@ PHPCI',
'finished' => 'Закончилась',
// Installer
'installation_url' => 'URL-адрес PHPCI для установки',
'installation_url' => 'URL-адрес PHP Censor для установки',
'db_host' => 'Хост базы данных',
'db_name' => 'Имя базы данных',
'db_user' => 'Пользователь базы данных',
@ -329,38 +329,38 @@ PHPCI',
'admin_pass' => 'Пароль администратора',
'admin_email' => 'Email администратора',
'config_path' => 'Путь до файла конфигурации',
'install_phpci' => 'Установить PHPCI',
'welcome_to_phpci' => 'Добро пожаловать в PHPCI',
'install_phpci' => 'Установить PHP Censor',
'welcome_to_phpci' => 'Добро пожаловать в PHP Censor',
'please_answer' => 'Пожалуйста, ответьте на несколько вопросов:',
'phpci_php_req' => 'PHPCI необходима для работы версия PHP не ниже 5.3.8.',
'phpci_php_req' => 'PHP Censor необходима для работы версия PHP не ниже 5.3.8.',
'extension_required' => 'Требуется расширение PHP: %s',
'function_required' => 'PHPCI необходима возможность вызывать %s() функцию. Она выключена в php.ini?',
'requirements_not_met' => 'PHPCI не может быть установлен, пока не все требования выполнены.
'function_required' => 'PHP Censor необходима возможность вызывать %s() функцию. Она выключена в php.ini?',
'requirements_not_met' => 'PHP Censor не может быть установлен, пока не все требования выполнены.
Пожалуйста, просмотрите возникшие ошибки перед тем, как продолжить.',
'must_be_valid_email' => 'Должен быть корректным email-адресом.',
'must_be_valid_url' => 'Должен быть корректным URL-адресом.',
'enter_name' => 'Имя администратора: ',
'enter_email' => 'Email администратора: ',
'enter_password' => 'Пароль администратора: ',
'enter_phpci_url' => 'URL-адрес вашего PHPCI (например: "http://phpci.local"): ',
'enter_phpci_url' => 'URL-адрес вашего PHP Censor (например: "http://phpci.local"): ',
'enter_db_host' => 'Пожалуйста, введите хост MySQL [localhost]: ',
'enter_db_port' => 'Пожалуйста, введите порт MySQL [3306]: ',
'enter_db_name' => 'Пожалуйста, введите имя базы данных MySQL [phpci]: ',
'enter_db_user' => 'Пожалуйста, введите пользователя MySQL [phpci]: ',
'enter_db_pass' => 'Пожалуйста, введите пароль MySQL: ',
'could_not_connect' => 'PHPCI не может подключится к MySQL с переданными параметрами. Пожалуйста, попробуйте еще раз.',
'could_not_connect' => 'PHP Censor не может подключится к MySQL с переданными параметрами. Пожалуйста, попробуйте еще раз.',
'setting_up_db' => 'Установка базы данных... ',
'user_created' => 'Аккаунт пользователя создан!',
'failed_to_create' => 'PHPCI не удалось создать аккаунт администратора.',
'config_exists' => 'Файл конфигурации PHPCI уже существует, и он не пустой.',
'update_instead' => 'Если вы собираетесь обновить PHPCI, пожалуйста, используйте команду phpci:update.',
'failed_to_create' => 'PHP Censor не удалось создать аккаунт администратора.',
'config_exists' => 'Файл конфигурации PHP Censor уже существует, и он не пустой.',
'update_instead' => 'Если вы собираетесь обновить PHP Censor, пожалуйста, используйте команду phpci:update.',
// Update
'update_phpci' => 'Обновите базу данных с учетом обновленных моделей.',
'updating_phpci' => 'Обновление базы данных PHPCI: ',
'not_installed' => 'PHPCI не может быть установлен.',
'install_instead' => 'Пожалуйста, установите PHPCI с помощью команды phpci:install.',
'updating_phpci' => 'Обновление базы данных PHP Censor: ',
'not_installed' => 'PHP Censor не может быть установлен.',
'install_instead' => 'Пожалуйста, установите PHP Censor с помощью команды phpci:install.',
// Poll Command
'poll_github' => 'Опрос GitHub для проверки запуска сборки.',
@ -382,7 +382,7 @@ PHPCI',
'branch_name_option' => 'Ветка для сборки',
// Run Command
'run_all_pending' => 'Запустить все ожидающие PHPCI сборки.',
'run_all_pending' => 'Запустить все ожидающие PHP Censor сборки.',
'finding_builds' => 'Поиск сборок для запуска',
'found_n_builds' => 'Найдено сборок: %d',
'skipping_build' => 'Сборка %d пропущена - Сборка проекта уже идет.',
@ -417,7 +417,7 @@ PHPCI',
'n_emails_sent' => 'Писем отправлено: %d.',
'n_emails_failed' => 'Писем не удалось отправить: %d.',
'unable_to_set_env' => 'Невозможно установить переменную окружения',
'tag_created' => 'Метка создана PHPCI: %s',
'tag_created' => 'Метка создана PHP Censor: %s',
'x_built_at_x' => '%PROJECT_TITLE% собран: %BUILD_URI%',
'hipchat_settings' => 'Пожалуйста, укажите комнату и токен (authToken) для плагина hipchat_notify',
'irc_settings' => 'Вы должны задать сервер, комнату и ник.',

View file

@ -12,7 +12,7 @@ return [
'language' => 'Мова',
// Log in:
'log_in_to_phpci' => 'Увійти до PHPCI',
'log_in_to_phpci' => 'Увійти до PHP Censor',
'login_error' => 'Невірний email або пароль',
'forgotten_password_link' => 'Забули свій пароль?',
'reset_emailed' => 'Ми відправили вам посилання для скидання вашого паролю.',
@ -26,7 +26,7 @@ return [
'reset_no_user_exists' => 'Не існує користувача з такою email адресою, будь ласка, повторіть знову.',
'reset_email_body' => 'Привіт, %s,
Ви отримали цей лист, тому що ви або хтось інший запросили скидання пароля в PHPCI.
Ви отримали цей лист, тому що ви або хтось інший запросили скидання пароля в PHP Censor.
Якщо це були ви, будь ласка, перейдіть за посиланням нижче для скидання пароля: %ssession/reset-password/%d/%s,
@ -34,9 +34,9 @@ return [
Дякуємо,
PHPCI',
PHP Censor',
'reset_email_title' => 'Скидання пароль PHPCI для %s',
'reset_email_title' => 'Скидання пароль PHP Censor для %s',
'reset_invalid' => 'Невірний запит скидання паролю.',
'email_address' => 'Email адреса',
'login' => 'Логин / Email адреса',
@ -109,7 +109,7 @@ PHPCI',
'project_title' => 'Заголовок проекту',
'project_private_key' => 'Приватний ключ доступу до репозиторія
(залишити поле порожнім для локального використання та/або анонімного доступу)',
'build_config' => 'Конфігурація збірки цього проекта для PHPCI
'build_config' => 'Конфігурація збірки цього проекта для PHP Censor
(якщо ви не додали файл phpci.yml до репозиторію вашого проекту)',
'default_branch' => 'Назва гілки за замовчуванням',
'allow_public_status' => 'Увімкнути публічну сторінку статусу та зображення для цього проекта?',
@ -232,21 +232,21 @@ PHPCI',
// Settings:
'settings_saved' => 'Ваші налаштування були збережені.',
'settings_check_perms' => 'Ваші налаштування не можуть бути збережені, перевірте права на ваш файл налаштувань config.yml.',
'settings_cannot_write' => 'PHPCI не може записати файл config.yml, налаштування не будуть коректно збережені,
'settings_cannot_write' => 'PHP Censor не може записати файл config.yml, налаштування не будуть коректно збережені,
доки це не буде виправлено.',
'settings_github_linked' => 'Ваш GitHub аккаунт було підключено.',
'settings_github_not_linked' => 'Ваш GitHub аккаунт не може бути підключеним.',
'build_settings' => 'Налаштування збірки',
'github_application' => 'GitHub додаток',
'github_sign_in' => 'Перед початком користування GitHub, вам необхідно <a href="%s">увійти</a> та надати
доступ для PHPCI до вашого аккаунту.',
'github_phpci_linked' => 'PHPCI успішно зв\'язаний з аккаунтом GitHub.',
доступ для PHP Censor до вашого аккаунту.',
'github_phpci_linked' => 'PHP Censor успішно зв\'язаний з аккаунтом GitHub.',
'github_where_to_find' => 'Де це знайти...',
'github_where_help' => 'Якщо ви є власником додатку, який би ви хотіли використовувати, то ви можете знайти інформацію про це у розділі
налаштувань ваших <a href="https://github.com/settings/applications">додатків</a>.',
'email_settings' => 'Налаштування Email',
'email_settings_help' => 'Перед тим, як PHPCI почне надсилати статуси збірок на email,
'email_settings_help' => 'Перед тим, як PHP Censor почне надсилати статуси збірок на email,
вам необхідно налаштувати параметри SMTP нижче.',
'application_id' => 'ID додатка',
@ -271,7 +271,7 @@ PHPCI',
'3_hours' => '3 години',
// Plugins
'cannot_update_composer' => 'PHPCI не може оновити composer.json, оскільки він не є доступним для запису.',
'cannot_update_composer' => 'PHP Censor не може оновити composer.json, оскільки він не є доступним для запису.',
'x_has_been_removed' => '%s було видалено.',
'x_has_been_added' => '%s був доданий до composer.json і буде встановлений, як тільки
ви виконаєте composer update.',
@ -288,7 +288,7 @@ PHPCI',
'search' => 'Знайти &raquo;',
// Installer
'installation_url' => 'URL встановлення PHPCI',
'installation_url' => 'URL встановлення PHP Censor',
'db_host' => 'Хост бази даних',
'db_name' => 'Назва бази даних',
'db_user' => 'Ім’я користувача бази даних',
@ -297,37 +297,37 @@ PHPCI',
'admin_pass' => 'Пароль адміністратора',
'admin_email' => 'Email адреса адміністратора',
'config_path' => 'Шлях до файла конфігурації',
'install_phpci' => 'Встановити PHPCI',
'welcome_to_phpci' => 'Ласкаво просимо до PHPCI',
'install_phpci' => 'Встановити PHP Censor',
'welcome_to_phpci' => 'Ласкаво просимо до PHP Censor',
'please_answer' => 'Будь ласка, дайте відповідь на наступні питання:',
'phpci_php_req' => 'PHPCI вимагає для роботи, принаймні, версію PHP 5.3.8.',
'phpci_php_req' => 'PHP Censor вимагає для роботи, принаймні, версію PHP 5.3.8.',
'extension_required' => 'Необхідне розширення: %s',
'function_required' => 'PHPCI необхідна можливість викликати функцію %s(). Вона відключена у php.ini?',
'requirements_not_met' => 'Неможливо встановити PHPCI, оскільки не всі вимоги виконані.
'function_required' => 'PHP Censor необхідна можливість викликати функцію %s(). Вона відключена у php.ini?',
'requirements_not_met' => 'Неможливо встановити PHP Censor, оскільки не всі вимоги виконані.
Будь ласка, продивіться наявні помилки перед тим, як продовжити.',
'must_be_valid_email' => 'Повинно бути коректною email адресою.',
'must_be_valid_url' => 'Повинно бути коректним URL.',
'enter_name' => 'Ім’я адміністратора: ',
'enter_email' => 'Email адміністратора: ',
'enter_password' => 'Пароль адміністратора: ',
'enter_phpci_url' => 'URL адреса вашого PHPCI (наприклад, "http://phpci.local"): ',
'enter_phpci_url' => 'URL адреса вашого PHP Censor (наприклад, "http://phpci.local"): ',
'enter_db_host' => 'Будь ласка, введіть хост MySQL [localhost]: ',
'enter_db_name' => 'Будь ласка, введить ім’я бази даних MySQL [phpci]: ',
'enter_db_user' => 'Будь ласка, введить ім’я користувача MySQL [phpci]: ',
'enter_db_pass' => 'Будь ласка, введить ваш пароль MySQL: ',
'could_not_connect' => 'PHPCI не може підключитися до MySQL із наданими параметрами. Будь ласка, спробуйте ще раз.',
'could_not_connect' => 'PHP Censor не може підключитися до MySQL із наданими параметрами. Будь ласка, спробуйте ще раз.',
'setting_up_db' => 'Налаштування вашої бази даних...',
'user_created' => 'Аккаунт користувача створено!',
'failed_to_create' => 'PHPCI не вдалося створити ваш аккаунт адміністратора.',
'config_exists' => 'Файл конфігурації PHPCI вже існує та не є порожнім.',
'update_instead' => 'Якщо ви збираєтесь оновити PHPCI, будь ласка, використовуйте команду phpci:update.',
'failed_to_create' => 'PHP Censor не вдалося створити ваш аккаунт адміністратора.',
'config_exists' => 'Файл конфігурації PHP Censor вже існує та не є порожнім.',
'update_instead' => 'Якщо ви збираєтесь оновити PHP Censor, будь ласка, використовуйте команду phpci:update.',
// Update
'update_phpci' => 'Оновити базу даних для відображення змінених моделей.',
'updating_phpci' => 'Оновлення бази даних PHPCI:',
'not_installed' => 'Неможливо встановити PHPCI.',
'install_instead' => 'Будь ласка, встановіть PHPCI через команду phpci:install.',
'updating_phpci' => 'Оновлення бази даних PHP Censor:',
'not_installed' => 'Неможливо встановити PHP Censor.',
'install_instead' => 'Будь ласка, встановіть PHP Censor через команду phpci:install.',
// Poll Command
'poll_github' => 'Зробити запит до GitHub для перевірки запуску збірки.',
@ -349,7 +349,7 @@ PHPCI',
'branch_name_option' => 'Branch to build',
// Run Command
'run_all_pending' => 'Запустити всі PHPCI збірки, які очікують.',
'run_all_pending' => 'Запустити всі PHP Censor збірки, які очікують.',
'finding_builds' => 'Пошук збірок для обробки',
'found_n_builds' => 'Знайдено %d збірок',
'skipping_build' => 'Збірка %d пропущена - Збірка проекта вже у процесі.',
@ -383,7 +383,7 @@ PHPCI',
'n_emails_sent' => '%d листів відправлено.',
'n_emails_failed' => '%d листів не вдалося відправити.',
'unable_to_set_env' => 'Неможливо встановити змінну оточення',
'tag_created' => 'Тег, створений PHPCI: %s',
'tag_created' => 'Тег, створений PHP Censor: %s',
'x_built_at_x' => '%PROJECT_TITLE% зібрано у %BUILD_URI%',
'hipchat_settings' => 'Будь ласка, вкажіть кімнату та "authToken" параметр для плагіна hipchat_notify',
'irc_settings' => 'Ви повинні вказати сервер, кімнату та нік.',

View file

@ -64,19 +64,19 @@ class GithubBuild extends RemoteGitBuild
case 0:
case 1:
$status = 'pending';
$description = 'PHPCI build running.';
$description = 'PHP Censor build running.';
break;
case 2:
$status = 'success';
$description = 'PHPCI build passed.';
$description = 'PHP Censor build passed.';
break;
case 3:
$status = 'failure';
$description = 'PHPCI build failed.';
$description = 'PHP Censor build failed.';
break;
default:
$status = 'error';
$description = 'PHPCI build failed to complete.';
$description = 'PHP Censor build failed to complete.';
break;
}
@ -86,7 +86,7 @@ class GithubBuild extends RemoteGitBuild
'state' => $status,
'target_url' => $phpciUrl . '/build/view/' . $this->getId(),
'description' => $description,
'context' => 'PHPCI',
'context' => 'PHP Censor',
];
$headers = [

View file

@ -42,8 +42,8 @@ class Campfire implements Plugin
$this->phpci = $phpci;
$this->build = $build;
$this->message = $options['message'];
$this->userAgent = "PHPCI/1.0 (+http://www.phptesting.org/)";
$this->cookie = "phpcicookie";
$this->userAgent = "PHP Censor/1.0";
$this->cookie = "php-censor-cookie";
$buildSettings = $phpci->getConfig('build_settings');

View file

@ -36,7 +36,7 @@ class Deployer implements Plugin
{
$this->phpci = $phpci;
$this->build = $build;
$this->reason = 'PHPCI Build #%BUILD% - %COMMIT_MESSAGE%';
$this->reason = 'PHP Censor Build #%BUILD% - %COMMIT_MESSAGE%';
if (isset($options['webhook_url'])) {
$this->webhookUrl = $options['webhook_url'];
@ -63,7 +63,7 @@ class Deployer implements Plugin
$response = $http->post($this->webhookUrl, [
'reason' => $this->phpci->interpolate($this->reason),
'source' => 'PHPCI',
'source' => 'PHP Censor',
'url' => $this->phpci->interpolate('%BUILD_URI%'),
'branch' => $this->phpci->interpolate('%BRANCH%'),
'update_only' => $this->updateOnly

View file

@ -93,7 +93,7 @@ class Email implements Plugin
$sendFailures = $this->sendSeparateEmails(
$addresses,
sprintf("PHPCI - %s - %s", $projectName, $buildStatus),
sprintf("PHP Censor - %s - %s", $projectName, $buildStatus),
$body
);

View file

@ -43,7 +43,7 @@ class FlowdockNotify implements Plugin
}
$this->api_key = trim($options['api_key']);
$this->message = isset($options['message']) ? $options['message'] : self::MESSAGE_DEFAULT;
$this->email = isset($options['email']) ? $options['email'] : 'PHPCI';
$this->email = isset($options['email']) ? $options['email'] : 'PHP Censor';
}
/**

View file

@ -39,8 +39,8 @@ class HipchatNotify implements Plugin
$this->phpci = $phpci;
$this->build = $build;
$this->userAgent = "PHPCI/1.0 (+http://www.phptesting.org/)";
$this->cookie = "phpcicookie";
$this->userAgent = "PHP Censor/1.0";
$this->cookie = "php-censor-cookie";
if (is_array($options) && isset($options['authToken']) && isset($options['room'])) {
$this->authToken = $options['authToken'];
@ -80,12 +80,12 @@ class HipchatNotify implements Plugin
$result = true;
if (is_array($this->room)) {
foreach ($this->room as $room) {
if (!$hipChat->message_room($room, 'PHPCI', $message, $this->notify, $this->color)) {
if (!$hipChat->message_room($room, 'PHP Censor', $message, $this->notify, $this->color)) {
$result = false;
}
}
} else {
if (!$hipChat->message_room($this->room, 'PHPCI', $message, $this->notify, $this->color)) {
if (!$hipChat->message_room($this->room, 'PHP Censor', $message, $this->notify, $this->color)) {
$result = false;
}
}

View file

@ -56,13 +56,13 @@ class SlackNotify implements Plugin
if (isset($options['room'])) {
$this->room = $options['room'];
} else {
$this->room = '#phpci';
$this->room = '#php-censor';
}
if (isset($options['username'])) {
$this->username = $options['username'];
} else {
$this->username = 'PHPCI';
$this->username = 'PHP Censor';
}
if (isset($options['show_status'])) {

View file

@ -26,7 +26,7 @@
<body>
<div class="navbar navbar-fixed-top">
<div class="container">
<a class="navbar-brand" href="<?php echo PHPCI_URL ?>"><img src="<?php echo PHPCI_URL ?>assets/img/logo.png"></a>
<a class="navbar-brand" href="<?php echo PHPCI_URL ?>"><img src="<?php echo PHPCI_URL ?>assets/img/php-censor-logo.png"></a>
</div>
</div>

View file

@ -19,17 +19,8 @@
body
{
background: #224466; /* Old browsers */
background: -moz-radial-gradient(center, ellipse cover, #224466 0%, #112233 100%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#224466), color-stop(100%,#112233)); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover, #224466 0%,#112233 100%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover, #224466 0%,#112233 100%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover, #224466 0%,#112233 100%); /* IE10+ */
background: radial-gradient(ellipse at center, #224466 0%,#112233 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#224466', endColorstr='#112233',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
background: #224466;
min-height: 100%;
font-family: Roboto, Arial, Sans-Serif;
font-style: normal;
font-weight: 300;
@ -38,15 +29,7 @@
#login-box
{
background: #fcfcfc; /* Old browsers */
background: -moz-linear-gradient(top, #fcfcfc 50%, #e0e0e0 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#fcfcfc), color-stop(100%,#e0e0e0)); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, #fcfcfc 50%,#e0e0e0 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, #fcfcfc 50%,#e0e0e0 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, #fcfcfc 50%,#e0e0e0 100%); /* IE10+ */
background: linear-gradient(to bottom, #fcfcfc 50%,#e0e0e0 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#e0e0e0',GradientType=0 ); /* IE6-9 */
background: #fcfcfc;
border-radius: 5px;
box-shadow: 0 0 30px rgba(0,0,0, 0.3);
margin: 0 auto;
@ -55,31 +38,6 @@
width: 350px;
}
#logo {
background: transparent url('https://block8.digital/assets/images/b8-phpci-logo-muted.png') no-repeat top left;
background-size: 130px 46px;
display: inline-block;
height: 46px;
width: 130px;
text-indent: -5000px;
position: absolute;
bottom: 50px;
right: 50px;
}
@media(max-width:767px) {
#logo {
position: inherit;
margin: 0 auto;
margin-top: 50px;
}
}
#logo:hover {
background-image: url('https://block8.digital/assets/images/b8-phpci-logo.png');
}
#phpci-logo img {
margin-bottom: 30px;
}
@ -89,14 +47,12 @@
<body>
<div class="container">
<div class="row" style="margin-top: 10%; text-align: center">
<a id="phpci-logo" href="https://www.phptesting.org">
<img src="<?php print PHPCI_URL; ?>assets/img/logo-large.png">
<a id="phpci-logo" href="/">
<img src="<?php print PHPCI_URL; ?>assets/img/php-censor-logo.png">
</a>
<div class="" id="login-box">
<?php print $content; ?>
</div>
<a target="_blank" id="logo" href="https://block8.digital">Block 8 - Digital Development Experts</a>
</div>
</div>
</body>

View file

@ -250,7 +250,7 @@
</div>
<h1>
<?php print !empty($title) ? $title : 'PHPCI'; ?>
<?php print !empty($title) ? $title : 'PHP Censor'; ?>
<?php if (!empty($subtitle)): ?>
<small><?php print $subtitle; ?></small>