mirror of
https://github.com/BookStackApp/BookStack.git
synced 2026-02-05 08:39:55 +03:00
Compare commits
19 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6c577ac3bf | ||
|
|
31cc2423d2 | ||
|
|
3f3f221e0d | ||
|
|
d0f970fe4f | ||
|
|
81134e7071 | ||
|
|
e722ee4268 | ||
|
|
fd674d10e3 | ||
|
|
c9ed32e518 | ||
|
|
6b4c3a0969 | ||
|
|
0a0fdd7f3e | ||
|
|
3410cf21cb | ||
|
|
6e284d7a6c | ||
|
|
ea7914422c | ||
|
|
509cab3e28 | ||
|
|
7b5111571c | ||
|
|
2dad92d1bd | ||
|
|
c1fb7ab7dc | ||
|
|
3464f5e961 | ||
|
|
7c27d26161 |
9
.github/translators.txt
vendored
9
.github/translators.txt
vendored
@@ -311,3 +311,12 @@ m4tthi4s :: French
|
||||
toras9000 :: Japanese
|
||||
pathab :: German
|
||||
MichelSchoon85 :: Dutch
|
||||
Jøran Haugli (haugli92) :: Norwegian Bokmal
|
||||
Vasileios Kouvelis (VasilisKouvelis) :: Greek
|
||||
Dremski :: Bulgarian
|
||||
Frédéric SENE (nothingfr) :: French
|
||||
bendem :: French
|
||||
kostasdizas :: Greek
|
||||
Ricardo Schroeder (brownstone666) :: Portuguese, Brazilian
|
||||
Eitan MG (EitanMG) :: Hebrew
|
||||
Robin Flikkema (RobinFlikkema) :: Dutch
|
||||
|
||||
@@ -11,11 +11,9 @@ use Illuminate\Support\Facades\DB;
|
||||
|
||||
class TagRepo
|
||||
{
|
||||
protected PermissionApplicator $permissions;
|
||||
|
||||
public function __construct(PermissionApplicator $permissions)
|
||||
{
|
||||
$this->permissions = $permissions;
|
||||
public function __construct(
|
||||
protected PermissionApplicator $permissions
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -90,6 +88,7 @@ class TagRepo
|
||||
{
|
||||
$query = Tag::query()
|
||||
->select('*', DB::raw('count(*) as count'))
|
||||
->where('value', '!=', '')
|
||||
->groupBy('value');
|
||||
|
||||
if ($searchTerm) {
|
||||
|
||||
@@ -151,7 +151,8 @@ class RoleController extends Controller
|
||||
$this->checkPermission('user-roles-manage');
|
||||
|
||||
try {
|
||||
$this->permissionsRepo->deleteRole($id, $request->get('migrate_role_id', 0));
|
||||
$migrateRoleId = intval($request->get('migrate_role_id') ?: "0");
|
||||
$this->permissionsRepo->deleteRole($id, $migrateRoleId);
|
||||
} catch (PermissionsException $e) {
|
||||
$this->showErrorNotification($e->getMessage());
|
||||
|
||||
|
||||
@@ -8,11 +8,9 @@ use Illuminate\Http\Request;
|
||||
|
||||
class TagController extends Controller
|
||||
{
|
||||
protected TagRepo $tagRepo;
|
||||
|
||||
public function __construct(TagRepo $tagRepo)
|
||||
{
|
||||
$this->tagRepo = $tagRepo;
|
||||
public function __construct(
|
||||
protected TagRepo $tagRepo
|
||||
) {
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
@@ -197,7 +197,7 @@ class UserController extends Controller
|
||||
$this->checkPermissionOrCurrentUser('users-manage', $id);
|
||||
|
||||
$user = $this->userRepo->getById($id);
|
||||
$newOwnerId = $request->get('new_owner_id', null);
|
||||
$newOwnerId = intval($request->get('new_owner_id')) ?: null;
|
||||
|
||||
$this->userRepo->destroy($user, $newOwnerId);
|
||||
|
||||
|
||||
@@ -24,6 +24,7 @@ class LanguageManager
|
||||
'bg' => ['iso' => 'bg_BG', 'windows' => 'Bulgarian'],
|
||||
'bs' => ['iso' => 'bs_BA', 'windows' => 'Bosnian (Latin)'],
|
||||
'ca' => ['iso' => 'ca', 'windows' => 'Catalan'],
|
||||
'cs' => ['iso' => 'cs_CZ', 'windows' => 'Czech'],
|
||||
'da' => ['iso' => 'da_DK', 'windows' => 'Danish'],
|
||||
'de' => ['iso' => 'de_DE', 'windows' => 'German'],
|
||||
'de_informal' => ['iso' => 'de_DE', 'windows' => 'German'],
|
||||
@@ -120,14 +121,14 @@ class LanguageManager
|
||||
$isoLang = $this->localeMap[$language]['iso'] ?? '';
|
||||
$isoLangPrefix = explode('_', $isoLang)[0];
|
||||
|
||||
$locales = array_filter([
|
||||
$locales = array_values(array_filter([
|
||||
$isoLang ? $isoLang . '.utf8' : false,
|
||||
$isoLang ?: false,
|
||||
$isoLang ? str_replace('_', '-', $isoLang) : false,
|
||||
$isoLang ? $isoLangPrefix . '.UTF-8' : false,
|
||||
$this->localeMap[$language]['windows'] ?? false,
|
||||
$language,
|
||||
]);
|
||||
]));
|
||||
|
||||
if (!empty($locales)) {
|
||||
setlocale(LC_TIME, $locales[0], ...array_slice($locales, 1));
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
"nunomaduro/larastan": "^2.4",
|
||||
"phpunit/phpunit": "^9.5",
|
||||
"squizlabs/php_codesniffer": "^3.7",
|
||||
"ssddanbrown/asserthtml": "^1.0"
|
||||
"ssddanbrown/asserthtml": "^2.0"
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
|
||||
274
composer.lock
generated
274
composer.lock
generated
@@ -4,7 +4,7 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "64276cbeb1f79f4c94992cc739807d72",
|
||||
"content-hash": "5a066407dfbd1809ffd39114a873333d",
|
||||
"packages": [
|
||||
{
|
||||
"name": "aws/aws-crt-php",
|
||||
@@ -58,16 +58,16 @@
|
||||
},
|
||||
{
|
||||
"name": "aws/aws-sdk-php",
|
||||
"version": "3.260.3",
|
||||
"version": "3.262.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/aws/aws-sdk-php.git",
|
||||
"reference": "547b8047b2f9a551a7100b22e1abe1a3cc1b0ff0"
|
||||
"reference": "f45eefe4735d5a16ecc44cfd9a6c29421ae1e802"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/547b8047b2f9a551a7100b22e1abe1a3cc1b0ff0",
|
||||
"reference": "547b8047b2f9a551a7100b22e1abe1a3cc1b0ff0",
|
||||
"url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/f45eefe4735d5a16ecc44cfd9a6c29421ae1e802",
|
||||
"reference": "f45eefe4735d5a16ecc44cfd9a6c29421ae1e802",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -146,9 +146,9 @@
|
||||
"support": {
|
||||
"forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
|
||||
"issues": "https://github.com/aws/aws-sdk-php/issues",
|
||||
"source": "https://github.com/aws/aws-sdk-php/tree/3.260.3"
|
||||
"source": "https://github.com/aws/aws-sdk-php/tree/3.262.0"
|
||||
},
|
||||
"time": "2023-02-24T19:25:34+00:00"
|
||||
"time": "2023-03-23T18:21:18+00:00"
|
||||
},
|
||||
{
|
||||
"name": "bacon/bacon-qr-code",
|
||||
@@ -417,21 +417,24 @@
|
||||
},
|
||||
{
|
||||
"name": "dasprid/enum",
|
||||
"version": "1.0.3",
|
||||
"version": "1.0.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/DASPRiD/Enum.git",
|
||||
"reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
|
||||
"reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
|
||||
"reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
|
||||
"url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
|
||||
"reference": "8e6b6ea76eabbf19ea2bf5b67b98e1860474012f",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1 <9.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^7 | ^8 | ^9",
|
||||
"squizlabs/php_codesniffer": "^3.4"
|
||||
"squizlabs/php_codesniffer": "*"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
@@ -458,9 +461,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/DASPRiD/Enum/issues",
|
||||
"source": "https://github.com/DASPRiD/Enum/tree/1.0.3"
|
||||
"source": "https://github.com/DASPRiD/Enum/tree/1.0.4"
|
||||
},
|
||||
"time": "2020-10-02T16:03:48+00:00"
|
||||
"time": "2023-03-01T18:44:03+00:00"
|
||||
},
|
||||
{
|
||||
"name": "dflydev/dot-access-data",
|
||||
@@ -632,16 +635,16 @@
|
||||
},
|
||||
{
|
||||
"name": "doctrine/dbal",
|
||||
"version": "3.6.0",
|
||||
"version": "3.6.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/doctrine/dbal.git",
|
||||
"reference": "85b98cb23c8af471a67abfe14485da696bcabc2e"
|
||||
"reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/doctrine/dbal/zipball/85b98cb23c8af471a67abfe14485da696bcabc2e",
|
||||
"reference": "85b98cb23c8af471a67abfe14485da696bcabc2e",
|
||||
"url": "https://api.github.com/repos/doctrine/dbal/zipball/57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
|
||||
"reference": "57815c7bbcda3cd18871d253c1dd8cbe56f8526e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -657,11 +660,11 @@
|
||||
"doctrine/coding-standard": "11.1.0",
|
||||
"fig/log-test": "^1",
|
||||
"jetbrains/phpstorm-stubs": "2022.3",
|
||||
"phpstan/phpstan": "1.9.14",
|
||||
"phpstan/phpstan-strict-rules": "^1.4",
|
||||
"phpunit/phpunit": "9.6.3",
|
||||
"phpstan/phpstan": "1.10.3",
|
||||
"phpstan/phpstan-strict-rules": "^1.5",
|
||||
"phpunit/phpunit": "9.6.4",
|
||||
"psalm/plugin-phpunit": "0.18.4",
|
||||
"squizlabs/php_codesniffer": "3.7.1",
|
||||
"squizlabs/php_codesniffer": "3.7.2",
|
||||
"symfony/cache": "^5.4|^6.0",
|
||||
"symfony/console": "^4.4|^5.4|^6.0",
|
||||
"vimeo/psalm": "4.30.0"
|
||||
@@ -724,7 +727,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/doctrine/dbal/issues",
|
||||
"source": "https://github.com/doctrine/dbal/tree/3.6.0"
|
||||
"source": "https://github.com/doctrine/dbal/tree/3.6.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -740,7 +743,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-02-07T22:52:03+00:00"
|
||||
"time": "2023-03-02T19:26:24+00:00"
|
||||
},
|
||||
{
|
||||
"name": "doctrine/deprecations",
|
||||
@@ -1309,24 +1312,24 @@
|
||||
},
|
||||
{
|
||||
"name": "graham-campbell/result-type",
|
||||
"version": "v1.1.0",
|
||||
"version": "v1.1.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/GrahamCampbell/Result-Type.git",
|
||||
"reference": "a878d45c1914464426dc94da61c9e1d36ae262a8"
|
||||
"reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/a878d45c1914464426dc94da61c9e1d36ae262a8",
|
||||
"reference": "a878d45c1914464426dc94da61c9e1d36ae262a8",
|
||||
"url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
|
||||
"reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2.5 || ^8.0",
|
||||
"phpoption/phpoption": "^1.9"
|
||||
"phpoption/phpoption": "^1.9.1"
|
||||
},
|
||||
"require-dev": {
|
||||
"phpunit/phpunit": "^8.5.28 || ^9.5.21"
|
||||
"phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
|
||||
},
|
||||
"type": "library",
|
||||
"autoload": {
|
||||
@@ -1355,7 +1358,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/GrahamCampbell/Result-Type/issues",
|
||||
"source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.0"
|
||||
"source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -1367,7 +1370,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-07-30T15:56:11+00:00"
|
||||
"time": "2023-02-25T20:23:15+00:00"
|
||||
},
|
||||
{
|
||||
"name": "guzzlehttp/guzzle",
|
||||
@@ -1583,16 +1586,16 @@
|
||||
},
|
||||
{
|
||||
"name": "guzzlehttp/psr7",
|
||||
"version": "2.4.3",
|
||||
"version": "2.4.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/guzzle/psr7.git",
|
||||
"reference": "67c26b443f348a51926030c83481b85718457d3d"
|
||||
"reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/guzzle/psr7/zipball/67c26b443f348a51926030c83481b85718457d3d",
|
||||
"reference": "67c26b443f348a51926030c83481b85718457d3d",
|
||||
"url": "https://api.github.com/repos/guzzle/psr7/zipball/3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
|
||||
"reference": "3cf1b6d4f0c820a2cf8bcaec39fc698f3443b5cf",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1682,7 +1685,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/guzzle/psr7/issues",
|
||||
"source": "https://github.com/guzzle/psr7/tree/2.4.3"
|
||||
"source": "https://github.com/guzzle/psr7/tree/2.4.4"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -1698,7 +1701,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-10-26T14:07:24+00:00"
|
||||
"time": "2023-03-09T13:19:02+00:00"
|
||||
},
|
||||
{
|
||||
"name": "guzzlehttp/uri-template",
|
||||
@@ -1870,16 +1873,16 @@
|
||||
},
|
||||
{
|
||||
"name": "knplabs/knp-snappy",
|
||||
"version": "v1.4.1",
|
||||
"version": "v1.4.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/KnpLabs/snappy.git",
|
||||
"reference": "5126fb5b335ec929a226314d40cd8dad497c3d67"
|
||||
"reference": "b66f79334421c26d9c244427963fa2d92980b5d3"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/KnpLabs/snappy/zipball/5126fb5b335ec929a226314d40cd8dad497c3d67",
|
||||
"reference": "5126fb5b335ec929a226314d40cd8dad497c3d67",
|
||||
"url": "https://api.github.com/repos/KnpLabs/snappy/zipball/b66f79334421c26d9c244427963fa2d92980b5d3",
|
||||
"reference": "b66f79334421c26d9c244427963fa2d92980b5d3",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -1938,9 +1941,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/KnpLabs/snappy/issues",
|
||||
"source": "https://github.com/KnpLabs/snappy/tree/v1.4.1"
|
||||
"source": "https://github.com/KnpLabs/snappy/tree/v1.4.2"
|
||||
},
|
||||
"time": "2022-01-07T13:03:38+00:00"
|
||||
"time": "2023-03-17T14:47:54+00:00"
|
||||
},
|
||||
{
|
||||
"name": "laravel/framework",
|
||||
@@ -3462,16 +3465,16 @@
|
||||
},
|
||||
{
|
||||
"name": "nikic/php-parser",
|
||||
"version": "v4.15.3",
|
||||
"version": "v4.15.4",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nikic/PHP-Parser.git",
|
||||
"reference": "570e980a201d8ed0236b0a62ddf2c9cbb2034039"
|
||||
"reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/570e980a201d8ed0236b0a62ddf2c9cbb2034039",
|
||||
"reference": "570e980a201d8ed0236b0a62ddf2c9cbb2034039",
|
||||
"url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
|
||||
"reference": "6bb5176bc4af8bcb7d926f88718db9b96a2d4290",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -3512,9 +3515,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/nikic/PHP-Parser/issues",
|
||||
"source": "https://github.com/nikic/PHP-Parser/tree/v4.15.3"
|
||||
"source": "https://github.com/nikic/PHP-Parser/tree/v4.15.4"
|
||||
},
|
||||
"time": "2023-01-16T22:05:37+00:00"
|
||||
"time": "2023-03-05T19:49:14+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nunomaduro/termwind",
|
||||
@@ -3867,24 +3870,24 @@
|
||||
},
|
||||
{
|
||||
"name": "phpoption/phpoption",
|
||||
"version": "1.9.0",
|
||||
"version": "1.9.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/schmittjoh/php-option.git",
|
||||
"reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab"
|
||||
"reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
|
||||
"reference": "dc5ff11e274a90cc1c743f66c9ad700ce50db9ab",
|
||||
"url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
|
||||
"reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2.5 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"bamarni/composer-bin-plugin": "^1.8",
|
||||
"phpunit/phpunit": "^8.5.28 || ^9.5.21"
|
||||
"bamarni/composer-bin-plugin": "^1.8.2",
|
||||
"phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
@@ -3926,7 +3929,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/schmittjoh/php-option/issues",
|
||||
"source": "https://github.com/schmittjoh/php-option/tree/1.9.0"
|
||||
"source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -3938,20 +3941,20 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-07-30T15:51:26+00:00"
|
||||
"time": "2023-02-25T19:38:58+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpseclib/phpseclib",
|
||||
"version": "3.0.18",
|
||||
"version": "3.0.19",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpseclib/phpseclib.git",
|
||||
"reference": "f28693d38ba21bb0d9f0c411ee5dae2b178201da"
|
||||
"reference": "cc181005cf548bfd8a4896383bb825d859259f95"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/f28693d38ba21bb0d9f0c411ee5dae2b178201da",
|
||||
"reference": "f28693d38ba21bb0d9f0c411ee5dae2b178201da",
|
||||
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/cc181005cf548bfd8a4896383bb825d859259f95",
|
||||
"reference": "cc181005cf548bfd8a4896383bb825d859259f95",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -4032,7 +4035,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/phpseclib/phpseclib/issues",
|
||||
"source": "https://github.com/phpseclib/phpseclib/tree/3.0.18"
|
||||
"source": "https://github.com/phpseclib/phpseclib/tree/3.0.19"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -4048,7 +4051,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-12-17T18:26:50+00:00"
|
||||
"time": "2023-03-05T17:13:09+00:00"
|
||||
},
|
||||
{
|
||||
"name": "pragmarx/google2fa",
|
||||
@@ -4104,33 +4107,27 @@
|
||||
},
|
||||
{
|
||||
"name": "predis/predis",
|
||||
"version": "v2.1.1",
|
||||
"version": "v2.1.2",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/predis/predis.git",
|
||||
"reference": "c5b60884e89630f9518a7919f0566db438f0fc9a"
|
||||
"reference": "a77a43913a74f9331f637bb12867eb8e274814e5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/predis/predis/zipball/c5b60884e89630f9518a7919f0566db438f0fc9a",
|
||||
"reference": "c5b60884e89630f9518a7919f0566db438f0fc9a",
|
||||
"url": "https://api.github.com/repos/predis/predis/zipball/a77a43913a74f9331f637bb12867eb8e274814e5",
|
||||
"reference": "a77a43913a74f9331f637bb12867eb8e274814e5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"php": "^7.2 || ^8.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"friendsofphp/php-cs-fixer": "^3.3",
|
||||
"phpstan/phpstan": "^1.9",
|
||||
"phpunit/phpunit": "^8.0 || ~9.4.4"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-curl": "Allows access to Webdis when paired with phpiredis"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-main": "2.0-dev"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"Predis\\": "src/"
|
||||
@@ -4145,12 +4142,6 @@
|
||||
"name": "Till Krüss",
|
||||
"homepage": "https://till.im",
|
||||
"role": "Maintainer"
|
||||
},
|
||||
{
|
||||
"name": "Daniele Alessandri",
|
||||
"email": "suppakilla@gmail.com",
|
||||
"homepage": "http://clorophilla.net",
|
||||
"role": "Creator"
|
||||
}
|
||||
],
|
||||
"description": "A flexible and feature-complete Redis client for PHP.",
|
||||
@@ -4162,7 +4153,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/predis/predis/issues",
|
||||
"source": "https://github.com/predis/predis/tree/v2.1.1"
|
||||
"source": "https://github.com/predis/predis/tree/v2.1.2"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -4170,7 +4161,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2023-01-17T20:57:35+00:00"
|
||||
"time": "2023-03-02T18:32:04+00:00"
|
||||
},
|
||||
{
|
||||
"name": "psr/cache",
|
||||
@@ -4587,16 +4578,16 @@
|
||||
},
|
||||
{
|
||||
"name": "psy/psysh",
|
||||
"version": "v0.11.12",
|
||||
"version": "v0.11.13",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/bobthecow/psysh.git",
|
||||
"reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7"
|
||||
"reference": "722317c9f5627e588788e340f29b923e58f92f54"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
|
||||
"reference": "52cb7c47d403c31c0adc9bf7710fc355f93c20f7",
|
||||
"url": "https://api.github.com/repos/bobthecow/psysh/zipball/722317c9f5627e588788e340f29b923e58f92f54",
|
||||
"reference": "722317c9f5627e588788e340f29b923e58f92f54",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -4657,9 +4648,9 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/bobthecow/psysh/issues",
|
||||
"source": "https://github.com/bobthecow/psysh/tree/v0.11.12"
|
||||
"source": "https://github.com/bobthecow/psysh/tree/v0.11.13"
|
||||
},
|
||||
"time": "2023-01-29T21:24:40+00:00"
|
||||
"time": "2023-03-21T14:22:44+00:00"
|
||||
},
|
||||
{
|
||||
"name": "ralouphie/getallheaders",
|
||||
@@ -8043,16 +8034,16 @@
|
||||
},
|
||||
{
|
||||
"name": "filp/whoops",
|
||||
"version": "2.14.6",
|
||||
"version": "2.15.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/filp/whoops.git",
|
||||
"reference": "f7948baaa0330277c729714910336383286305da"
|
||||
"reference": "e864ac957acd66e1565f25efda61e37791a5db0b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/filp/whoops/zipball/f7948baaa0330277c729714910336383286305da",
|
||||
"reference": "f7948baaa0330277c729714910336383286305da",
|
||||
"url": "https://api.github.com/repos/filp/whoops/zipball/e864ac957acd66e1565f25efda61e37791a5db0b",
|
||||
"reference": "e864ac957acd66e1565f25efda61e37791a5db0b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -8102,7 +8093,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/filp/whoops/issues",
|
||||
"source": "https://github.com/filp/whoops/tree/2.14.6"
|
||||
"source": "https://github.com/filp/whoops/tree/2.15.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -8110,7 +8101,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2022-11-02T16:23:29+00:00"
|
||||
"time": "2023-03-06T18:09:13+00:00"
|
||||
},
|
||||
{
|
||||
"name": "hamcrest/hamcrest-php",
|
||||
@@ -8305,16 +8296,16 @@
|
||||
},
|
||||
{
|
||||
"name": "myclabs/deep-copy",
|
||||
"version": "1.11.0",
|
||||
"version": "1.11.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/myclabs/DeepCopy.git",
|
||||
"reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614"
|
||||
"reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/14daed4296fae74d9e3201d2c4925d1acb7aa614",
|
||||
"reference": "14daed4296fae74d9e3201d2c4925d1acb7aa614",
|
||||
"url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
|
||||
"reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -8352,7 +8343,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/myclabs/DeepCopy/issues",
|
||||
"source": "https://github.com/myclabs/DeepCopy/tree/1.11.0"
|
||||
"source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -8360,7 +8351,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2022-03-03T13:19:32+00:00"
|
||||
"time": "2023-03-08T13:26:56+00:00"
|
||||
},
|
||||
{
|
||||
"name": "nunomaduro/collision",
|
||||
@@ -8452,16 +8443,16 @@
|
||||
},
|
||||
{
|
||||
"name": "nunomaduro/larastan",
|
||||
"version": "2.4.1",
|
||||
"version": "2.5.1",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/nunomaduro/larastan.git",
|
||||
"reference": "238fdbfba3aae133cdec73e99826c9b0232141f7"
|
||||
"reference": "072e2c9566ae000bf66c92384fc933b81885244b"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/nunomaduro/larastan/zipball/238fdbfba3aae133cdec73e99826c9b0232141f7",
|
||||
"reference": "238fdbfba3aae133cdec73e99826c9b0232141f7",
|
||||
"url": "https://api.github.com/repos/nunomaduro/larastan/zipball/072e2c9566ae000bf66c92384fc933b81885244b",
|
||||
"reference": "072e2c9566ae000bf66c92384fc933b81885244b",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -8475,11 +8466,11 @@
|
||||
"illuminate/support": "^9.47.0 || ^10.0.0",
|
||||
"php": "^8.0.2",
|
||||
"phpmyadmin/sql-parser": "^5.6.0",
|
||||
"phpstan/phpstan": "^1.9.8"
|
||||
"phpstan/phpstan": "~1.10.3"
|
||||
},
|
||||
"require-dev": {
|
||||
"nikic/php-parser": "^4.15.2",
|
||||
"orchestra/testbench": "^7.19.0|^8.0.0",
|
||||
"orchestra/testbench": "^7.19.0 || ^8.0.0",
|
||||
"phpunit/phpunit": "^9.5.27"
|
||||
},
|
||||
"suggest": {
|
||||
@@ -8524,7 +8515,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/nunomaduro/larastan/issues",
|
||||
"source": "https://github.com/nunomaduro/larastan/tree/2.4.1"
|
||||
"source": "https://github.com/nunomaduro/larastan/tree/2.5.1"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -8544,7 +8535,7 @@
|
||||
"type": "patreon"
|
||||
}
|
||||
],
|
||||
"time": "2023-02-05T12:19:17+00:00"
|
||||
"time": "2023-03-04T23:46:40+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phar-io/manifest",
|
||||
@@ -8746,16 +8737,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpstan/phpstan",
|
||||
"version": "1.10.3",
|
||||
"version": "1.10.8",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/phpstan/phpstan.git",
|
||||
"reference": "5419375b5891add97dc74be71e6c1c34baaddf64"
|
||||
"reference": "0166aef76e066f0dd2adc2799bdadfa1635711e9"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/5419375b5891add97dc74be71e6c1c34baaddf64",
|
||||
"reference": "5419375b5891add97dc74be71e6c1c34baaddf64",
|
||||
"url": "https://api.github.com/repos/phpstan/phpstan/zipball/0166aef76e066f0dd2adc2799bdadfa1635711e9",
|
||||
"reference": "0166aef76e066f0dd2adc2799bdadfa1635711e9",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -8784,8 +8775,11 @@
|
||||
"static analysis"
|
||||
],
|
||||
"support": {
|
||||
"docs": "https://phpstan.org/user-guide/getting-started",
|
||||
"forum": "https://github.com/phpstan/phpstan/discussions",
|
||||
"issues": "https://github.com/phpstan/phpstan/issues",
|
||||
"source": "https://github.com/phpstan/phpstan/tree/1.10.3"
|
||||
"security": "https://github.com/phpstan/phpstan/security/policy",
|
||||
"source": "https://github.com/phpstan/phpstan-src"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -8801,20 +8795,20 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-02-25T14:47:13+00:00"
|
||||
"time": "2023-03-24T10:28:16+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-code-coverage",
|
||||
"version": "9.2.25",
|
||||
"version": "9.2.26",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
|
||||
"reference": "0e2b40518197a8c0d4b08bc34dfff1c99c508954"
|
||||
"reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/0e2b40518197a8c0d4b08bc34dfff1c99c508954",
|
||||
"reference": "0e2b40518197a8c0d4b08bc34dfff1c99c508954",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
|
||||
"reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -8836,8 +8830,8 @@
|
||||
"phpunit/phpunit": "^9.3"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-pcov": "*",
|
||||
"ext-xdebug": "*"
|
||||
"ext-pcov": "PHP extension that provides line coverage",
|
||||
"ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
|
||||
},
|
||||
"type": "library",
|
||||
"extra": {
|
||||
@@ -8870,7 +8864,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
|
||||
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.25"
|
||||
"source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -8878,7 +8872,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2023-02-25T05:32:00+00:00"
|
||||
"time": "2023-03-06T12:58:08+00:00"
|
||||
},
|
||||
{
|
||||
"name": "phpunit/php-file-iterator",
|
||||
@@ -9123,16 +9117,16 @@
|
||||
},
|
||||
{
|
||||
"name": "phpunit/phpunit",
|
||||
"version": "9.6.3",
|
||||
"version": "9.6.5",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/sebastianbergmann/phpunit.git",
|
||||
"reference": "e7b1615e3e887d6c719121c6d4a44b0ab9645555"
|
||||
"reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/e7b1615e3e887d6c719121c6d4a44b0ab9645555",
|
||||
"reference": "e7b1615e3e887d6c719121c6d4a44b0ab9645555",
|
||||
"url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/86e761949019ae83f49240b2f2123fb5ab3b2fc5",
|
||||
"reference": "86e761949019ae83f49240b2f2123fb5ab3b2fc5",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -9165,8 +9159,8 @@
|
||||
"sebastian/version": "^3.0.2"
|
||||
},
|
||||
"suggest": {
|
||||
"ext-soap": "*",
|
||||
"ext-xdebug": "*"
|
||||
"ext-soap": "To be able to generate mocks based on WSDL files",
|
||||
"ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
|
||||
},
|
||||
"bin": [
|
||||
"phpunit"
|
||||
@@ -9205,7 +9199,7 @@
|
||||
],
|
||||
"support": {
|
||||
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
|
||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.3"
|
||||
"source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.5"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -9221,7 +9215,7 @@
|
||||
"type": "tidelift"
|
||||
}
|
||||
],
|
||||
"time": "2023-02-04T13:37:15+00:00"
|
||||
"time": "2023-03-09T06:34:10+00:00"
|
||||
},
|
||||
{
|
||||
"name": "sebastian/cli-parser",
|
||||
@@ -10246,16 +10240,16 @@
|
||||
},
|
||||
{
|
||||
"name": "ssddanbrown/asserthtml",
|
||||
"version": "v1.0.1",
|
||||
"version": "v2.0.0",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/ssddanbrown/htmlassert.git",
|
||||
"reference": "f7d4352bb3d69347097b2841fd71934182821928"
|
||||
"url": "https://github.com/ssddanbrown/asserthtml.git",
|
||||
"reference": "6baf3ef2087f5928ae34f0d41db27aefcdf60414"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/ssddanbrown/htmlassert/zipball/f7d4352bb3d69347097b2841fd71934182821928",
|
||||
"reference": "f7d4352bb3d69347097b2841fd71934182821928",
|
||||
"url": "https://api.github.com/repos/ssddanbrown/asserthtml/zipball/6baf3ef2087f5928ae34f0d41db27aefcdf60414",
|
||||
"reference": "6baf3ef2087f5928ae34f0d41db27aefcdf60414",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
@@ -10289,8 +10283,8 @@
|
||||
"description": "HTML Content Assertions for PHPUnit",
|
||||
"homepage": "https://github.com/ssddanbrown/asserthtml",
|
||||
"support": {
|
||||
"issues": "https://github.com/ssddanbrown/htmlassert/issues",
|
||||
"source": "https://github.com/ssddanbrown/htmlassert/tree/v1.0.1"
|
||||
"issues": "https://github.com/ssddanbrown/asserthtml/issues",
|
||||
"source": "https://github.com/ssddanbrown/asserthtml/tree/v2.0.0"
|
||||
},
|
||||
"funding": [
|
||||
{
|
||||
@@ -10298,7 +10292,7 @@
|
||||
"type": "github"
|
||||
}
|
||||
],
|
||||
"time": "2022-04-09T13:31:13+00:00"
|
||||
"time": "2023-03-01T16:48:08+00:00"
|
||||
},
|
||||
{
|
||||
"name": "symfony/dom-crawler",
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -17,18 +17,18 @@ return [
|
||||
'page_move' => 'преместена страница',
|
||||
|
||||
// Chapters
|
||||
'chapter_create' => 'създадена страница',
|
||||
'chapter_create_notification' => 'Главата е добавена успешно',
|
||||
'chapter_create' => 'създадена глава',
|
||||
'chapter_create_notification' => 'Успешно създадена глава',
|
||||
'chapter_update' => 'обновена глава',
|
||||
'chapter_update_notification' => 'Главата е обновена успешно',
|
||||
'chapter_update_notification' => 'Успешно обновена глава',
|
||||
'chapter_delete' => 'изтрита глава',
|
||||
'chapter_delete_notification' => 'Главата е изтрита успешно',
|
||||
'chapter_delete_notification' => 'Успешно изтрита глава',
|
||||
'chapter_move' => 'преместена глава',
|
||||
|
||||
// Books
|
||||
'book_create' => 'създадена книга',
|
||||
'book_create_notification' => 'Книгата е създадена успешно',
|
||||
'book_create_from_chapter' => 'converted chapter to book',
|
||||
'book_create_from_chapter' => 'превърната глава в книга',
|
||||
'book_create_from_chapter_notification' => 'Chapter successfully converted to a book',
|
||||
'book_update' => 'обновена книга',
|
||||
'book_update_notification' => 'Книгата е обновена успешно',
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Потребителят е премахнат успешно',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Успешна създадена роля',
|
||||
'role_update_notification' => 'Успешно обновена роля',
|
||||
'role_delete_notification' => 'Успешно изтрита роля',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'коментирано на',
|
||||
|
||||
@@ -25,23 +25,23 @@ return [
|
||||
'forgot_password' => 'Забравена парола?',
|
||||
'remember_me' => 'Запомни ме',
|
||||
'ldap_email_hint' => 'Моля въведете емейл, който да използвате за дадения профил.',
|
||||
'create_account' => 'Създай Акаунт',
|
||||
'create_account' => 'Създаване на акаунт',
|
||||
'already_have_account' => 'Вече имате профил?',
|
||||
'dont_have_account' => 'Нямате акаунт?',
|
||||
'dont_have_account' => 'Нямате ли акаунт?',
|
||||
'social_login' => 'Влизане по друг начин',
|
||||
'social_registration' => 'Регистрация по друг начин',
|
||||
'social_registration_text' => 'Регистрация и вписване чрез друга услуга.',
|
||||
'social_registration_text' => 'Регистриране и влизане посредством друга услуга.',
|
||||
|
||||
'register_thanks' => 'Благодарим Ви за регистрацията!',
|
||||
'register_thanks' => 'Благодарности за регистрирането!',
|
||||
'register_confirm' => 'Моля, провери своя имейл адрес и натисни бутона за потвърждение, за да достъпиш :appName.',
|
||||
'registrations_disabled' => 'Регистрациите към момента са забранени',
|
||||
'registration_email_domain_invalid' => 'Този емейл домейн към момента няма достъп до приложението',
|
||||
'register_success' => 'Благодарим Ви за регистрацията! В момента сте регистриран и сте вписани в приложението.',
|
||||
|
||||
// Login auto-initiation
|
||||
'auto_init_starting' => 'Attempting Login',
|
||||
'auto_init_starting_desc' => 'We\'re contacting your authentication system to start the login process. If there\'s no progress after 5 seconds you can try clicking the link below.',
|
||||
'auto_init_start_link' => 'Proceed with authentication',
|
||||
'auto_init_starting' => 'Опит за вход в системата',
|
||||
'auto_init_starting_desc' => 'Свързахме системата ви за удостоверяване към началото на процеса при влизане. Ако няма напредък след 5 секунди, то може да опитате да щракнете върху долната връзка.',
|
||||
'auto_init_start_link' => 'Продължаване с удостоверяването',
|
||||
|
||||
// Password Reset
|
||||
'reset_password' => 'Нулиране на паролата',
|
||||
@@ -56,13 +56,13 @@ return [
|
||||
// Email Confirmation
|
||||
'email_confirm_subject' => 'Потвърди емейла си за :appName',
|
||||
'email_confirm_greeting' => 'Благодарим Ви, че се присъединихте към :appName!',
|
||||
'email_confirm_text' => 'Моля, потвърдете вашия имейл адрес, като следвате връзката по-долу:',
|
||||
'email_confirm_text' => 'Потвърдете адреса на имейла си, щраквайки върху връзката по-долу:',
|
||||
'email_confirm_action' => 'Потвърдете имейл',
|
||||
'email_confirm_send_error' => 'Нужно ви е потвърждение чрез емейл, но системата не успя да го изпрати. Моля свържете се с администратора, за да проверите дали вашият емейл адрес е конфигуриран правилно.',
|
||||
'email_confirm_success' => 'Имейлът ти е потвърден! Вече би трябвало да можеш да се впишеш с този имейл адрес.',
|
||||
'email_confirm_resent' => 'Беше изпратен имейл с потвърждение, Моля, проверете кутията си.',
|
||||
'email_confirm_thanks' => 'Thanks for confirming!',
|
||||
'email_confirm_thanks_desc' => 'Please wait a moment while your confirmation is handled. If you are not redirected after 3 seconds press the "Continue" link below to proceed.',
|
||||
'email_confirm_resent' => 'Е-писмо за потвърждение е изпратено пак, проверете кутията си.',
|
||||
'email_confirm_thanks' => 'Благодарности за потвърждаването!',
|
||||
'email_confirm_thanks_desc' => 'Почакайте малко, обработвайки потвърждението ви. Ако не сте пренасочени след 3 секунди, то натиснете долу връзката "Продължаване", за да продължите.',
|
||||
|
||||
'email_not_confirmed' => 'Имейл адресът не е потвърден',
|
||||
'email_not_confirmed_text' => 'Вашият емейл адрес все още не е потвърден.',
|
||||
@@ -74,9 +74,9 @@ return [
|
||||
'user_invite_email_subject' => 'Вие бяхте поканен да се присъедините към :appName!',
|
||||
'user_invite_email_greeting' => 'Беше създаден акаунт за Вас във :appName.',
|
||||
'user_invite_email_text' => 'Натисните бутона по-долу за да определите парола и да получите достъп:',
|
||||
'user_invite_email_action' => 'Парола на акаунта',
|
||||
'user_invite_email_action' => 'Задаване на парола на акаунта',
|
||||
'user_invite_page_welcome' => 'Добре дошли в :appName!',
|
||||
'user_invite_page_text' => 'За да финализирате вашият акаунт и да получите достъп трябва да определите парола, която да бъде използвана за следващия влизания в :appName.',
|
||||
'user_invite_page_text' => 'За да довършвам окончателно акаунта ви и да получите достъп трябва да зададете парола, която ще се използва за влизане в :appName при бъдещи посещения.',
|
||||
'user_invite_page_confirm_button' => 'Потвърди паролата',
|
||||
'user_invite_success_login' => 'Паролата е настроена, вече можеш да се впишеш с новата парола, за да достъпиш :appName!',
|
||||
|
||||
|
||||
@@ -6,11 +6,11 @@ return [
|
||||
|
||||
// Buttons
|
||||
'cancel' => 'Отказ',
|
||||
'confirm' => 'Потвърди',
|
||||
'confirm' => 'Потвърждаване',
|
||||
'back' => 'Назад',
|
||||
'save' => 'Запази',
|
||||
'continue' => 'Продължи',
|
||||
'select' => 'Избери',
|
||||
'save' => 'Запис',
|
||||
'continue' => 'Продължаване',
|
||||
'select' => 'Изберете',
|
||||
'toggle_all' => 'Избери всички',
|
||||
'more' => 'Повече',
|
||||
|
||||
@@ -18,38 +18,38 @@ return [
|
||||
'name' => 'Име',
|
||||
'description' => 'Описание',
|
||||
'role' => 'Роля',
|
||||
'cover_image' => 'Основно изображение',
|
||||
'cover_image_description' => 'Картината трябва да е приблизително 440х250 пиксела.',
|
||||
'cover_image' => 'Образ на корицата',
|
||||
'cover_image_description' => 'Образът трябва да е горе-долу 440х250 пиксела.',
|
||||
|
||||
// Actions
|
||||
'actions' => 'Действия',
|
||||
'view' => 'Преглед',
|
||||
'view_all' => 'Преглед на всички',
|
||||
'new' => 'New',
|
||||
'create' => 'Създай',
|
||||
'new' => 'Ново',
|
||||
'create' => 'Създаване',
|
||||
'update' => 'Обновяване',
|
||||
'edit' => 'Редактиране',
|
||||
'sort' => 'Сортиране',
|
||||
'move' => 'Преместване',
|
||||
'copy' => 'Копирай',
|
||||
'reply' => 'Отговори',
|
||||
'delete' => 'Изтрий',
|
||||
'delete_confirm' => 'Потвърдете изтриването',
|
||||
'search' => 'Търси',
|
||||
'search_clear' => 'Изчисти търсенето',
|
||||
'reset' => 'Нулирай',
|
||||
'copy' => 'Копиране',
|
||||
'reply' => 'Отговор',
|
||||
'delete' => 'Изтриване',
|
||||
'delete_confirm' => 'Потвърждаване на изтриването',
|
||||
'search' => 'Търсене',
|
||||
'search_clear' => 'Изчистване на търсенето',
|
||||
'reset' => 'Нулиране',
|
||||
'remove' => 'Премахване',
|
||||
'add' => 'Добави',
|
||||
'configure' => 'Конфигурирай',
|
||||
'fullscreen' => 'Пълен екран',
|
||||
'favourite' => 'Добави в любими',
|
||||
'unfavourite' => 'Премахни от любими',
|
||||
'next' => 'Следващ',
|
||||
'add' => 'Добавяне',
|
||||
'configure' => 'Конфигуриране',
|
||||
'fullscreen' => 'Цял екран',
|
||||
'favourite' => 'Любимо',
|
||||
'unfavourite' => 'Не е любимо',
|
||||
'next' => 'Напред',
|
||||
'previous' => 'Предишен',
|
||||
'filter_active' => 'Активен филтър:',
|
||||
'filter_clear' => 'Изчисти филтъра',
|
||||
'download' => 'Download',
|
||||
'open_in_tab' => 'Open in Tab',
|
||||
'filter_clear' => 'Изчистване на филтрите',
|
||||
'download' => 'Изтегляне',
|
||||
'open_in_tab' => 'Отваряне в раздел',
|
||||
|
||||
// Sort Options
|
||||
'sort_options' => 'Опции за сортиране',
|
||||
@@ -74,27 +74,27 @@ return [
|
||||
'list_view' => 'Изглед списък',
|
||||
'default' => 'Основен',
|
||||
'breadcrumb' => 'Трасиране',
|
||||
'status' => 'Статус',
|
||||
'status' => 'Състояние',
|
||||
'status_active' => 'Активен',
|
||||
'status_inactive' => 'Неактивен',
|
||||
'never' => 'Никога',
|
||||
'none' => 'Няма',
|
||||
'none' => 'Нищо',
|
||||
|
||||
// Header
|
||||
'homepage' => 'Homepage',
|
||||
'homepage' => 'Начална страница',
|
||||
'header_menu_expand' => 'Разшири заглавното меню',
|
||||
'profile_menu' => 'Профил меню',
|
||||
'view_profile' => 'Разглеждане на профил',
|
||||
'profile_menu' => 'Меню на профила',
|
||||
'view_profile' => 'Преглед на профила',
|
||||
'edit_profile' => 'Редактиране на профила',
|
||||
'dark_mode' => 'Тъмен режим',
|
||||
'light_mode' => 'Светъл режим',
|
||||
'global_search' => 'Global Search',
|
||||
'global_search' => 'Глобално търсене',
|
||||
|
||||
// Layout tabs
|
||||
'tab_info' => 'Информация',
|
||||
'tab_info_label' => 'Таб: Покажи вторична информация',
|
||||
'tab_info' => 'Инфо.',
|
||||
'tab_info_label' => 'Раздел: показва вторична информация',
|
||||
'tab_content' => 'Съдържание',
|
||||
'tab_content_label' => 'Таб: Покажи първично съдържание',
|
||||
'tab_content_label' => 'Раздел: Показва първично съдържание',
|
||||
|
||||
// Email Content
|
||||
'email_action_help' => 'Ако имате проблеми с бутона ":actionText" по-горе, копирайте и поставете URL адреса по-долу в уеб браузъра си:',
|
||||
@@ -102,6 +102,6 @@ return [
|
||||
|
||||
// Footer Link Options
|
||||
// Not directly used but available for convenience to users.
|
||||
'privacy_policy' => 'Лични данни',
|
||||
'terms_of_service' => 'Общи условия',
|
||||
'privacy_policy' => 'Политика за поверителност',
|
||||
'terms_of_service' => 'Условия на услугата',
|
||||
];
|
||||
|
||||
@@ -9,22 +9,22 @@ return [
|
||||
// General editor terms
|
||||
'general' => 'Общи',
|
||||
'advanced' => 'Разширени',
|
||||
'none' => 'Няма',
|
||||
'cancel' => 'Откажи',
|
||||
'save' => 'Запази',
|
||||
'close' => 'Затвори',
|
||||
'undo' => 'Отмени',
|
||||
'redo' => 'Преправи',
|
||||
'none' => 'Нищо',
|
||||
'cancel' => 'Отказ',
|
||||
'save' => 'Запис',
|
||||
'close' => 'Затваряне',
|
||||
'undo' => 'Отмяна',
|
||||
'redo' => 'Повтаряне',
|
||||
'left' => 'Вляво',
|
||||
'center' => 'По средата',
|
||||
'right' => 'Вдясно',
|
||||
'top' => 'Отгоре',
|
||||
'middle' => 'Среда',
|
||||
'bottom' => 'Отдолу',
|
||||
'width' => 'Широчина',
|
||||
'width' => 'Ширина',
|
||||
'height' => 'Височина',
|
||||
'More' => 'Още',
|
||||
'select' => 'Select...',
|
||||
'select' => 'Изберете...',
|
||||
|
||||
// Toolbar
|
||||
'formats' => 'Формати',
|
||||
@@ -50,9 +50,9 @@ return [
|
||||
'custom_color' => 'Цвят по избор',
|
||||
'remove_color' => 'Премахване на цвят',
|
||||
'background_color' => 'Фонов цвят',
|
||||
'align_left' => 'Приравни вляво',
|
||||
'align_center' => 'Приравни в центъра',
|
||||
'align_right' => 'Приравни вдясно',
|
||||
'align_left' => 'Подравняване отляво',
|
||||
'align_center' => 'Подравняване в средата',
|
||||
'align_right' => 'Подравняване отдясно',
|
||||
'align_justify' => 'Justify',
|
||||
'list_bullet' => 'Списък',
|
||||
'list_numbered' => 'Номериран списък',
|
||||
@@ -60,38 +60,38 @@ return [
|
||||
'indent_increase' => 'Увеличаване на отстъпа',
|
||||
'indent_decrease' => 'Намаляване на отстъпа',
|
||||
'table' => 'Таблица',
|
||||
'insert_image' => 'Вмъкни изображение',
|
||||
'insert_image_title' => 'Вмъкни/редактирай изображение',
|
||||
'insert_link' => 'Вмъкни/редактирай връзка',
|
||||
'insert_image' => 'Вмъкване на образ',
|
||||
'insert_image_title' => 'Вмъкване/редактиране на образ',
|
||||
'insert_link' => 'Вмъкване/редактиране на връзка',
|
||||
'insert_link_title' => 'Вмъкни/редактирай връзка',
|
||||
'insert_horizontal_line' => 'Вмъкни хоризонтална линия',
|
||||
'insert_code_block' => 'Въведи код',
|
||||
'insert_horizontal_line' => 'Вмъкване на хоризонтална линия',
|
||||
'insert_code_block' => 'Вмъкване на блок код',
|
||||
'edit_code_block' => 'Edit code block',
|
||||
'insert_drawing' => 'Вмъкни/редактирай рисунка',
|
||||
'insert_drawing' => 'Вмъкване/редактиране на рисунка',
|
||||
'drawing_manager' => 'Управление на рисунките',
|
||||
'insert_media' => 'Вмъкни/редактирай мултимедия',
|
||||
'insert_media_title' => 'Вмъкни/редактирай мултимедия',
|
||||
'clear_formatting' => 'Изчисти форматирането',
|
||||
'insert_media' => 'Вмъкване/редактиране на мултимедията',
|
||||
'insert_media_title' => 'Вмъкване/редактиране на мултимедията',
|
||||
'clear_formatting' => 'Изчистване на форматирането',
|
||||
'source_code' => 'Изходен код',
|
||||
'source_code_title' => 'Изходен код',
|
||||
'fullscreen' => 'Цял екран',
|
||||
'image_options' => 'Настройки на изображението',
|
||||
'image_options' => 'Възможности на образа',
|
||||
|
||||
// Tables
|
||||
'table_properties' => 'Настройки на таблицата',
|
||||
'table_properties_title' => 'Настройки на таблицата',
|
||||
'delete_table' => 'Изтрий таблицата',
|
||||
'table_properties' => 'Свойства на таблицата',
|
||||
'table_properties_title' => 'Свойства на таблица',
|
||||
'delete_table' => 'Изтриване на таблица',
|
||||
'insert_row_before' => 'Вмъкни реда преди',
|
||||
'insert_row_after' => 'Вмъкни реда след',
|
||||
'delete_row' => 'Изтрий реда',
|
||||
'delete_row' => 'Изтриване на ред',
|
||||
'insert_column_before' => 'Вмъкни колоната преди',
|
||||
'insert_column_after' => 'Вмъкни колоната след',
|
||||
'delete_column' => 'Изтрий колоната',
|
||||
'table_cell' => 'Клетка',
|
||||
'table_row' => 'Ред',
|
||||
'table_column' => 'Колона',
|
||||
'cell_properties' => 'Настройки на клетката',
|
||||
'cell_properties_title' => 'Настройки на клетката',
|
||||
'cell_properties' => 'Свойства на клетката',
|
||||
'cell_properties_title' => 'Свойства на клетката',
|
||||
'cell_type' => 'Тип на клетката',
|
||||
'cell_type_cell' => 'Клетка',
|
||||
'cell_scope' => 'Scope',
|
||||
@@ -115,7 +115,7 @@ return [
|
||||
'row_type_header' => 'Заглавка',
|
||||
'row_type_body' => 'Тяло',
|
||||
'row_type_footer' => 'Долна част',
|
||||
'alignment' => 'Разположение',
|
||||
'alignment' => 'Подравняване',
|
||||
'cut_column' => 'Изрежи колоната',
|
||||
'copy_column' => 'Копирай колоната',
|
||||
'paste_column_before' => 'Постави колоната преди',
|
||||
@@ -148,7 +148,7 @@ return [
|
||||
'open_link_in' => 'Open link in...',
|
||||
'open_link_current' => 'Текущ прозорец',
|
||||
'open_link_new' => 'Нов прозорец',
|
||||
'remove_link' => 'Remove link',
|
||||
'remove_link' => 'Премахване на връзка',
|
||||
'insert_collapsible' => 'Вмъкни сгъваем блок',
|
||||
'collapsible_unwrap' => 'Разгъни',
|
||||
'edit_label' => 'Редактирай етикета',
|
||||
@@ -157,10 +157,10 @@ return [
|
||||
'toggle_label' => 'Превключи надписа',
|
||||
|
||||
// About view
|
||||
'about' => 'About the editor',
|
||||
'about' => 'За редактора',
|
||||
'about_title' => 'Относно визуалния редактор',
|
||||
'editor_license' => 'Лиценз, авторски и сходни права на редактора',
|
||||
'editor_tiny_license' => 'This editor is built using :tinyLink which is provided under the MIT license.',
|
||||
'editor_tiny_license' => 'Този редактор е изграден посредством :tinyLink, което е предоставен под лиценз MIT.',
|
||||
'editor_tiny_license_link' => 'Авторското и сходните му права, както и лицензът на TinyMCE, могат да бъдат намерени тук.',
|
||||
'save_continue' => 'Запази страницата и продължи',
|
||||
'callouts_cycle' => '(Продължавай да натискаш, за да превключваш типовете)',
|
||||
@@ -168,7 +168,7 @@ return [
|
||||
'shortcuts' => 'Преки пътища',
|
||||
'shortcut' => 'Пряк път',
|
||||
'shortcuts_intro' => 'Следните клавишни комбинации са налични за редактора:',
|
||||
'windows_linux' => '(Windows/Linux)',
|
||||
'mac' => '(Mac)',
|
||||
'windows_linux' => '(Уиндоус/Линукс)',
|
||||
'mac' => '(Мак.)',
|
||||
'description' => 'Описание',
|
||||
];
|
||||
|
||||
@@ -61,7 +61,7 @@ return [
|
||||
|
||||
// Entities
|
||||
'entity_not_found' => 'Обектът не е намерен',
|
||||
'bookshelf_not_found' => 'Shelf not found',
|
||||
'bookshelf_not_found' => 'Няма намерен рафт',
|
||||
'book_not_found' => 'Книгата не е намерена',
|
||||
'page_not_found' => 'Страницата не е намерена',
|
||||
'chapter_not_found' => 'Главата не е намерена',
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
*/
|
||||
|
||||
return [
|
||||
'shortcuts' => 'Shortcuts',
|
||||
'shortcuts' => 'Преки пътища',
|
||||
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
|
||||
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
|
||||
'shortcuts_customize_desc' => 'You can customize each of the shortcuts below. Just press your desired key combination after selecting the input for a shortcut.',
|
||||
'shortcuts_toggle_label' => 'Keyboard shortcuts enabled',
|
||||
'shortcuts_section_navigation' => 'Navigation',
|
||||
'shortcuts_section_navigation' => 'Навигация',
|
||||
'shortcuts_section_actions' => 'Common Actions',
|
||||
'shortcuts_save' => 'Save Shortcuts',
|
||||
'shortcuts_save' => 'Запазване на преките пътища',
|
||||
'shortcuts_overlay_desc' => 'Note: When shortcuts are enabled a helper overlay is available via pressing "?" which will highlight the available shortcuts for actions currently visible on the screen.',
|
||||
'shortcuts_update_success' => 'Shortcut preferences have been updated!',
|
||||
'shortcuts_update_success' => 'Обновени предпочитания за преки пътища!',
|
||||
];
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Uživatel byl úspěšně odstraněn',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Role byla úspěšně vytvořena',
|
||||
'role_update_notification' => 'Role byla úspěšně aktualizována',
|
||||
'role_delete_notification' => 'Role byla odstraněna',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'okomentoval/a',
|
||||
|
||||
@@ -23,7 +23,7 @@ return [
|
||||
'meta_updated' => 'Aktualizováno :timeLength',
|
||||
'meta_updated_name' => 'Aktualizováno :timeLength uživatelem :user',
|
||||
'meta_owned_name' => 'Vlastník :user',
|
||||
'meta_reference_page_count' => 'Referenced on :count page|Referenced on :count pages',
|
||||
'meta_reference_page_count' => 'Odkazováno na 1 stránce|Odkazováno na :count stranách',
|
||||
'entity_select' => 'Výběr entity',
|
||||
'entity_select_lack_permission' => 'Nemáte dostatečná oprávnění k výběru této položky',
|
||||
'images' => 'Obrázky',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Barevné schéma aplikace',
|
||||
'color_scheme_desc' => 'Nastavte barvy pro použití v rozhraní BookStack. Barvy mohou být nastaveny samostatně pro tmavé a světlé režimy, aby se nejlépe vešly do motivu a zajistila čitelnost.',
|
||||
'ui_colors_desc' => 'Nastavte primární barvu a výchozí barvu odkazů pro BookStack. Hlavní barva se používá hlavně pro banner hlavičky, tlačítka a dekorace rozhraní. Výchozí barva odkazu se používá pro textové odkazy a akce, a to jak v psaném obsahu, tak v rozhraní Bookstack.',
|
||||
'color_scheme_desc' => 'Nastavte barvy pro uživatelské rozhraní. Barvy mohou být konfigurovány samostatně pro tmavý a světlý režim, aby co nejlépe odpovídaly tématu a zajistily čitelnost.',
|
||||
'ui_colors_desc' => 'Nastavte primární barvu aplikace a výchozí barvu odkazu. Primární barva je použitá hlavně na banneru hlavičky, tlačítkách a ozdobách rozhraní. Výchozí barva odkazu se používá pro odkazy a akce napříč psaným textem a rozhraním aplikace.',
|
||||
'app_color' => 'Hlavní barva',
|
||||
'link_color' => 'Výchozí barva odkazu',
|
||||
'content_colors_desc' => 'Nastaví barvy pro všechny prvky v organizační struktuře stránky. Pro lepší čitelnost doporučujeme zvolit barvy s podobným jasem, jakou mají výchozí barvy.',
|
||||
@@ -138,8 +138,8 @@ return [
|
||||
'roles' => 'Role',
|
||||
'role_user_roles' => 'Uživatelské role',
|
||||
'roles_index_desc' => 'Role se používají ke sdružování uživatelů a k poskytování systémových oprávnění jejich členům. Pokud je uživatel členem více rolí, udělená oprávnění budou uložena a uživatel zdědí všechny schopnosti.',
|
||||
'roles_x_users_assigned' => ':count user assigned|:count users assigned',
|
||||
'roles_x_permissions_provided' => ':count permission|:count permissions',
|
||||
'roles_x_users_assigned' => '1 přiřazený uživatel|:count přiřazených uživatelů',
|
||||
'roles_x_permissions_provided' => '1 oprávnění|:count oprávnění',
|
||||
'roles_assigned_users' => 'Přiřazení uživatelé',
|
||||
'roles_permissions_provided' => 'Poskytnutá oprávnění',
|
||||
'role_create' => 'Vytvořit novou roli',
|
||||
@@ -249,7 +249,7 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooky',
|
||||
'webhooks_index_desc' => 'Webhooks jsou způsob, jak odeslat data na externí URL, pokud se vyskytnou určité akce a události v systému, které umožňují integraci událostí s externími platformami, jako jsou systémy zasílání zpráv nebo oznámení.',
|
||||
'webhooks_x_trigger_events' => ':count trigger event|:count trigger events',
|
||||
'webhooks_x_trigger_events' => '1 spouštěcí událost|:count spouštěcích událostí',
|
||||
'webhooks_create' => 'Vytvořit nový webhook',
|
||||
'webhooks_none_created' => 'Žádné webhooky nebyly doposud vytvořeny.',
|
||||
'webhooks_edit' => 'Upravit webhook',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -33,9 +33,9 @@ return [
|
||||
'app_custom_html_desc' => 'Jeder Inhalt, der hier hinzugefügt wird, wird am Ende der <head> Sektion jeder Seite eingefügt. Diese kann praktisch sein, um CSS Styles anzupassen oder Analytics-Code hinzuzufügen.',
|
||||
'app_custom_html_disabled_notice' => 'Benutzerdefinierte HTML-Kopfzeileninhalte sind auf dieser Einstellungsseite deaktiviert, um sicherzustellen, dass alle Änderungen rückgängig gemacht werden können.',
|
||||
'app_logo' => 'Anwendungslogo',
|
||||
'app_logo_desc' => 'This is used in the application header bar, among other areas. This image should be 86px in height. Large images will be scaled down.',
|
||||
'app_icon' => 'Application Icon',
|
||||
'app_icon_desc' => 'This icon is used for browser tabs and shortcut icons. This should be a 256px square PNG image.',
|
||||
'app_logo_desc' => 'Dies wird unter anderem in der Kopfzeile der Anwendung verwendet. Dieses Bild sollte 86px hoch sein. Große Bilder werden herunterskaliert.',
|
||||
'app_icon' => 'Anwendungssymbol',
|
||||
'app_icon_desc' => 'Dieses Symbol wird für Browser-Registerkarten und Verknüpfungssymbole verwendet. Dies sollte ein 256px quadratisches PNG-Bild sein.',
|
||||
'app_homepage' => 'Startseite der Anwendung',
|
||||
'app_homepage_desc' => 'Wählen Sie eine Seite als Startseite aus, die statt der Standardansicht angezeigt werden soll. Seitenberechtigungen werden für die ausgewählten Seiten ignoriert.',
|
||||
'app_homepage_select' => 'Wählen Sie eine Seite aus',
|
||||
@@ -49,12 +49,12 @@ return [
|
||||
'app_disable_comments_desc' => 'Deaktiviert Kommentare über alle Seiten in der Anwendung. Vorhandene Kommentare werden nicht angezeigt.',
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
'color_scheme' => 'Farbschema der Anwendung',
|
||||
'color_scheme_desc' => 'Lege die Farben, die in der Benutzeroberfläche verwendet werden, fest. Farben können separat für dunkle und helle Modi konfiguriert werden, um am besten zum Farbschema zu passen und die Lesbarkeit zu gewährleisten.',
|
||||
'ui_colors_desc' => 'Lege die primäre Farbe und die Standard-Linkfarbe der Anwendung fest. Die primäre Farbe wird hauptsächlich für Kopfzeilen, Buttons und Interface-Dekorationen verwendet. Die Standard-Linkfarbe wird für textbasierte Links und Aktionen sowohl innerhalb des geschriebenen Inhalts als auch in der Benutzeroberfläche verwendet.',
|
||||
'app_color' => 'Primäre Farbe',
|
||||
'link_color' => 'Standard-Linkfarbe',
|
||||
'content_colors_desc' => 'Legt Farben für alle Elemente in der Seitenorganisationshierarchie fest. Die Auswahl von Farben mit einer ähnlichen Helligkeit wie die Standardfarben wird zur Lesbarkeit empfohlen.',
|
||||
'bookshelf_color' => 'Regalfarbe',
|
||||
'book_color' => 'Buchfarbe',
|
||||
'chapter_color' => 'Kapitelfarbe',
|
||||
@@ -139,8 +139,8 @@ Hinweis: Benutzer können ihre E-Mail-Adresse nach erfolgreicher Registrierung
|
||||
'roles' => 'Rollen',
|
||||
'role_user_roles' => 'Benutzer-Rollen',
|
||||
'roles_index_desc' => 'Rollen werden verwendet, um Benutzer zu gruppieren System-Berechtigung für ihre Mitglieder zuzuweisen. Wenn ein Benutzer Mitglied mehrerer Rollen ist, stapeln die gewährten Berechtigungen und der Benutzer wird alle Fähigkeiten erben.',
|
||||
'roles_x_users_assigned' => ':count user assigned|:count users assigned',
|
||||
'roles_x_permissions_provided' => ':count permission|:count permissions',
|
||||
'roles_x_users_assigned' => ':count Benutzer zugewiesen|:count Benutzer zugewiesen',
|
||||
'roles_x_permissions_provided' => ':count Berechtigung|:count Berechtigungen',
|
||||
'roles_assigned_users' => 'Zugewiesene Benutzer',
|
||||
'roles_permissions_provided' => 'Genutzte Berechtigungen',
|
||||
'role_create' => 'Neue Rolle anlegen',
|
||||
@@ -250,7 +250,7 @@ Hinweis: Benutzer können ihre E-Mail-Adresse nach erfolgreicher Registrierung
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_index_desc' => 'Webhooks sind eine Möglichkeit, Daten an externe URLs zu senden, wenn bestimmte Aktionen und Ereignisse im System auftreten, was eine ereignisbasierte Integration mit externen Plattformen wie Messaging- oder Benachrichtigungssystemen ermöglicht.',
|
||||
'webhooks_x_trigger_events' => ':count trigger event|:count trigger events',
|
||||
'webhooks_x_trigger_events' => ':count Auslöserereignis|:count Auslöserereignisse',
|
||||
'webhooks_create' => 'Neuen Webhook erstellen',
|
||||
'webhooks_none_created' => 'Es wurden noch keine Webhooks erstellt.',
|
||||
'webhooks_edit' => 'Webhook bearbeiten',
|
||||
|
||||
@@ -68,7 +68,7 @@ return [
|
||||
'user_delete_notification' => 'Benutzer erfolgreich entfernt',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Rolle erfolgreich angelegt',
|
||||
'role_create_notification' => 'Rolle erfolgreich erstellt',
|
||||
'role_update_notification' => 'Rolle erfolgreich aktualisiert',
|
||||
'role_delete_notification' => 'Rolle erfolgreich gelöscht',
|
||||
|
||||
|
||||
@@ -141,7 +141,7 @@ return [
|
||||
'books_search_this' => 'Dieses Buch durchsuchen',
|
||||
'books_navigation' => 'Buchnavigation',
|
||||
'books_sort' => 'Buchinhalte sortieren',
|
||||
'books_sort_desc' => 'Kapitel und Seiten innerhalb eines Buches verschieben, um dessen Inhalt zu reorganisieren. Andere Bücher können hinzugefügt werden, was das Verschieben von Kapiteln und Seiten zwischen Büchern erleichtert.',
|
||||
'books_sort_desc' => 'Kapitel und Seiten innerhalb eines Buches verschieben, um dessen Inhalt neu zu ordnen. Andere Bücher können hinzugefügt werden, was das Verschieben von Kapiteln und Seiten zwischen Büchern erleichtert.',
|
||||
'books_sort_named' => 'Buch ":bookName" sortieren',
|
||||
'books_sort_name' => 'Sortieren nach Namen',
|
||||
'books_sort_created' => 'Sortieren nach Erstellungsdatum',
|
||||
@@ -150,15 +150,15 @@ return [
|
||||
'books_sort_chapters_last' => 'Kapitel zuletzt',
|
||||
'books_sort_show_other' => 'Andere Bücher anzeigen',
|
||||
'books_sort_save' => 'Neue Reihenfolge speichern',
|
||||
'books_sort_show_other_desc' => 'Füge hier weitere Bücher hinzu, um sie in die Sortierung einzubinden und ermögliche so eine einfache und übergreifende Reorganisation.',
|
||||
'books_sort_show_other_desc' => 'Füge hier weitere Bücher hinzu, um sie in die Sortierung einzubinden und ermögliche so eine einfache und übergreifende Neuordnung.',
|
||||
'books_sort_move_up' => 'Nach oben bewegen',
|
||||
'books_sort_move_down' => 'Nach unten bewegen',
|
||||
'books_sort_move_prev_book' => 'Zum vorherigen Buch verschieben',
|
||||
'books_sort_move_next_book' => 'Zum nächsten Buch verschieben',
|
||||
'books_sort_move_prev_chapter' => 'In das vorherige Kapitel verschieben',
|
||||
'books_sort_move_next_chapter' => 'In nächstes Kapitel verschieben',
|
||||
'books_sort_move_prev_chapter' => 'Ins vorherige Kapitel verschieben',
|
||||
'books_sort_move_next_chapter' => 'Ins nächste Kapitel verschieben',
|
||||
'books_sort_move_book_start' => 'Zum Buchbeginn verschieben',
|
||||
'books_sort_move_book_end' => 'Zum Ende des Buches verschieben',
|
||||
'books_sort_move_book_end' => 'Zum Buchende verschieben',
|
||||
'books_sort_move_before_chapter' => 'Vor Kapitel verschieben',
|
||||
'books_sort_move_after_chapter' => 'Nach Kapitel verschieben',
|
||||
'books_copy' => 'Buch kopieren',
|
||||
|
||||
@@ -50,7 +50,7 @@ return [
|
||||
// Drawing & Images
|
||||
'image_upload_error' => 'Beim Hochladen des Bildes trat ein Fehler auf.',
|
||||
'image_upload_type_error' => 'Der Bildtyp der hochgeladenen Datei ist ungültig.',
|
||||
'drawing_data_not_found' => 'Zeichnungsdaten konnten nicht geladen werden. Die Zeichnungsdatei existiert möglicherweise nicht mehr oder Sie haben nicht die Berechtigung, darauf zuzugreifen.',
|
||||
'drawing_data_not_found' => 'Zeichnungsdaten konnten nicht geladen werden. Die Zeichnungsdatei existiert möglicherweise nicht mehr oder du hast nicht die Berechtigung, darauf zuzugreifen.',
|
||||
|
||||
// Attachments
|
||||
'attachment_not_found' => 'Anhang konnte nicht gefunden werden.',
|
||||
|
||||
@@ -33,9 +33,9 @@ return [
|
||||
'app_custom_html_desc' => 'Jeder Inhalt, der hier hinzugefügt wird, wird am Ende der <head> Sektion jeder Seite eingefügt. Diese kann praktisch sein, um CSS Styles anzupassen oder Analytics-Code hinzuzufügen.',
|
||||
'app_custom_html_disabled_notice' => 'Benutzerdefinierte HTML-Kopfzeileninhalte sind auf dieser Einstellungsseite deaktiviert, um sicherzustellen, dass alle Änderungen rückgängig gemacht werden können.',
|
||||
'app_logo' => 'Anwendungslogo',
|
||||
'app_logo_desc' => 'This is used in the application header bar, among other areas. This image should be 86px in height. Large images will be scaled down.',
|
||||
'app_icon' => 'Application Icon',
|
||||
'app_icon_desc' => 'This icon is used for browser tabs and shortcut icons. This should be a 256px square PNG image.',
|
||||
'app_logo_desc' => 'Dies wird unter anderem in der Kopfzeile der Anwendung verwendet. Dieses Bild sollte 86px hoch sein. Große Bilder werden herunterskaliert.',
|
||||
'app_icon' => 'Anwendungssymbol',
|
||||
'app_icon_desc' => 'Dieses Symbol wird für Browser-Registerkarten und Verknüpfungssymbole verwendet. Dies sollte ein 256px quadratisches PNG-Bild sein.',
|
||||
'app_homepage' => 'Startseite der Anwendung',
|
||||
'app_homepage_desc' => 'Wähle eine Seite als Startseite aus, die statt der Standardansicht angezeigt werden soll. Seitenberechtigungen werden für die ausgewählten Seiten ignoriert.',
|
||||
'app_homepage_select' => 'Wähle eine Seite aus',
|
||||
@@ -49,12 +49,12 @@ return [
|
||||
'app_disable_comments_desc' => 'Deaktiviert Kommentare über alle Seiten in der Anwendung. Vorhandene Kommentare werden nicht angezeigt.',
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
'color_scheme' => 'Farbschema der Anwendung',
|
||||
'color_scheme_desc' => 'Lege die Farben, die in der Benutzeroberfläche verwendet werden, fest. Farben können separat für dunkle und helle Modi konfiguriert werden, um am besten zum Farbschema zu passen und die Lesbarkeit zu gewährleisten.',
|
||||
'ui_colors_desc' => 'Lege die primäre Farbe und die Standard-Linkfarbe der Anwendung fest. Die primäre Farbe wird hauptsächlich für Kopfzeilen, Buttons und Interface-Dekorationen verwendet. Die Standard-Linkfarbe wird für textbasierte Links und Aktionen sowohl innerhalb des geschriebenen Inhalts als auch in der Benutzeroberfläche verwendet.',
|
||||
'app_color' => 'Primäre Farbe',
|
||||
'link_color' => 'Standard-Linkfarbe',
|
||||
'content_colors_desc' => 'Lege Farben für alle Elemente in der Seitenorganisationshierarchie fest. Die Auswahl von Farben mit einer ähnlichen Helligkeit wie die Standardfarben wird zur Lesbarkeit empfohlen.',
|
||||
'bookshelf_color' => 'Regalfarbe',
|
||||
'book_color' => 'Buchfarbe',
|
||||
'chapter_color' => 'Kapitelfarbe',
|
||||
@@ -139,8 +139,8 @@ Hinweis: Benutzer können ihre E-Mail Adresse nach erfolgreicher Registrierung
|
||||
'roles' => 'Rollen',
|
||||
'role_user_roles' => 'Benutzer-Rollen',
|
||||
'roles_index_desc' => 'Rollen werden verwendet, um Benutzer zu gruppieren und System-Berechtigungen für ihre Mitglieder zuzuweisen. Wenn ein Benutzer Mitglied mehrerer Rollen ist, stapeln die gewährten Berechtigungen und der Benutzer wird alle Fähigkeiten erben.',
|
||||
'roles_x_users_assigned' => ':count user assigned|:count users assigned',
|
||||
'roles_x_permissions_provided' => ':count permission|:count permissions',
|
||||
'roles_x_users_assigned' => ':count Benutzer zugewiesen|:count Benutzer zugewiesen',
|
||||
'roles_x_permissions_provided' => ':count Berechtigung|:count Berechtigungen',
|
||||
'roles_assigned_users' => 'Zugewiesene Benutzer',
|
||||
'roles_permissions_provided' => 'Genutzte Berechtigungen',
|
||||
'role_create' => 'Neue Rolle anlegen',
|
||||
@@ -250,7 +250,7 @@ Hinweis: Benutzer können ihre E-Mail Adresse nach erfolgreicher Registrierung
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_index_desc' => 'Webhooks sind eine Möglichkeit, Daten an externe URLs zu senden, wenn bestimmte Aktionen und Ereignisse im System auftreten, was eine ereignisbasierte Integration mit externen Plattformen wie Messaging- oder Benachrichtigungssystemen ermöglicht.',
|
||||
'webhooks_x_trigger_events' => ':count trigger event|:count trigger events',
|
||||
'webhooks_x_trigger_events' => ':count Auslöserereignis|:count Auslöserereignisse',
|
||||
'webhooks_create' => 'Neuen Webhook erstellen',
|
||||
'webhooks_none_created' => 'Es wurden noch keine Webhooks erstellt.',
|
||||
'webhooks_edit' => 'Webhook bearbeiten',
|
||||
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Ο Χρήστης αφαιρέθηκε επιτυχώς',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Ο Ρόλος δημιουργήθηκε με επιτυχία',
|
||||
'role_update_notification' => 'Ο Ρόλος ενημερώθηκε με επιτυχία',
|
||||
'role_delete_notification' => 'Ο Ρόλος διαγράφηκε επιτυχώς',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'σχολίασε',
|
||||
|
||||
@@ -19,11 +19,11 @@ return [
|
||||
'revisions' => 'Αναθεωρήσεις',
|
||||
'meta_revision' => 'Αναθεώρηση #:revisionCount',
|
||||
'meta_created' => 'Δημιουργήθηκε :timeLength',
|
||||
'meta_created_name' => 'Δημιουργήθηκε :timeLength by :user',
|
||||
'meta_created_name' => 'Δημιουργήθηκε :timeLength από :user',
|
||||
'meta_updated' => 'Ενημερώθηκε :timeLength',
|
||||
'meta_updated_name' => 'Ενημερώθηκε :timeLength by :user',
|
||||
'meta_updated_name' => 'Ενημερώθηκε :timeLength από :user',
|
||||
'meta_owned_name' => 'Ανήκει στον :user',
|
||||
'meta_reference_page_count' => 'Referenced on :count page|Referenced on :count pages',
|
||||
'meta_reference_page_count' => 'Αναφορά σε :count σελίδας|Αναφορά στο :count σελίδες',
|
||||
'entity_select' => 'Επιλογή Οντότητας',
|
||||
'entity_select_lack_permission' => 'Δεν έχετε τα απαιτούμενα δικαιώματα για να επιλέξετε αυτό το στοιχείο',
|
||||
'images' => 'Εικόνες',
|
||||
@@ -43,18 +43,18 @@ return [
|
||||
// Permissions and restrictions
|
||||
'permissions' => 'Δικαιώματα',
|
||||
'permissions_desc' => 'Ορίστε εδώ δικαιώματα για να παρακάμψετε τα προκαθορισμένα δικαιώματα που παρέχονται από τους ρόλους των χρηστών.',
|
||||
'permissions_book_cascade' => 'Permissions set on books will automatically cascade to child chapters and pages, unless they have their own permissions defined.',
|
||||
'permissions_chapter_cascade' => 'Permissions set on chapters will automatically cascade to child pages, unless they have their own permissions defined.',
|
||||
'permissions_book_cascade' => 'Τα δικαιώματα που έχουν οριστεί στα Βιβλία θα κλιμακώνονται αυτόματα στα θυγατρικά Κεφάλαια και Σελίδες, εκτός εάν έχουν καθοριστεί διαφορετικά σε αυτά.',
|
||||
'permissions_chapter_cascade' => 'Τα δικαιώματα που έχουν οριστεί στα Κεφάλαια θα κλιμακώνονται αυτόματα στις θυγατρικές Σελίδες, εκτός εάν έχουν καθοριστεί διαφορετικά σε αυτές.',
|
||||
'permissions_save' => 'Αποθήκευση Δικαιωμάτων',
|
||||
'permissions_owner' => 'Ιδιοκτήτης / Κάτοχος',
|
||||
'permissions_role_everyone_else' => 'Everyone Else',
|
||||
'permissions_role_everyone_else' => 'Όλοι Οι Άλλοι',
|
||||
'permissions_role_everyone_else_desc' => 'Ορίστε δικαιώματα για όλους τους ρόλους που δεν παραβλέπονται συγκεκριμένα.',
|
||||
'permissions_role_override' => 'Παράκαμψη δικαιωμάτων για ρόλο',
|
||||
'permissions_inherit_defaults' => 'Κληρονόμηση προεπιλογών',
|
||||
|
||||
// Search
|
||||
'search_results' => 'Αποτελέσματα αναζήτησης',
|
||||
'search_total_results_found' => ':count αποτέλεσμα που βρέθηκε:count συνολικά αποτελέσματα που βρέθηκαν',
|
||||
'search_total_results_found' => 'Βρέθηκε :count αποτέλεσμα|Βρέθηκαν συνολικά :count αποτελέσματα',
|
||||
'search_clear' => 'Καθαρισμός αναζήτησης',
|
||||
'search_no_pages' => 'Καμία σελίδα δεν ταιριάζει με αυτήν την αναζήτηση',
|
||||
'search_for_term' => 'Αναζήτηση για :term',
|
||||
@@ -65,7 +65,7 @@ return [
|
||||
'search_exact_matches' => 'Ακριβείς αντιστοιχίες',
|
||||
'search_tags' => 'Αναζητήσεις Ετικετών',
|
||||
'search_options' => 'Επιλογές',
|
||||
'search_viewed_by_me' => 'Προβλήθηκε από μένα',
|
||||
'search_viewed_by_me' => 'Προβλήθηκε από εμένα',
|
||||
'search_not_viewed_by_me' => 'Δεν προβλήθηκε από εμένα',
|
||||
'search_permissions_set' => 'Τα δικαιώματα ορίστηκαν',
|
||||
'search_created_by_me' => 'Δημιουργήθηκε από εμένα',
|
||||
@@ -141,7 +141,7 @@ return [
|
||||
'books_search_this' => 'Αναζήτηση σε αυτό το βιβλίο',
|
||||
'books_navigation' => 'Πλοήγηση Βιβλίου',
|
||||
'books_sort' => 'Ταξινόμηση Περιεχομένων Βιβλίου',
|
||||
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books.',
|
||||
'books_sort_desc' => 'Μετακινήστε κεφάλαια και σελίδες μέσα σε ένα βιβλίο για να αναδιοργανώσετε τα περιεχόμενά του. Μπορούν να προστεθούν και άλλα βιβλία, και επιτρέπουν την εύκολη μετακίνηση κεφαλαίων και σελίδων μεταξύ βιβλίων.',
|
||||
'books_sort_named' => 'Ταξινόμηση Βιβλίου :bookname',
|
||||
'books_sort_name' => 'Ταξινόμηση κατά όνομα',
|
||||
'books_sort_created' => 'Ταξινόμηση κατά ημερομηνία δημιουργίας',
|
||||
@@ -150,24 +150,24 @@ return [
|
||||
'books_sort_chapters_last' => 'Τελευταία Κεφάλαια',
|
||||
'books_sort_show_other' => 'Εμφάνιση Άλλων Βιβλίων',
|
||||
'books_sort_save' => 'Αποθήκευση Νέας Ταξινόμησης',
|
||||
'books_sort_show_other_desc' => 'Add other books here to include them in the sort operation, and allow easy cross-book reorganisation.',
|
||||
'books_sort_move_up' => 'Move Up',
|
||||
'books_sort_move_down' => 'Move Down',
|
||||
'books_sort_move_prev_book' => 'Move to Previous Book',
|
||||
'books_sort_move_next_book' => 'Move to Next Book',
|
||||
'books_sort_move_prev_chapter' => 'Move Into Previous Chapter',
|
||||
'books_sort_move_next_chapter' => 'Move Into Next Chapter',
|
||||
'books_sort_move_book_start' => 'Move to Start of Book',
|
||||
'books_sort_move_book_end' => 'Move to End of Book',
|
||||
'books_sort_move_before_chapter' => 'Move to Before Chapter',
|
||||
'books_sort_move_after_chapter' => 'Move to After Chapter',
|
||||
'books_sort_show_other_desc' => 'Προσθέστε άλλα βιβλία εδώ για να τα συμπεριλάβετε στην ταξινόμηση και να επιτρέψετε την εύκολη αναδιοργάνωση μεταξύ των βιβλίων.',
|
||||
'books_sort_move_up' => 'Μετακίνηση προς τα Επάνω',
|
||||
'books_sort_move_down' => 'Μετακίνηση προς τα Κάτω',
|
||||
'books_sort_move_prev_book' => 'Μετακίνηση στο προηγούμενο Βιβλίο',
|
||||
'books_sort_move_next_book' => 'Μετακίνηση στο επόμενο Βιβλίο',
|
||||
'books_sort_move_prev_chapter' => 'Μετακίνηση στο προηγούμενο Κεφάλαιο',
|
||||
'books_sort_move_next_chapter' => 'Μετακίνηση στο επόμενο Κεφάλαιο',
|
||||
'books_sort_move_book_start' => 'Μετακίνηση στην Αρχή του Βιβλίου',
|
||||
'books_sort_move_book_end' => 'Μετακίνηση στο Τέλος του Βιβλίου',
|
||||
'books_sort_move_before_chapter' => 'Μετακίνηση στο προηγούμενο Κεφάλαιο',
|
||||
'books_sort_move_after_chapter' => 'Μετακίνηση στο επόμενο Κεφάλαιο',
|
||||
'books_copy' => 'Αντιγραφή Βιβλίου',
|
||||
'books_copy_success' => 'Το βιβλίο αντιγράφηκε επιτυχώς',
|
||||
|
||||
// Chapters
|
||||
'chapter' => 'Κεφάλαιο',
|
||||
'chapters' => 'Κεφάλαια',
|
||||
'x_chapters' => ':count Κεφάλαιο:count Κεφάλαια',
|
||||
'x_chapters' => ':count Κεφάλαιο|:count Κεφάλαια',
|
||||
'chapters_popular' => 'Δημοφιλή Κεφάλαια',
|
||||
'chapters_new' => 'Νέο Κεφάλαιο',
|
||||
'chapters_create' => 'Δημιουργία Νέου Κεφαλαίου',
|
||||
@@ -193,7 +193,7 @@ return [
|
||||
// Pages
|
||||
'page' => 'Σελίδα',
|
||||
'pages' => 'Σελίδες',
|
||||
'x_pages' => ':count Σελίδα:count Σελίδες',
|
||||
'x_pages' => ':count Σελίδα|:count Σελίδες',
|
||||
'pages_popular' => 'Δημοφιλείς Σελίδες',
|
||||
'pages_new' => 'Νέα Σελίδα',
|
||||
'pages_attachments' => 'Συνημμένα',
|
||||
@@ -248,7 +248,7 @@ return [
|
||||
'pages_permissions_success' => 'Τα δικαιώματα σελίδας ενημερώθηκαν',
|
||||
'pages_revision' => 'Αναθεώρηση',
|
||||
'pages_revisions' => 'Αναθεωρήσεις Σελίδας',
|
||||
'pages_revisions_desc' => 'Listed below are all the past revisions of this page. You can look back upon, compare, and restore old page versions if permissions allow. The full history of the page may not be fully reflected here since, depending on system configuration, old revisions could be auto-deleted.',
|
||||
'pages_revisions_desc' => 'Παρακάτω αναφέρονται όλες οι προηγούμενες αναθεωρήσεις αυτής της Σελίδας. Μπορείτε να αναζητήσετε αντίγραφα ασφαλείας, να συγκρίνετε και να επαναφέρετε παλιές εκδόσεις Σελίδας, εάν τα δικαιώματα το επιτρέπουν. Το πλήρες ιστορικό της Σελίδας μπορεί να μην αντανακλάται πλήρως εδώ επειδή, ανάλογα με τη διαμόρφωση του συστήματος, οι παλιές αναθεωρήσεις θα μπορούσαν να διαγραφούν αυτόματα.',
|
||||
'pages_revisions_named' => 'Αναθεωρήσεις σελίδας για :pageName',
|
||||
'pages_revision_named' => 'Αναθεώρηση σελίδας για :pageName',
|
||||
'pages_revision_restored_from' => 'Επαναφορά από #:id; :summary',
|
||||
@@ -292,7 +292,7 @@ return [
|
||||
'shelf_tags' => 'Ετικέτες Ραφιών',
|
||||
'tag' => 'Ετικέτα',
|
||||
'tags' => 'Ετικέτες',
|
||||
'tags_index_desc' => 'Tags can be applied to content within the system to apply a flexible form of categorization. Tags can have both a key and value, with the value being optional. Once applied, content can then be queried using the tag name and value.',
|
||||
'tags_index_desc' => 'Οι Ετικέτες μπορούν να εφαρμοστούν στο περιεχόμενο μέσα στο σύστημα για να εφαρμοστεί μια ευέλικτη μορφή κατηγοριοποίησης. Οι Ετικέτες μπορούν να έχουν τόσο κλειδί όσο και αξία, με την τιμή να είναι προαιρετική. Μόλις εφαρμοστεί, μπορεί να παρθεί περιεχόμενο χρησιμοποιώντας το όνομα της Ετικέτας και την τιμή.',
|
||||
'tag_name' => 'Όνομα Ετικέτας',
|
||||
'tag_value' => 'Τιμή Ετικέτας (Προαιρετικό)',
|
||||
'tags_explain' => "Προσθέστε μερικές ετικέτες για να κατηγοριοποιήσετε καλύτερα το περιεχόμενό σας. \n Μπορείτε να αντιστοιχίσετε μια τιμή σε μια ετικέτα για πιο αναλυτική οργάνωση.",
|
||||
@@ -354,7 +354,7 @@ return [
|
||||
'comments' => 'Σχόλια',
|
||||
'comment_add' => 'Προσθήκη Σχολίου',
|
||||
'comment_placeholder' => 'Αφήστε ένα σχόλιο εδώ',
|
||||
'comment_count' => '{0} Κανένα σχόλιο{1} 1 Σχόλιο [2,*] :count Σχόλια',
|
||||
'comment_count' => '{0} Κανένα Σχόλιο |{1} 1 Σχόλιο |[2,*] :count Σχόλια',
|
||||
'comment_save' => 'Αποθήκευση Σχολίου',
|
||||
'comment_saving' => 'Αποθήκευση σχολίου...',
|
||||
'comment_deleting' => 'Διαγραφή σχολίου...',
|
||||
|
||||
@@ -50,7 +50,7 @@ return [
|
||||
// Drawing & Images
|
||||
'image_upload_error' => 'Παρουσιάστηκε σφάλμα κατά το ανέβασμα της εικόνας.',
|
||||
'image_upload_type_error' => 'Ο τύπος εικόνας που μεταφορτώθηκε δεν είναι έγκυρος',
|
||||
'drawing_data_not_found' => 'Drawing data could not be loaded. The drawing file might no longer exist or you may not have permission to access it.',
|
||||
'drawing_data_not_found' => 'Δεν ήταν δυνατή η φόρτωση δεδομένων σχεδίασης. Το αρχείο σχεδίασης ενδέχεται να μην υπάρχει πλέον ή ενδέχεται να μην έχετε άδεια πρόσβασης σε αυτά.',
|
||||
|
||||
// Attachments
|
||||
'attachment_not_found' => 'Το συνημμένο δεν βρέθηκε',
|
||||
|
||||
@@ -33,9 +33,9 @@ return [
|
||||
'app_custom_html_desc' => 'Οποιοδήποτε περιεχόμενο προστίθεται εδώ θα εισαχθεί στο κάτω μέρος της ενότητας <head> κάθε σελίδας. Αυτό είναι βολικό για την παράκαμψη ή προσθήκη στυλ καθώς και την προσθήκη κώδικα αναλυτικών στοιχείων.',
|
||||
'app_custom_html_disabled_notice' => 'Το προσαρμοσμένο περιεχόμενο κεφαλίδας HTML είναι απενεργοποιημένο σε αυτήν τη σελίδα ρυθμίσεων, για να διασφαλιστεί ότι τυχόν αλλαγές που θα πραγματοποιηθούν και θα προκαλέσουν δυσλειτουργία στην ιστοσελίδα σας, μπορούν να επαναφερθούν.',
|
||||
'app_logo' => 'Λογότυπο εφαρμογής',
|
||||
'app_logo_desc' => 'This is used in the application header bar, among other areas. This image should be 86px in height. Large images will be scaled down.',
|
||||
'app_icon' => 'Application Icon',
|
||||
'app_icon_desc' => 'This icon is used for browser tabs and shortcut icons. This should be a 256px square PNG image.',
|
||||
'app_logo_desc' => 'Αυτό χρησιμοποιείται στη γραμμή κεφαλίδας εφαρμογής, μεταξύ άλλων περιοχών. Αυτή η εικόνα θα πρέπει να είναι 86px σε ύψος. Οι μεγάλες εικόνες θα κλιμακωθούν.',
|
||||
'app_icon' => 'Εικονίδιο Εφαρμογής',
|
||||
'app_icon_desc' => 'Αυτό το εικονίδιο χρησιμοποιείται για τις καρτέλες περιηγητή και τα εικονίδια συντομεύσεων. Αυτό πρέπει να είναι μια τετράγωνη εικόνα 256px σε μορφή PNG.',
|
||||
'app_homepage' => 'Αρχική σελίδα εφαρμογής',
|
||||
'app_homepage_desc' => 'Επιλέξτε μια προβολή για εμφάνιση στην αρχική σελίδα αντί για την προεπιλεγμένη προβολή. Τα δικαιώματα σελίδων αγνοούνται για επιλεγμένες σελίδες.',
|
||||
'app_homepage_select' => 'Επιλέξτε μια σελίδα',
|
||||
@@ -49,12 +49,12 @@ return [
|
||||
'app_disable_comments_desc' => 'Απενεργοποιεί τα σχόλια σε όλες τις σελίδες της εφαρμογής. <br> Τα υπάρχοντα σχόλια δεν εμφανίζονται.',
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
'color_scheme' => 'Θέμα Χρωμάτων Εφαρμογής',
|
||||
'color_scheme_desc' => 'Ορίστε τα χρώματα που θα χρησιμοποιηθούν στο περιβάλλον χρήστη της εφαρμογής. Τα χρώματα μπορούν να ρυθμιστούν ξεχωριστά για τις λειτουργίες Σκούρο ή Λευκό, για να ταιριάζει καλύτερα στο θέμα και να εξασφαλίσει αναγνωσιμότητα.',
|
||||
'ui_colors_desc' => 'Ορίστε το πρωτεύον χρώμα της εφαρμογής και το προεπιλεγμένο χρώμα συνδέσμου. Το πρωτεύον χρώμα χρησιμοποιείται κυρίως για την κεφαλίδα, τα κουμπιά και τις διακοσμήσεις διεπαφής. Το προεπιλεγμένο χρώμα συνδέσμου χρησιμοποιείται για συνδέσμους και ενέργειες που βασίζονται στο κείμενο, τόσο μέσα στο γραπτό περιεχόμενο όσο και στη διεπαφή της εφαρμογής.',
|
||||
'app_color' => 'Κυρίως χρώμα',
|
||||
'link_color' => 'Κυρίως χρώμα Συνδέσμου',
|
||||
'content_colors_desc' => 'Ορίζει τα χρώματα για όλα τα στοιχεία στην ιεραρχία οργάνωσης της ιστοσελίδας. Συνιστάται η επιλογή χρωμάτων με παρόμοια φωτεινότητα με τα προεπιλεγμένα, για μέγιστη αναγνωσιμότητα.',
|
||||
'bookshelf_color' => 'Χρώμα Ραφιού',
|
||||
'book_color' => 'Χρώμα Βιβλίων',
|
||||
'chapter_color' => 'Χρώμα Κεφαλαίων Βιβλίων',
|
||||
@@ -137,9 +137,9 @@ return [
|
||||
// Role Settings
|
||||
'roles' => 'Ρόλοι',
|
||||
'role_user_roles' => 'Ρόλοι Χρηστών',
|
||||
'roles_index_desc' => 'Roles are used to group users & provide system permission to their members. When a user is a member of multiple roles the privileges granted will stack and the user will inherit all abilities.',
|
||||
'roles_x_users_assigned' => ':count user assigned|:count users assigned',
|
||||
'roles_x_permissions_provided' => ':count permission|:count permissions',
|
||||
'roles_index_desc' => 'Οι Ρόλοι χρησιμοποιούνται για την ομαδοποίηση των χρηστών και παρέχουν δικαιώματα για το σύστημα στα μέλη τους. Όταν ένας χρήστης είναι μέλος πολλαπλών Ρόλων, ο χρήστης θα κληρονομεί όλες τις ιδιότητες από όλους τους Ρόλους που ανήκει.',
|
||||
'roles_x_users_assigned' => ':count εκχωρημένος χρήστης|:count εκχωρημένοι χρήστες',
|
||||
'roles_x_permissions_provided' => ':count άδεια|:count άδειες',
|
||||
'roles_assigned_users' => 'Εκχωρημένοι χρήστες',
|
||||
'roles_permissions_provided' => 'Παρεχόμενα Δικαιώματα',
|
||||
'role_create' => 'Δημιουργία νέου ρόλου',
|
||||
@@ -178,7 +178,7 @@ return [
|
||||
|
||||
// Users
|
||||
'users' => 'Χρήστες',
|
||||
'users_index_desc' => 'Create & manage individual user accounts within the system. User accounts are used for login and attribution of content & activity. Access permissions are primarily role-based but user content ownership, among other factors, may also affect permissions & access.',
|
||||
'users_index_desc' => 'Δημιουργία & διαχείριση μεμονωμένων λογαριασμών χρήστη μέσα στο σύστημα. Οι λογαριασμοί χρήστη χρησιμοποιούνται για τη σύνδεση και την απόδοση του περιεχομένου & δραστηριότητα. Τα δικαιώματα πρόσβασης βασίζονται κυρίως σε Ρόλους, αλλά η κυριότητα του περιεχομένου του χρήστη, μεταξύ άλλων παραγόντων, μπορεί επίσης να επηρεάσει τα δικαιώματα & την πρόσβαση.',
|
||||
'user_profile' => 'Προφίλ Χρήστη',
|
||||
'users_add_new' => 'Προσθήκη νέου Χρήστη',
|
||||
'users_search' => 'Αναζήτηση Χρηστών',
|
||||
@@ -222,7 +222,7 @@ return [
|
||||
'users_api_tokens_docs' => 'Τεκμηρίωση API',
|
||||
'users_mfa' => 'Έλεγχος Ταυτοτητας Πολλαπλων Παραγοντων',
|
||||
'users_mfa_desc' => 'Ρυθμίστε τον έλεγχο ταυτότητας πολλαπλών παραγόντων ως ένα επιπλέον επίπεδο ασφάλειας για τον λογαριασμό χρήστη σας.',
|
||||
'users_mfa_x_methods' => ':count μέθοδος έχει ρυθμιστεί:count μέθοδοι',
|
||||
'users_mfa_x_methods' => 'Έχει ρυθμιστεί :count μέθοδος|Έχουν ρυθμιστεί :count μέθοδοι',
|
||||
'users_mfa_configure' => 'Ρύθμιση Μεθόδων',
|
||||
|
||||
// API Tokens
|
||||
@@ -248,8 +248,8 @@ return [
|
||||
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_index_desc' => 'Webhooks are a way to send data to external URLs when certain actions and events occur within the system which allows event-based integration with external platforms such as messaging or notification systems.',
|
||||
'webhooks_x_trigger_events' => ':count trigger event|:count trigger events',
|
||||
'webhooks_index_desc' => 'Τα Webhooks είναι ένας τρόπος αποστολής δεδομένων σε εξωτερικές διευθύνσεις URL όταν ορισμένες ενέργειες και συμβάντα συμβαίνουν στο σύστημα που επιτρέπει την ενσωμάτωση με εξωτερικές πλατφόρμες όπως συστήματα μηνυμάτων ή ειδοποιήσεων.',
|
||||
'webhooks_x_trigger_events' => ':count συμβάν ενεργοποίησης|:count συμβάντα ενεργοποίησης',
|
||||
'webhooks_create' => 'Δημιουργία νέου Webhook',
|
||||
'webhooks_none_created' => 'Δεν έχουν δημιουργηθεί ακόμη webhook.',
|
||||
'webhooks_edit' => 'Επεξεργασία Webhook',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Esquema de color de la aplicación',
|
||||
'color_scheme_desc' => 'Establecer los colores a usar en la interfaz de BookStack. Los colores pueden configurarse por separado para que los modos oscuros y claros se ajusten mejor al tema y garanticen la legibilidad.',
|
||||
'ui_colors_desc' => 'Establezca el color principal y el color de los enlaces para BookStack. El color principal se utiliza principalmente para la cabecera, botones y decoraciones de la interfaz. El color de los enlaces se utiliza para enlaces y acciones de texto, tanto dentro del contenido escrito como en la interfaz de Bookstack.',
|
||||
'color_scheme_desc' => 'Establece los colores a usar en la interfaz de BookStack. Los colores pueden configurarse por separado para que los modos oscuros y claros se ajusten mejor al tema y garanticen la legibilidad.',
|
||||
'ui_colors_desc' => 'Establece el color principal y el color de los enlaces para BookStack. El color principal se utiliza principalmente para la cabecera, botones y decoraciones de la interfaz. El color de los enlaces se utiliza para enlaces y acciones de texto, tanto dentro del contenido escrito como en la interfaz de Bookstack.',
|
||||
'app_color' => 'Color principal',
|
||||
'link_color' => 'Color de enlaces por defecto',
|
||||
'content_colors_desc' => 'Establece los colores para todos los elementos en la jerarquía de la organización de la página. Se recomienda elegir colores con un brillo similar al predeterminado para mayor legibilidad.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Esquema de color de la aplicación',
|
||||
'color_scheme_desc' => 'Establecer los colores a usar en la interfaz de BookStack. Los colores pueden configurarse por separado para que los modos oscuros y claros se ajusten mejor al tema y garanticen la legibilidad.',
|
||||
'ui_colors_desc' => 'Establezca el color principal y el color de los enlaces para BookStack. El color principal se utiliza principalmente para la cabecera, botones y decoraciones de la interfaz. El color de los enlaces se utiliza para enlaces y acciones de texto, tanto dentro del contenido escrito como en la interfaz de Bookstack.',
|
||||
'color_scheme_desc' => 'Establece los colores a usar en la interfaz de BookStack. Los colores pueden configurarse por separado para que los modos oscuros y claros se ajusten mejor al tema y garanticen la legibilidad.',
|
||||
'ui_colors_desc' => 'Establece el color principal y el color de los enlaces para BookStack. El color principal se utiliza principalmente para la cabecera, botones y decoraciones de la interfaz. El color de los enlaces se utiliza para enlaces y acciones de texto, tanto dentro del contenido escrito como en la interfaz de Bookstack.',
|
||||
'app_color' => 'Color principal',
|
||||
'link_color' => 'Color de enlaces por defecto',
|
||||
'content_colors_desc' => 'Establece los colores para todos los elementos en la jerarquía de la organización de la página. Se recomienda elegir colores con un brillo similar al predeterminado para mayor legibilidad.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Rakenduse värvid',
|
||||
'color_scheme_desc' => 'Määra BookStack\'i kasutajaliidese värvid. Tumeda ja heleda režiimi värve saab sobivuse ja loetavuse huvides eraldi seadistada.',
|
||||
'ui_colors_desc' => 'Määra BookStack\'i põhivärv ja vaikimisi linkide värv. Põhivärvi kasutatakse peamiselt päise, nuppude ning kasutajaliidese dekoratsioonide jaoks. Vaikimisi linkide värvi kasutatakse tekstipõhiste linkide ja tegevuste jaoks, nii kirjalikus sisus kui BookStack\'i kasutajaliideses.',
|
||||
'color_scheme_desc' => 'Määra rakenduse kasutajaliidese värvid. Tumeda ja heleda režiimi värve saab sobivuse ja loetavuse huvides eraldi seadistada.',
|
||||
'ui_colors_desc' => 'Määra rakenduse põhivärv ja vaikimisi linkide värv. Põhivärvi kasutatakse peamiselt päise, nuppude ning kasutajaliidese dekoratsioonide jaoks. Vaikimisi linkide värvi kasutatakse tekstipõhiste linkide ja tegevuste jaoks, nii kirjalikus sisus kui rakenduse kasutajaliideses.',
|
||||
'app_color' => 'Põhivärv',
|
||||
'link_color' => 'Vaikimisi linkide värv',
|
||||
'content_colors_desc' => 'Määra värvid erinevatele sisuelementidele. Loetavuse huvides on soovituslik valida värvid, mille heledus on sarnane vaikimisi värvidele.',
|
||||
|
||||
@@ -42,14 +42,14 @@ return [
|
||||
|
||||
// Permissions and restrictions
|
||||
'permissions' => 'Baimenak',
|
||||
'permissions_desc' => 'Set permissions here to override the default permissions provided by user roles.',
|
||||
'permissions_desc' => 'Ezarri baimenak hemen, erabiltzaileen rolek ematen dituzten baimenak gainidazteko.',
|
||||
'permissions_book_cascade' => 'Permissions set on books will automatically cascade to child chapters and pages, unless they have their own permissions defined.',
|
||||
'permissions_chapter_cascade' => 'Permissions set on chapters will automatically cascade to child pages, unless they have their own permissions defined.',
|
||||
'permissions_save' => 'Gorde baimenak',
|
||||
'permissions_owner' => 'Jabea',
|
||||
'permissions_role_everyone_else' => 'Everyone Else',
|
||||
'permissions_role_everyone_else_desc' => 'Set permissions for all roles not specifically overridden.',
|
||||
'permissions_role_override' => 'Override permissions for role',
|
||||
'permissions_role_override' => 'Gainidatzi baimenak rol honi',
|
||||
'permissions_inherit_defaults' => 'Inherit defaults',
|
||||
|
||||
// Search
|
||||
@@ -102,13 +102,13 @@ return [
|
||||
'shelves_delete_named' => 'Delete Shelf :name',
|
||||
'shelves_delete_explain' => "This will delete the shelf with the name ':name'. Contained books will not be deleted.",
|
||||
'shelves_delete_confirmation' => 'Are you sure you want to delete this shelf?',
|
||||
'shelves_permissions' => 'Shelf Permissions',
|
||||
'shelves_permissions_updated' => 'Shelf Permissions Updated',
|
||||
'shelves_permissions_active' => 'Shelf Permissions Active',
|
||||
'shelves_permissions_cascade_warning' => 'Permissions on shelves do not automatically cascade to contained books. This is because a book can exist on multiple shelves. Permissions can however be copied down to child books using the option found below.',
|
||||
'shelves_permissions' => 'Apalategi baimenak',
|
||||
'shelves_permissions_updated' => 'Apalategi baimenak eguneratuta',
|
||||
'shelves_permissions_active' => 'Apalategi baimenak aktibatuta',
|
||||
'shelves_permissions_cascade_warning' => 'Apaletako baimenak ez dira automatikoki hauen barneko liburuetan gordeko. Liburu bat apalategi askotan egon daitekeelako. Hala ere, baimenak apalategiko liburutara kopiatu daitezke, behean agertzen den aukera erabiliz.',
|
||||
'shelves_copy_permissions_to_books' => 'Kopiatu baimenak liburura',
|
||||
'shelves_copy_permissions' => 'Gorde baimenak',
|
||||
'shelves_copy_permissions_explain' => 'This will apply the current permission settings of this shelf to all books contained within. Before activating, ensure any changes to the permissions of this shelf have been saved.',
|
||||
'shelves_copy_permissions_explain' => 'Honek apalategi honen egungo baimen-konfigurazioa aplikatuko die barruan dauden liburu guztiei. Aktibatu aurretik, ziurtatu apaletan aldaketak gorde direla.',
|
||||
'shelves_copy_permission_success' => 'Shelf permissions copied to :count books',
|
||||
|
||||
// Books
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'کاربر با موفقیت حذف شد',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'نقش با موفقیت ایجاد شد',
|
||||
'role_update_notification' => 'نقش با موفقیت به روز شد',
|
||||
'role_delete_notification' => 'نقش با موفقیت حذف شد',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'ثبت دیدگاه',
|
||||
|
||||
@@ -40,8 +40,8 @@ return [
|
||||
|
||||
// Login auto-initiation
|
||||
'auto_init_starting' => 'تلاش برای ورود',
|
||||
'auto_init_starting_desc' => 'We\'re contacting your authentication system to start the login process. If there\'s no progress after 5 seconds you can try clicking the link below.',
|
||||
'auto_init_start_link' => 'Proceed with authentication',
|
||||
'auto_init_starting_desc' => 'برای شروع فرآیند ورود به سیستم با سیستم احراز هویت شما تماس می گیریم. اگر بعد از 5 ثانیه پیشرفتی حاصل نشد، می توانید روی لینک زیر کلیک کنید.',
|
||||
'auto_init_start_link' => 'احراز هویت را ادامه دهید',
|
||||
|
||||
// Password Reset
|
||||
'reset_password' => 'بازنشانی کلمه عبور',
|
||||
@@ -61,8 +61,8 @@ return [
|
||||
'email_confirm_send_error' => 'تایید پست الکترونیک الزامی می باشد، اما سیستم قادر به ارسال پیام نمی باشد.',
|
||||
'email_confirm_success' => 'ایمیل شما تایید شد! اکنون باید بتوانید با استفاده از این آدرس ایمیل وارد شوید.',
|
||||
'email_confirm_resent' => 'پیام تایید پست الکترونیک مجدد ارسال گردید، لطفا صندوق ورودی خود را بررسی نمایید.',
|
||||
'email_confirm_thanks' => 'Thanks for confirming!',
|
||||
'email_confirm_thanks_desc' => 'Please wait a moment while your confirmation is handled. If you are not redirected after 3 seconds press the "Continue" link below to proceed.',
|
||||
'email_confirm_thanks' => 'تشکر بابت تایید!',
|
||||
'email_confirm_thanks_desc' => 'لطفاً یک لحظه صبر کنید تا تأیید شما بررسی شود. اگر بعد از 3 ثانیه هدایت نشدید، بر روی لینک "ادامه" کلیک کنید تا ادامه دهید.',
|
||||
|
||||
'email_not_confirmed' => 'پست الکترونیک تایید نشده است',
|
||||
'email_not_confirmed_text' => 'پست الکترونیک شما هنوز تایید نشده است.',
|
||||
|
||||
@@ -88,7 +88,7 @@ return [
|
||||
'edit_profile' => 'ویرایش پروفایل',
|
||||
'dark_mode' => 'حالت تاریک',
|
||||
'light_mode' => 'حالت روشن',
|
||||
'global_search' => 'Global Search',
|
||||
'global_search' => 'جستجوی سراسری',
|
||||
|
||||
// Layout tabs
|
||||
'tab_info' => 'اطلاعات',
|
||||
|
||||
@@ -66,7 +66,7 @@ return [
|
||||
'insert_link_title' => 'افزودن/ویرایش پیوند',
|
||||
'insert_horizontal_line' => 'افزودن خط افقی',
|
||||
'insert_code_block' => 'افزودن بلوک کد',
|
||||
'edit_code_block' => 'Edit code block',
|
||||
'edit_code_block' => 'code block را ویرایش کنید',
|
||||
'insert_drawing' => 'افزودن/ویرایش طرح',
|
||||
'drawing_manager' => 'مدیریت طراحی',
|
||||
'insert_media' => 'افزودن/ویرایش رسانه',
|
||||
@@ -165,7 +165,7 @@ return [
|
||||
'save_continue' => 'ذخیره صفحه و ادامه',
|
||||
'callouts_cycle' => '(جهت تغییر نوع ها چندین بار فشار دهید)',
|
||||
'link_selector' => 'پیوند به محتوا',
|
||||
'shortcuts' => 'میانبرها',
|
||||
'shortcuts' => 'کلیدهای میانبر',
|
||||
'shortcut' => 'میانبر',
|
||||
'shortcuts_intro' => 'میانبرهای قابل استفاده در این ویرایشگر:',
|
||||
'windows_linux' => '(ویندوز/لینوکس)',
|
||||
|
||||
@@ -22,7 +22,7 @@ return [
|
||||
'meta_created_name' => 'ایجاد شده :timeLength توسط :user',
|
||||
'meta_updated' => 'به روزرسانی شده :timeLength',
|
||||
'meta_updated_name' => 'به روزرسانی شده :timeLength توسط :user',
|
||||
'meta_owned_name' => 'توسط :user ایجاد شدهاست',
|
||||
'meta_owned_name' => 'متعلق به :user',
|
||||
'meta_reference_page_count' => 'Referenced on :count page|Referenced on :count pages',
|
||||
'entity_select' => 'انتخاب موجودیت',
|
||||
'entity_select_lack_permission' => 'شما مجوزهای لازم برای انتخاب این مورد را ندارید',
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
*/
|
||||
|
||||
return [
|
||||
'shortcuts' => 'Shortcuts',
|
||||
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
|
||||
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
|
||||
'shortcuts_customize_desc' => 'You can customize each of the shortcuts below. Just press your desired key combination after selecting the input for a shortcut.',
|
||||
'shortcuts_toggle_label' => 'Keyboard shortcuts enabled',
|
||||
'shortcuts_section_navigation' => 'Navigation',
|
||||
'shortcuts_section_actions' => 'Common Actions',
|
||||
'shortcuts_save' => 'Save Shortcuts',
|
||||
'shortcuts_overlay_desc' => 'Note: When shortcuts are enabled a helper overlay is available via pressing "?" which will highlight the available shortcuts for actions currently visible on the screen.',
|
||||
'shortcuts_update_success' => 'Shortcut preferences have been updated!',
|
||||
'shortcuts' => 'میانبرها',
|
||||
'shortcuts_interface' => 'میانبرهای صفحه کلید',
|
||||
'shortcuts_toggle_desc' => 'در اینجا می توانید میانبرهای سیستم را که برای پیمایش و ... استفاده می شود، فعال یا غیرفعال کنید.',
|
||||
'shortcuts_customize_desc' => 'می توانید هر یک از میانبرهای زیر را سفارشی کنید. کافی است پس از انتخاب ورودی برای میانبر، کلید ترکیبی مورد نظر خود را فشار دهید.',
|
||||
'shortcuts_toggle_label' => 'میانبرهای صفحه کلید فعال شد',
|
||||
'shortcuts_section_navigation' => 'ناوبری و پیمایش',
|
||||
'shortcuts_section_actions' => 'فعالیت/اقدامات مرسوم',
|
||||
'shortcuts_save' => 'ذخیره کلیدهای میانبر',
|
||||
'shortcuts_overlay_desc' => 'توجه: هنگامی که میانبرها فعال هستند، یک رابط کمکی با فشار دادن "؟" در دسترس است که میانبرهای موجود برای اقداماتی که در حال حاضر روی صفحه قابل مشاهده است را برجسته میکند.',
|
||||
'shortcuts_update_success' => 'تنظیمات میانبر به روز شده است!',
|
||||
];
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'ترکیب رنگی برنامه',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Utilisateur supprimé avec succès',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Rôle créé avec succès',
|
||||
'role_update_notification' => 'Rôle mis à jour avec succès',
|
||||
'role_delete_notification' => 'Rôle supprimé avec succès',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'a commenté',
|
||||
|
||||
@@ -23,7 +23,7 @@ return [
|
||||
'meta_updated' => 'Mis à jour :timeLength',
|
||||
'meta_updated_name' => 'Mis à jour :timeLength par :user',
|
||||
'meta_owned_name' => 'Appartient à :user',
|
||||
'meta_reference_page_count' => 'Referenced on :count page|Referenced on :count pages',
|
||||
'meta_reference_page_count' => 'Référencé sur :count page|Référencé sur :count pages',
|
||||
'entity_select' => 'Sélectionner l\'entité',
|
||||
'entity_select_lack_permission' => 'Vous n\'avez pas les permissions requises pour sélectionner cet élément',
|
||||
'images' => 'Images',
|
||||
@@ -63,7 +63,7 @@ return [
|
||||
'search_terms' => 'Mot-clé',
|
||||
'search_content_type' => 'Type de contenu',
|
||||
'search_exact_matches' => 'Correspondances exactes',
|
||||
'search_tags' => 'Recherche par tags',
|
||||
'search_tags' => 'Recherche par mots-clés',
|
||||
'search_options' => 'Options',
|
||||
'search_viewed_by_me' => 'Vu par moi',
|
||||
'search_not_viewed_by_me' => 'Non vu par moi',
|
||||
@@ -293,21 +293,21 @@ return [
|
||||
'tag' => 'Mot-clé',
|
||||
'tags' => 'Mots-clés',
|
||||
'tags_index_desc' => 'Les tags peuvent être appliqués au contenu du système pour appliquer une forme flexible de catégorisation. Les tags peuvent avoir à la fois une clé et une valeur, la valeur étant facultative. Une fois appliqué, le contenu peut ensuite être interrogé à l’aide du nom et de la valeur du tag.',
|
||||
'tag_name' => 'Nom du tag',
|
||||
'tag_name' => 'Nom du mot-clé',
|
||||
'tag_value' => 'Valeur du mot-clé (optionnel)',
|
||||
'tags_explain' => "Ajouter des mots-clés pour catégoriser votre contenu.",
|
||||
'tags_add' => 'Ajouter un autre mot-clé',
|
||||
'tags_remove' => 'Supprimer le mot-clé',
|
||||
'tags_usages' => 'Total des utilisations des tags',
|
||||
'tags_usages' => 'Total des utilisations des mots-clés',
|
||||
'tags_assigned_pages' => 'Attribuer aux pages',
|
||||
'tags_assigned_chapters' => 'Attribuer aux chapitres',
|
||||
'tags_assigned_books' => 'Attribuer aux livres',
|
||||
'tags_assigned_shelves' => 'Attribuer aux étagères',
|
||||
'tags_x_unique_values' => ':count valeurs uniques',
|
||||
'tags_all_values' => 'Toutes les valeurs',
|
||||
'tags_view_tags' => 'Voir les tags',
|
||||
'tags_view_existing_tags' => 'Voir les tags existants',
|
||||
'tags_list_empty_hint' => 'Les tags peuvent être assignés via la barre latérale de l\'éditeur de page ou lors de l\'édition des détails d\'un livre, d\'un chapitre ou d\'une étagère.',
|
||||
'tags_view_tags' => 'Voir les mots-clés',
|
||||
'tags_view_existing_tags' => 'Voir les mots-clés existants',
|
||||
'tags_list_empty_hint' => 'Les mots-clés peuvent être assignés via la barre latérale de l\'éditeur de page ou lors de l\'édition des détails d\'un livre, d\'un chapitre ou d\'une étagère.',
|
||||
'attachments' => 'Fichiers joints',
|
||||
'attachments_explain' => 'Ajouter des fichiers ou des liens pour les afficher sur votre page. Ils seront affichés dans la barre latérale',
|
||||
'attachments_explain_instant_save' => 'Ces changements sont enregistrés immédiatement.',
|
||||
|
||||
@@ -33,9 +33,9 @@ return [
|
||||
'app_custom_html_desc' => 'Le contenu inséré ici sera ajouté en bas de la balise <head> de toutes les pages. Vous pouvez l\'utiliser pour ajouter du CSS personnalisé ou un tracker analytique.',
|
||||
'app_custom_html_disabled_notice' => 'Le contenu de l\'en-tête HTML personnalisé est désactivé sur cette page de paramètres pour garantir que les modifications les plus récentes puissent être annulées.',
|
||||
'app_logo' => 'Logo de l\'application',
|
||||
'app_logo_desc' => 'This is used in the application header bar, among other areas. This image should be 86px in height. Large images will be scaled down.',
|
||||
'app_icon' => 'Application Icon',
|
||||
'app_icon_desc' => 'This icon is used for browser tabs and shortcut icons. This should be a 256px square PNG image.',
|
||||
'app_logo_desc' => 'Celui-ci est utilisé dans la barre d\'en-tête de l\'application, entre autres zones. L\'image doit être de 86 px de hauteur. Les plus grandes images seront réduites.',
|
||||
'app_icon' => 'Icône de l\'application',
|
||||
'app_icon_desc' => 'Cette icône est utilisée pour les onglets du navigateur et les icônes de raccourci. Doit être une image PNG carrée de 256 px.',
|
||||
'app_homepage' => 'Page d\'accueil de l\'application',
|
||||
'app_homepage_desc' => 'Choisissez une page à afficher sur la page d\'accueil au lieu de la vue par défaut. Les permissions sont ignorées pour les pages sélectionnées.',
|
||||
'app_homepage_select' => 'Choisissez une page',
|
||||
@@ -49,12 +49,12 @@ return [
|
||||
'app_disable_comments_desc' => 'Désactive les commentaires sur toutes les pages de l\'application. Les commentaires existants ne sont pas affichés.',
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
'color_scheme' => 'Schéma de couleurs de l\'application',
|
||||
'color_scheme_desc' => 'Défini les couleurs à utiliser dans l\'interface utilisateur de l\'application. Les couleurs peuvent être configurées séparément pour les modes sombre et clair pour mieux correspondre au thème et assurer la lisibilité.',
|
||||
'ui_colors_desc' => 'Défini la couleur primaire de l\'application et la couleur de lien par défaut. La couleur primaire est principalement utilisée pour la bannière d\'en-tête, les boutons et les décorations de l\'interface. La couleur par défaut du lien est utilisée pour les liens et les actions basées sur le texte, à la fois dans le contenu écrit et dans l\'interface de l\'application.',
|
||||
'app_color' => 'Couleur primaire',
|
||||
'link_color' => 'Couleur de lien par défaut',
|
||||
'content_colors_desc' => 'Défini les couleurs pour tous les éléments de la hiérarchie d\'organisation des pages. Choisir les couleurs avec une luminosité similaire aux couleurs par défaut est recommandé pour la lisibilité.',
|
||||
'bookshelf_color' => 'Couleur des étagères',
|
||||
'book_color' => 'Couleur des livres',
|
||||
'chapter_color' => 'Couleur des chapitres',
|
||||
@@ -138,7 +138,7 @@ return [
|
||||
'roles' => 'Rôles',
|
||||
'role_user_roles' => 'Rôles des utilisateurs',
|
||||
'roles_index_desc' => 'Les rôles sont utilisés pour regrouper les utilisateurs et fournir une autorisation système à leurs membres. Lorsqu\'un utilisateur est membre de plusieurs rôles, les privilèges accordés se cumulent et l\'utilisateur hérite de tous les droits d\'accès.',
|
||||
'roles_x_users_assigned' => ':count user assigned|:count users assigned',
|
||||
'roles_x_users_assigned' => ':count utilisateur assigné|:count utilisateurs assignés',
|
||||
'roles_x_permissions_provided' => ':count permission|:count permissions',
|
||||
'roles_assigned_users' => 'Utilisateurs assignés',
|
||||
'roles_permissions_provided' => 'Permissions accordées',
|
||||
@@ -249,7 +249,7 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_index_desc' => 'Les Webhooks sont un moyen d\'envoyer des données à des URL externes lorsque certaines actions et événements se produisent dans le système, ce qui permet une intégration basée sur des événements avec des plates-formes externes telles que les systèmes de messagerie ou de notification.',
|
||||
'webhooks_x_trigger_events' => ':count trigger event|:count trigger events',
|
||||
'webhooks_x_trigger_events' => ':count événement déclencheur|:count événements déclencheurs',
|
||||
'webhooks_create' => 'Créer un nouveau Webhook',
|
||||
'webhooks_none_created' => 'Aucun webhook n\'a encore été créé.',
|
||||
'webhooks_edit' => 'Éditer le Webhook',
|
||||
|
||||
@@ -41,7 +41,7 @@ return [
|
||||
'bookshelf_create' => 'created shelf',
|
||||
'bookshelf_create_notification' => 'Shelf successfully created',
|
||||
'bookshelf_create_from_book' => 'converted book to shelf',
|
||||
'bookshelf_create_from_book_notification' => 'Book successfully converted to a shelf',
|
||||
'bookshelf_create_from_book_notification' => 'הספר הוסב בהצלחה למדף',
|
||||
'bookshelf_update' => 'updated shelf',
|
||||
'bookshelf_update_notification' => 'Shelf successfully updated',
|
||||
'bookshelf_delete' => 'deleted shelf',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Alkalmazás színséma',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Elsődleges szín',
|
||||
'link_color' => 'Alapértelmezett link szín',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Schema di colore dell\'applicazione',
|
||||
'color_scheme_desc' => 'Imposta i colori da utilizzare nell\'interfaccia di BookStack. I colori possono essere configurati separatamente per le modalità scura e chiara per adattarsi al meglio al tema e garantire la leggibilità.',
|
||||
'ui_colors_desc' => 'Imposta il colore primario e il colore predefinito dei collegamenti per BookStack. Il colore primario è utilizzato principalmente per il banner dell\'intestazione, i pulsanti e le decorazioni dell\'interfaccia. Il colore predefinito dei link è utilizzato per i link e le azioni basate sul testo, sia all\'interno dei contenuti scritti che nell\'interfaccia di Bookstack.',
|
||||
'color_scheme_desc' => 'Impostare i colori da utilizzare nell\'interfaccia utente dell\'applicazione. I colori possono essere configurati separatamente per le modalità scura e chiara, per adattarsi al meglio al tema e garantire la leggibilità.',
|
||||
'ui_colors_desc' => 'Imposta il colore primario dell\'applicazione e il colore predefinito dei collegamenti. Il colore primario è utilizzato principalmente per il banner dell\'intestazione, i pulsanti e le decorazioni dell\'interfaccia. Il colore predefinito dei collegamenti viene utilizzato per i collegamenti e le azioni basate sul testo, sia all\'interno dei contenuti scritti che nell\'interfaccia dell\'applicazione.',
|
||||
'app_color' => 'Colore Principale',
|
||||
'link_color' => 'Colore preferito del link',
|
||||
'content_colors_desc' => 'Impostare i colori per tutti gli elementi nella gerarchia dell\'organizzazione della pagina. Si consiglia di scegliere colori con una luminosità simile a quella dei colori predefiniti per garantire la leggibilità.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'アプリケーションの配色',
|
||||
'color_scheme_desc' => 'BookStack インターフェイスで使用する色を設定します。 色はダークモードとライトモードで個別に設定することができ、テーマへの適合と読みやすさを確保することができます。',
|
||||
'ui_colors_desc' => 'BookStackのプライマリカラーとデフォルトリンクカラーを設定します。プライマリカラーは主にヘッダーバナー、ボタン、インターフェイスの装飾に使用されます。 デフォルトのリンク色はテキストベースのリンクとアクションに使用されます。これは作成されたコンテンツと Bookstack インターフェイスの両方に適用されます。',
|
||||
'color_scheme_desc' => 'アプリケーションのユーザーインターフェイスで使用する色を設定します。 色はダークモードとライトモードで個別に設定することができ、テーマへの適合と読みやすさを確保することができます。',
|
||||
'ui_colors_desc' => 'アプリケーションのプライマリカラーとデフォルトリンクカラーを設定します。プライマリカラーは主にヘッダーバナー、ボタン、インターフェイスの装飾に使用されます。 デフォルトのリンク色はテキストベースのリンクとアクションに使用されます。これは作成されたコンテンツとアプリケーションインターフェイスの両方に適用されます。',
|
||||
'app_color' => 'プライマリ色',
|
||||
'link_color' => 'デフォルトのリンク色',
|
||||
'content_colors_desc' => 'ページ構成階層の各要素に色を設定します。読みやすさを考慮して、デフォルトの色と同じような明るさの色を選ぶことをお勧めします。',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -28,8 +28,8 @@ return [
|
||||
// Books
|
||||
'book_create' => 'izveidoja grāmatu',
|
||||
'book_create_notification' => 'Grāmata veiksmīgi izveidota',
|
||||
'book_create_from_chapter' => 'converted chapter to book',
|
||||
'book_create_from_chapter_notification' => 'Chapter successfully converted to a book',
|
||||
'book_create_from_chapter' => 'pārveidojā nodaļu par grāmatu',
|
||||
'book_create_from_chapter_notification' => 'Nodaļa veiksmīgi pārveidota par grāmatu',
|
||||
'book_update' => 'atjaunoja grāmatu',
|
||||
'book_update_notification' => 'Grāmata veiksmīgi atjaunināta',
|
||||
'book_delete' => 'izdzēsa grāmatu',
|
||||
@@ -38,14 +38,14 @@ return [
|
||||
'book_sort_notification' => 'Grāmata veiksmīgi pārkārtota',
|
||||
|
||||
// Bookshelves
|
||||
'bookshelf_create' => 'created shelf',
|
||||
'bookshelf_create_notification' => 'Shelf successfully created',
|
||||
'bookshelf_create_from_book' => 'converted book to shelf',
|
||||
'bookshelf_create_from_book_notification' => 'Book successfully converted to a shelf',
|
||||
'bookshelf_update' => 'updated shelf',
|
||||
'bookshelf_update_notification' => 'Shelf successfully updated',
|
||||
'bookshelf_delete' => 'deleted shelf',
|
||||
'bookshelf_delete_notification' => 'Shelf successfully deleted',
|
||||
'bookshelf_create' => 'izveidoja plauktu',
|
||||
'bookshelf_create_notification' => 'Plaukts veiksmīgi izveidots',
|
||||
'bookshelf_create_from_book' => 'pārveidoja grāmatu par plauktu',
|
||||
'bookshelf_create_from_book_notification' => 'Grāmata veiksmīgi pārveidota par plauktu',
|
||||
'bookshelf_update' => 'atjaunoja plauktu',
|
||||
'bookshelf_update_notification' => 'Plaukts veiksmīgi atjaunināts',
|
||||
'bookshelf_delete' => 'izdzēsa plauktu',
|
||||
'bookshelf_delete_notification' => 'Plaukts veiksmīgi dzēsts',
|
||||
|
||||
// Favourites
|
||||
'favourite_add_notification' => '":name" ir pievienots jūsu favorītiem',
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Lietotājs veiksmīgi dzēsts',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Loma veiksmīgi izveidota',
|
||||
'role_update_notification' => 'Loma veiksmīgi atjaunināta',
|
||||
'role_delete_notification' => 'Loma veiksmīgi dzēsta',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'komentēts',
|
||||
|
||||
@@ -39,9 +39,9 @@ return [
|
||||
'register_success' => 'Paldies par reģistrēšanos! Tagad varat pieslēgties.',
|
||||
|
||||
// Login auto-initiation
|
||||
'auto_init_starting' => 'Attempting Login',
|
||||
'auto_init_starting_desc' => 'We\'re contacting your authentication system to start the login process. If there\'s no progress after 5 seconds you can try clicking the link below.',
|
||||
'auto_init_start_link' => 'Proceed with authentication',
|
||||
'auto_init_starting' => 'Mēģina pierakstīties',
|
||||
'auto_init_starting_desc' => 'Sazināmies ar jūsu autentifikācijas sistēmu, lai uzsāktu pierakstīšanās procesu. Ja 5 sekunžu laikā nekas nav noticis, mēģiniet klikšķināt zemāk esošo saiti.',
|
||||
'auto_init_start_link' => 'Turpināt autentifikāciju',
|
||||
|
||||
// Password Reset
|
||||
'reset_password' => 'Atiestatīt paroli',
|
||||
@@ -61,8 +61,8 @@ return [
|
||||
'email_confirm_send_error' => 'E-pasta apriprināšana ir nepieciešama, bet sistēma nevarēja e-pastu nosūtīt. Lūdzu sazinaties ar administratoru, lai pārliecinātos, ka e-pasts ir iestatīts pareizi.',
|
||||
'email_confirm_success' => 'Jūsu epasta adrese ir apstiprināta! Jums tagad jābūt iespējai pieslēgties, izmantojot šo epasta adresi.',
|
||||
'email_confirm_resent' => 'Apstiprinājuma vēstule tika nosūtīta. Lūdzu, pārbaudiet jūsu e-pastu.',
|
||||
'email_confirm_thanks' => 'Thanks for confirming!',
|
||||
'email_confirm_thanks_desc' => 'Please wait a moment while your confirmation is handled. If you are not redirected after 3 seconds press the "Continue" link below to proceed.',
|
||||
'email_confirm_thanks' => 'Paldies par apstiprinājumu!',
|
||||
'email_confirm_thanks_desc' => 'Lūdzu uzgaidiet, kamēr jūsu apstiprinājums tiek apstrādāts. Ja netiekat novirzīts 3 sekunžu laikā, spiediet saiti "Turpināt", lai dotos tālāk.',
|
||||
|
||||
'email_not_confirmed' => 'E-pasts nav apstiprināts',
|
||||
'email_not_confirmed_text' => 'Jūsu e-pasta adrese vēl nav apstiprināta.',
|
||||
|
||||
@@ -25,7 +25,7 @@ return [
|
||||
'actions' => 'Darbības',
|
||||
'view' => 'Skatīt',
|
||||
'view_all' => 'Skatīt visus',
|
||||
'new' => 'New',
|
||||
'new' => 'Jauns',
|
||||
'create' => 'Izveidot',
|
||||
'update' => 'Atjaunināt',
|
||||
'edit' => 'Rediģēt',
|
||||
@@ -48,8 +48,8 @@ return [
|
||||
'previous' => 'Iepriekšējais',
|
||||
'filter_active' => 'Aktīvais filtrs:',
|
||||
'filter_clear' => 'Notīrīt filtru',
|
||||
'download' => 'Download',
|
||||
'open_in_tab' => 'Open in Tab',
|
||||
'download' => 'Lejupielādēt',
|
||||
'open_in_tab' => 'Atvērt cilnē',
|
||||
|
||||
// Sort Options
|
||||
'sort_options' => 'Kārtošanas Opcijas',
|
||||
@@ -81,14 +81,14 @@ return [
|
||||
'none' => 'Neviens',
|
||||
|
||||
// Header
|
||||
'homepage' => 'Homepage',
|
||||
'homepage' => 'Sākumlapa',
|
||||
'header_menu_expand' => 'Izvērst galvenes izvēlni',
|
||||
'profile_menu' => 'Profila izvēlne',
|
||||
'view_profile' => 'Apskatīt profilu',
|
||||
'edit_profile' => 'Rediģēt profilu',
|
||||
'dark_mode' => 'Tumšais režīms',
|
||||
'light_mode' => 'Gaišais režīms',
|
||||
'global_search' => 'Global Search',
|
||||
'global_search' => 'Vispārējā meklēšana',
|
||||
|
||||
// Layout tabs
|
||||
'tab_info' => 'Informācija',
|
||||
|
||||
@@ -66,7 +66,7 @@ return [
|
||||
'insert_link_title' => 'Ievietot/rediģēt saiti',
|
||||
'insert_horizontal_line' => 'Ievietot horizontālu līniju',
|
||||
'insert_code_block' => 'Ievietot koda bloku',
|
||||
'edit_code_block' => 'Edit code block',
|
||||
'edit_code_block' => 'Rediģēt koda bloku',
|
||||
'insert_drawing' => 'Ievietot/rediģēt zīmējumu',
|
||||
'drawing_manager' => 'Zīmēšanas pārvaldnieks',
|
||||
'insert_media' => 'Ievietot/rediģēt mediju',
|
||||
@@ -144,11 +144,11 @@ return [
|
||||
'url' => 'URL',
|
||||
'text_to_display' => 'Attēlojamais teksts',
|
||||
'title' => 'Nosaukums',
|
||||
'open_link' => 'Open link',
|
||||
'open_link_in' => 'Open link in...',
|
||||
'open_link' => 'Atvērt saiti',
|
||||
'open_link_in' => 'Atvērt saiti...',
|
||||
'open_link_current' => 'Šis logs',
|
||||
'open_link_new' => 'Jauns logs',
|
||||
'remove_link' => 'Remove link',
|
||||
'remove_link' => 'Noņemt saiti',
|
||||
'insert_collapsible' => 'Ievietot sakļaujamu bloku',
|
||||
'collapsible_unwrap' => 'Attīt',
|
||||
'edit_label' => 'Rediģēt marķējumu',
|
||||
@@ -160,7 +160,7 @@ return [
|
||||
'about' => 'Par redaktoru',
|
||||
'about_title' => 'Par WYSIWYG redaktoru',
|
||||
'editor_license' => 'Redaktora licence un autortiesības',
|
||||
'editor_tiny_license' => 'This editor is built using :tinyLink which is provided under the MIT license.',
|
||||
'editor_tiny_license' => 'Šis redaktors ir izveidots, izmantojot :tinyLink, kas ir publicēts ar MIT licenci.',
|
||||
'editor_tiny_license_link' => 'TinyMCE autortiesības un licences detaļas var atrast šeit.',
|
||||
'save_continue' => 'Saglabāt lapu un turpināt',
|
||||
'callouts_cycle' => '(Turpiniet spiest, lai pārslēgtu tipus)',
|
||||
|
||||
@@ -23,9 +23,9 @@ return [
|
||||
'meta_updated' => 'Atjaunināts :timeLength',
|
||||
'meta_updated_name' => ':user atjauninājis pirms :timeLength',
|
||||
'meta_owned_name' => 'Īpašnieks :user',
|
||||
'meta_reference_page_count' => 'Referenced on :count page|Referenced on :count pages',
|
||||
'meta_reference_page_count' => 'Atsauce :count lapā|Atsauce :count lapās',
|
||||
'entity_select' => 'Izvēlēties vienumu',
|
||||
'entity_select_lack_permission' => 'You don\'t have the required permissions to select this item',
|
||||
'entity_select_lack_permission' => 'Jums nav nepieciešamās piekļuves tiesības, lai izvēlētu šo vienumu',
|
||||
'images' => 'Attēli',
|
||||
'my_recent_drafts' => 'Mani melnraksti',
|
||||
'my_recently_viewed' => 'Mani nesen skatītie',
|
||||
@@ -44,13 +44,13 @@ return [
|
||||
'permissions' => 'Atļaujas',
|
||||
'permissions_desc' => 'Set permissions here to override the default permissions provided by user roles.',
|
||||
'permissions_book_cascade' => 'Permissions set on books will automatically cascade to child chapters and pages, unless they have their own permissions defined.',
|
||||
'permissions_chapter_cascade' => 'Permissions set on chapters will automatically cascade to child pages, unless they have their own permissions defined.',
|
||||
'permissions_chapter_cascade' => 'Piekļuves tiesības, kas uzstādītas nodaļām, automātiski tiks piešķirtas pakārtotajām lapām, ja vien tām nav atsevišķi norādītas savas piekļuves tiesības.',
|
||||
'permissions_save' => 'Saglabāt atļaujas',
|
||||
'permissions_owner' => 'Īpašnieks',
|
||||
'permissions_role_everyone_else' => 'Everyone Else',
|
||||
'permissions_role_everyone_else' => 'Visi pārējie',
|
||||
'permissions_role_everyone_else_desc' => 'Set permissions for all roles not specifically overridden.',
|
||||
'permissions_role_override' => 'Override permissions for role',
|
||||
'permissions_inherit_defaults' => 'Inherit defaults',
|
||||
'permissions_inherit_defaults' => 'Mantot noklusētās vērtības',
|
||||
|
||||
// Search
|
||||
'search_results' => 'Meklēšanas rezultāti',
|
||||
@@ -93,23 +93,23 @@ return [
|
||||
'shelves_save' => 'Saglabāt plauktu',
|
||||
'shelves_books' => 'Grāmatas šajā plauktā',
|
||||
'shelves_add_books' => 'Pievienot grāmatas šim plauktam',
|
||||
'shelves_drag_books' => 'Drag books below to add them to this shelf',
|
||||
'shelves_drag_books' => 'Ievelciet grāmatas zemāk, lai novietotu tās šajā plauktā',
|
||||
'shelves_empty_contents' => 'Šim gŗamatplauktam nav pievienotu grāmatu',
|
||||
'shelves_edit_and_assign' => 'Labot plauktu, lai tam pievienotu grāmatas',
|
||||
'shelves_edit_named' => 'Edit Shelf :name',
|
||||
'shelves_edit' => 'Edit Shelf',
|
||||
'shelves_delete' => 'Delete Shelf',
|
||||
'shelves_delete_named' => 'Delete Shelf :name',
|
||||
'shelves_delete_explain' => "This will delete the shelf with the name ':name'. Contained books will not be deleted.",
|
||||
'shelves_delete_confirmation' => 'Are you sure you want to delete this shelf?',
|
||||
'shelves_permissions' => 'Shelf Permissions',
|
||||
'shelves_permissions_updated' => 'Shelf Permissions Updated',
|
||||
'shelves_permissions_active' => 'Shelf Permissions Active',
|
||||
'shelves_permissions_cascade_warning' => 'Permissions on shelves do not automatically cascade to contained books. This is because a book can exist on multiple shelves. Permissions can however be copied down to child books using the option found below.',
|
||||
'shelves_edit_named' => 'Rediģēt plauktu :name',
|
||||
'shelves_edit' => 'Rediģēt plauktu',
|
||||
'shelves_delete' => 'Dzēst plauktu',
|
||||
'shelves_delete_named' => 'Dzēst plauktu :name',
|
||||
'shelves_delete_explain' => "Tiks dzēsts plaukts ar nosaukumu \":name\". Tajā ievietotās grāmatas netiks dzēstas.",
|
||||
'shelves_delete_confirmation' => 'Vai esat pārliecināts, ka vēlaties dzēst šo plauktu?',
|
||||
'shelves_permissions' => 'Plaukta atļaujas',
|
||||
'shelves_permissions_updated' => 'Plaukta atļaujas atjauninātas',
|
||||
'shelves_permissions_active' => 'Plaukta atļaujas ir aktīvas',
|
||||
'shelves_permissions_cascade_warning' => 'Plauktu piekļuves tiesības netiek automātiski piešķirtas tajā esošajām grāmatām. Tas ir tāpēc, ka grāmata var vienlaicīgi atrasties vairākos plauktos. Tomēr piekļuves tiesības var nokopēt uz plauktam pievienotajām grāmatām, izmantojot zemāk atrodamo opciju.',
|
||||
'shelves_copy_permissions_to_books' => 'Kopēt grāmatplaukta atļaujas uz grāmatām',
|
||||
'shelves_copy_permissions' => 'Kopēt atļaujas',
|
||||
'shelves_copy_permissions_explain' => 'This will apply the current permission settings of this shelf to all books contained within. Before activating, ensure any changes to the permissions of this shelf have been saved.',
|
||||
'shelves_copy_permission_success' => 'Shelf permissions copied to :count books',
|
||||
'shelves_copy_permissions_explain' => 'Pašreizējās plaukta piekļuves tiesības tiks piemērotas visām tajā esošajām grāmatām. Pirms ieslēgšanas pārliecinieties, ka visas izmaiņas plaukta piekļuves tiesības ir saglabātas.',
|
||||
'shelves_copy_permission_success' => 'Plaukta piekļuves tiesības kopētas uz :count grāmatām',
|
||||
|
||||
// Books
|
||||
'book' => 'Grāmata',
|
||||
@@ -141,7 +141,7 @@ return [
|
||||
'books_search_this' => 'Meklēt šajā grāmatā',
|
||||
'books_navigation' => 'Grāmatas navigācija',
|
||||
'books_sort' => 'Kārtot grāmatas saturu',
|
||||
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books.',
|
||||
'books_sort_desc' => 'Pārvietojiet nodaļas un lapas grāmatas ietvaros, lai organizētu tās saturu. Var pievienot vēl citas grāmatas, lai vieglāk pārcelt nodaļas un lapas starp grāmatām.',
|
||||
'books_sort_named' => 'Kārtot grāmatu :bookName',
|
||||
'books_sort_name' => 'Kārtot pēc nosaukuma',
|
||||
'books_sort_created' => 'Kārtot pēc izveidošanas datuma',
|
||||
@@ -150,17 +150,17 @@ return [
|
||||
'books_sort_chapters_last' => 'Nodaļas pēdējās',
|
||||
'books_sort_show_other' => 'Rādīt citas grāmatas',
|
||||
'books_sort_save' => 'Saglabāt jauno kārtību',
|
||||
'books_sort_show_other_desc' => 'Add other books here to include them in the sort operation, and allow easy cross-book reorganisation.',
|
||||
'books_sort_move_up' => 'Move Up',
|
||||
'books_sort_move_down' => 'Move Down',
|
||||
'books_sort_move_prev_book' => 'Move to Previous Book',
|
||||
'books_sort_move_next_book' => 'Move to Next Book',
|
||||
'books_sort_move_prev_chapter' => 'Move Into Previous Chapter',
|
||||
'books_sort_move_next_chapter' => 'Move Into Next Chapter',
|
||||
'books_sort_move_book_start' => 'Move to Start of Book',
|
||||
'books_sort_move_book_end' => 'Move to End of Book',
|
||||
'books_sort_move_before_chapter' => 'Move to Before Chapter',
|
||||
'books_sort_move_after_chapter' => 'Move to After Chapter',
|
||||
'books_sort_show_other_desc' => 'Pievienojiet citas grāmatas šeit, lai tās iekļautu kārtošanā un pieļautu vienkāršāku satura organizēšanu starp grāmatām.',
|
||||
'books_sort_move_up' => 'Pārvietot uz augšu',
|
||||
'books_sort_move_down' => 'Pārvietot uz leju',
|
||||
'books_sort_move_prev_book' => 'Pārvietot uz iepriekšējo grāmatu',
|
||||
'books_sort_move_next_book' => 'Pārvietot uz nākamo grāmatu',
|
||||
'books_sort_move_prev_chapter' => 'Pārvietot uz iepriekšējo nodaļu',
|
||||
'books_sort_move_next_chapter' => 'Pārvietot uz nākamo nodaļu',
|
||||
'books_sort_move_book_start' => 'Pārvietot uz grāmatas sākumu',
|
||||
'books_sort_move_book_end' => 'Pārvietot uz grāmatas beigām',
|
||||
'books_sort_move_before_chapter' => 'Pārvietot pirms nodaļas',
|
||||
'books_sort_move_after_chapter' => 'Pārvietot pēc nodaļas',
|
||||
'books_copy' => 'Kopēt grāmatu',
|
||||
'books_copy_success' => 'Grāmata veiksmīgi nokopēta',
|
||||
|
||||
@@ -188,7 +188,7 @@ return [
|
||||
'chapters_permissions_active' => 'Nodaļas atļaujas ir aktīvas',
|
||||
'chapters_permissions_success' => 'Nodaļas atļaujas ir atjauninātas',
|
||||
'chapters_search_this' => 'Meklēt šajā nodaļā',
|
||||
'chapter_sort_book' => 'Sort Book',
|
||||
'chapter_sort_book' => 'Kārtot grāmatu',
|
||||
|
||||
// Pages
|
||||
'page' => 'Lapa',
|
||||
@@ -236,7 +236,7 @@ return [
|
||||
'pages_md_insert_image' => 'Ievietot attēlu',
|
||||
'pages_md_insert_link' => 'Ievietot vienuma saiti',
|
||||
'pages_md_insert_drawing' => 'Ievietot zīmējumu',
|
||||
'pages_md_show_preview' => 'Show preview',
|
||||
'pages_md_show_preview' => 'Rādīt priekšskatu',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_not_in_chapter' => 'Lapa nav nodaļā',
|
||||
'pages_move' => 'Pārvietot lapu',
|
||||
@@ -248,14 +248,14 @@ return [
|
||||
'pages_permissions_success' => 'Lapas atļaujas atjauninātas',
|
||||
'pages_revision' => 'Revīzijas',
|
||||
'pages_revisions' => 'Lapas revīzijas',
|
||||
'pages_revisions_desc' => 'Listed below are all the past revisions of this page. You can look back upon, compare, and restore old page versions if permissions allow. The full history of the page may not be fully reflected here since, depending on system configuration, old revisions could be auto-deleted.',
|
||||
'pages_revisions_desc' => 'Zemāk norādītas visas šīs lapas pagātnes versijas. Jūs varat pārskatīt, salīdzināt un atjaunot vecākas versijas, ja to atļauj jūsu piekļuves tiesības. Pilna lapas vēsture varētu netikt attēlota, jo, atkarībā no sistēmas uzstādījumiem, vecākas versijas varētu būt dzēstas automātiski.',
|
||||
'pages_revisions_named' => ':pageName lapas revīzijas',
|
||||
'pages_revision_named' => ':pageName lapas revīzija',
|
||||
'pages_revision_restored_from' => 'Atjaunots no #:id; :summary',
|
||||
'pages_revisions_created_by' => 'Izveidoja',
|
||||
'pages_revisions_date' => 'Revīzijas datums',
|
||||
'pages_revisions_number' => '#',
|
||||
'pages_revisions_sort_number' => 'Revision Number',
|
||||
'pages_revisions_sort_number' => 'Versijas numurs',
|
||||
'pages_revisions_numbered' => 'Revīzija #:id',
|
||||
'pages_revisions_numbered_changes' => 'Revīzijas #:id izmaiņas',
|
||||
'pages_revisions_editor' => 'Redaktora veids',
|
||||
@@ -269,7 +269,7 @@ return [
|
||||
'pages_edit_content_link' => 'Labot saturu',
|
||||
'pages_permissions_active' => 'Lapas atļaujas ir aktīvas',
|
||||
'pages_initial_revision' => 'Sākotnējā publikācija',
|
||||
'pages_references_update_revision' => 'System auto-update of internal links',
|
||||
'pages_references_update_revision' => 'Automātiska iekšējo saišu atjaunināšana',
|
||||
'pages_initial_name' => 'Jauna lapa',
|
||||
'pages_editing_draft_notification' => 'Jūs pašlaik veicat izmaiņas melnrakstā, kurš pēdējo reizi ir saglabāts :timeDiff.',
|
||||
'pages_draft_edited_notification' => 'Šī lapa ir tikusi atjaunināta. Šo melnrakstu ieteicams atmest.',
|
||||
@@ -382,19 +382,19 @@ return [
|
||||
'copy_consider_access' => 'Atrašanās vietas, īpašnieka vai piekļuves tiesību izmaiņas var padarīt šo saturu pieejamu citiem, kam iepriekš nav dota piekļuve.',
|
||||
|
||||
// Conversions
|
||||
'convert_to_shelf' => 'Convert to Shelf',
|
||||
'convert_to_shelf_contents_desc' => 'You can convert this book to a new shelf with the same contents. Chapters contained within this book will be converted to new books. If this book contains any pages, that are not in a chapter, this book will be renamed and contain such pages, and this book will become part of the new shelf.',
|
||||
'convert_to_shelf' => 'Pārveidot par plauktu',
|
||||
'convert_to_shelf_contents_desc' => 'Jūs varat pārveidot šo grāmatu par jaunu plauktu ar to pašu saturu. Nodaļas šajā grāmatā tiks pārveidots par jaunām grāmatām. Ja šī grāmata satur atsevišķas lapas, kas neietilpst nevienā nodaļā, tiks izveidota atsevišķa grāmata ar šādām lapām, kas tiks ievietota jaunajā plauktā.',
|
||||
'convert_to_shelf_permissions_desc' => 'Any permissions set on this book will be copied to the new shelf and to all new child books that don\'t have their own permissions enforced. Note that permissions on shelves do not auto-cascade to content within, as they do for books.',
|
||||
'convert_book' => 'Convert Book',
|
||||
'convert_book_confirm' => 'Are you sure you want to convert this book?',
|
||||
'convert_undo_warning' => 'This cannot be as easily undone.',
|
||||
'convert_to_book' => 'Convert to Book',
|
||||
'convert_to_book_desc' => 'You can convert this chapter to a new book with the same contents. Any permissions set on this chapter will be copied to the new book but any inherited permissions, from the parent book, will not be copied which could lead to a change of access control.',
|
||||
'convert_chapter' => 'Convert Chapter',
|
||||
'convert_chapter_confirm' => 'Are you sure you want to convert this chapter?',
|
||||
'convert_book' => 'Pārveidot grāmatu',
|
||||
'convert_book_confirm' => 'Vai tiešām vēlaties pārveidot šo grāmatu?',
|
||||
'convert_undo_warning' => 'To nav iespiejāms vienkārši atcelt.',
|
||||
'convert_to_book' => 'Pārveidot par grāmatu',
|
||||
'convert_to_book_desc' => 'Jūs varat pārveidot šo nodaļu par grāmatu ar tādu pašu saturu. Visas piekļuves tiesības, kas uzstādītas šai nodaļai, tiks kopētas uz jauno grāmatu, taču piekļuves tiesības, kas tiek uzstādītas pašreizējai grāmatai kopumā, netiks kopētas, tā kā ir iespējams, ka jaunajai grāmati var būt citas piekļuves tiesības.',
|
||||
'convert_chapter' => 'Pārveidot nodaļu',
|
||||
'convert_chapter_confirm' => 'Vai tiešām vēlaties pārveidot šo nodaļu?',
|
||||
|
||||
// References
|
||||
'references' => 'References',
|
||||
'references_none' => 'There are no tracked references to this item.',
|
||||
'references_to_desc' => 'Shown below are all the known pages in the system that link to this item.',
|
||||
'references' => 'Atsauces',
|
||||
'references_none' => 'Uz šo vienumu nav atrasta neviena atsauce.',
|
||||
'references_to_desc' => 'Zemāk parādītas visas sistēmā atrastās lapas, kas norāda uz šo vienumu.',
|
||||
];
|
||||
|
||||
@@ -50,7 +50,7 @@ return [
|
||||
// Drawing & Images
|
||||
'image_upload_error' => 'Radās kļūda augšupielādējot attēlu',
|
||||
'image_upload_type_error' => 'Ielādējamā attēla tips nav derīgs',
|
||||
'drawing_data_not_found' => 'Drawing data could not be loaded. The drawing file might no longer exist or you may not have permission to access it.',
|
||||
'drawing_data_not_found' => 'Attēla datus nevarēja ielādēt. Attēla fails, iespējams, vairs neeksistē, vai arī jums varētu nebūt piekļuves tiesības tam.',
|
||||
|
||||
// Attachments
|
||||
'attachment_not_found' => 'Pielikums nav atrasts',
|
||||
@@ -61,7 +61,7 @@ return [
|
||||
|
||||
// Entities
|
||||
'entity_not_found' => 'Vienība nav atrasta',
|
||||
'bookshelf_not_found' => 'Shelf not found',
|
||||
'bookshelf_not_found' => 'Plaukts nav atrasts',
|
||||
'book_not_found' => 'Grāmata nav atrasta',
|
||||
'page_not_found' => 'Lapa nav atrasta',
|
||||
'chapter_not_found' => 'Nodaļa nav atrasta',
|
||||
|
||||
@@ -33,9 +33,9 @@ return [
|
||||
'app_custom_html_desc' => 'Šis saturs tiks pievienots <head> sadaļas apakšā visām lapām. Tas ir noderīgi papildinot CSS stilus vai pievienojot analītikas kodu.',
|
||||
'app_custom_html_disabled_notice' => 'Pielāgots HTML head saturs ir izslēgts šajā uzstādījumu lapā, lai nodrošinātu, ka iespējams atcelt jebkādas kritiskas izmaiņas.',
|
||||
'app_logo' => 'Lietotnes logo',
|
||||
'app_logo_desc' => 'This is used in the application header bar, among other areas. This image should be 86px in height. Large images will be scaled down.',
|
||||
'app_icon' => 'Application Icon',
|
||||
'app_icon_desc' => 'This icon is used for browser tabs and shortcut icons. This should be a 256px square PNG image.',
|
||||
'app_logo_desc' => 'Tas tiek izmantots lietotnes galvenē un citās vietās. Attēlam jābūt 86px augstam, lieli attēli tiks samazināti.',
|
||||
'app_icon' => 'Lietotnes ikona',
|
||||
'app_icon_desc' => 'Ikona tiek izmantota pārlūka cilnēm un īsceļiem. Tai jābūt 256px kvadrātveida PNG attēlam.',
|
||||
'app_homepage' => 'Aplikācijas sākumlapa',
|
||||
'app_homepage_desc' => 'Izvēlēties skatu, ko rādīt sākumlapā noklusētā skata vietā. Lapas piekļuves tiesības izvēlētajai lapai netiks ņemtas vērā.',
|
||||
'app_homepage_select' => 'Izvēlēties lapu',
|
||||
@@ -49,12 +49,12 @@ return [
|
||||
'app_disable_comments_desc' => 'Atslēdz komentārus visās aplikācijas lapās.<br> Jau eksistējoši komentāri netiks attēloti.',
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
'color_scheme' => 'Lietotnes krāsu shēma',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Pamatkrāsa',
|
||||
'link_color' => 'Noklusētā saišu krāsa',
|
||||
'content_colors_desc' => 'Norādīt krāsas visiem lapas hierarhijas elementiem. Lasāmības labad ieteicams izvēlēties krāsas ar līdzīgu spilgtumu kā noklusētajām.',
|
||||
'bookshelf_color' => 'Plaukta krāsa',
|
||||
'book_color' => 'Grāmatas krāsa',
|
||||
'chapter_color' => 'Nodaļas krāsa',
|
||||
|
||||
@@ -237,7 +237,7 @@ return [
|
||||
'pages_md_insert_link' => 'Sett inn lenke',
|
||||
'pages_md_insert_drawing' => 'Sett inn tegning',
|
||||
'pages_md_show_preview' => 'Forhåndsvisning',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_md_sync_scroll' => 'Synkroniser forhåndsvisningsrulle',
|
||||
'pages_not_in_chapter' => 'Siden tilhører ingen kapittel',
|
||||
'pages_move' => 'Flytt side',
|
||||
'pages_move_success' => 'Siden ble flyttet til «:parentName»',
|
||||
@@ -248,7 +248,7 @@ return [
|
||||
'pages_permissions_success' => 'Sidens tilganger ble endret',
|
||||
'pages_revision' => 'Revisjon',
|
||||
'pages_revisions' => 'Sidens revisjoner',
|
||||
'pages_revisions_desc' => 'Listed below are all the past revisions of this page. You can look back upon, compare, and restore old page versions if permissions allow. The full history of the page may not be fully reflected here since, depending on system configuration, old revisions could be auto-deleted.',
|
||||
'pages_revisions_desc' => 'Oppført nedenfor er alle tidligere revisjoner av denne siden. Du kan se tilbake igjen, sammenligne og gjenopprette tidligere sideversjoner hvis du tillater det. Den hele sidens historikk kan kanskje ikke gjenspeiles fullstendig her, avhengig av systemkonfigurasjonen, kan gamle revisjoner bli slettet automatisk.',
|
||||
'pages_revisions_named' => 'Revisjoner for :pageName',
|
||||
'pages_revision_named' => 'Revisjoner for :pageName',
|
||||
'pages_revision_restored_from' => 'Gjenopprettet fra #:id; :summary',
|
||||
@@ -292,17 +292,17 @@ return [
|
||||
'shelf_tags' => 'Hyllemerker',
|
||||
'tag' => 'Merke',
|
||||
'tags' => 'Merker',
|
||||
'tags_index_desc' => 'Tags can be applied to content within the system to apply a flexible form of categorization. Tags can have both a key and value, with the value being optional. Once applied, content can then be queried using the tag name and value.',
|
||||
'tags_index_desc' => 'Merker kan brukes på innhold i systemet for å anvende en kategorisering på en fleksibel måte. Etiketter kan ha både en nøkkel og verdi, med valgfri. Når det er brukt, kan innhold sjekkes ved hjelp av taggnavn og verdi.',
|
||||
'tag_name' => 'Merketittel',
|
||||
'tag_value' => 'Merkeverdi (Valgfritt)',
|
||||
'tags_explain' => "Legg til merker for å kategorisere innholdet ditt. \n Du kan legge til merkeverdier for å beskrive dem ytterligere.",
|
||||
'tags_add' => 'Legg til flere merker',
|
||||
'tags_remove' => 'Fjern merke',
|
||||
'tags_usages' => 'Total tag usages',
|
||||
'tags_assigned_pages' => 'Assigned to Pages',
|
||||
'tags_assigned_chapters' => 'Assigned to Chapters',
|
||||
'tags_assigned_books' => 'Assigned to Books',
|
||||
'tags_assigned_shelves' => 'Assigned to Shelves',
|
||||
'tags_usages' => 'Totalt emneordbruk',
|
||||
'tags_assigned_pages' => 'Tilordnet sider',
|
||||
'tags_assigned_chapters' => 'Tildelt til kapitler',
|
||||
'tags_assigned_books' => 'Tilordnet til bøker',
|
||||
'tags_assigned_shelves' => 'Tilordnet hyller',
|
||||
'tags_x_unique_values' => ':count unike verdier',
|
||||
'tags_all_values' => 'Alle verdier',
|
||||
'tags_view_tags' => 'Vis etiketter',
|
||||
@@ -374,27 +374,27 @@ return [
|
||||
'revision_cannot_delete_latest' => 'CKan ikke slette siste revisjon.',
|
||||
|
||||
// Copy view
|
||||
'copy_consider' => 'Please consider the below when copying content.',
|
||||
'copy_consider_permissions' => 'Custom permission settings will not be copied.',
|
||||
'copy_consider_owner' => 'You will become the owner of all copied content.',
|
||||
'copy_consider_images' => 'Page image files will not be duplicated & the original images will retain their relation to the page they were originally uploaded to.',
|
||||
'copy_consider_attachments' => 'Page attachments will not be copied.',
|
||||
'copy_consider_access' => 'A change of location, owner or permissions may result in this content being accessible to those previously without access.',
|
||||
'copy_consider' => 'Vennligst vurder nedenfor når du kopierer innholdet.',
|
||||
'copy_consider_permissions' => 'Egendefinerte tilgangsinnstillinger vil ikke bli kopiert.',
|
||||
'copy_consider_owner' => 'Du vil bli eier av alt kopiert innhold.',
|
||||
'copy_consider_images' => 'Sidebildefiler vil ikke bli duplisert og de opprinnelige bildene beholder relasjonen til siden de opprinnelig ble lastet opp til.',
|
||||
'copy_consider_attachments' => 'Sidevedlegg vil ikke bli kopiert.',
|
||||
'copy_consider_access' => 'Endring av sted, eier eller rettigheter kan føre til at innholdet er tilgjengelig for dem som tidligere har vært uten adgang.',
|
||||
|
||||
// Conversions
|
||||
'convert_to_shelf' => 'Convert to Shelf',
|
||||
'convert_to_shelf_contents_desc' => 'You can convert this book to a new shelf with the same contents. Chapters contained within this book will be converted to new books. If this book contains any pages, that are not in a chapter, this book will be renamed and contain such pages, and this book will become part of the new shelf.',
|
||||
'convert_to_shelf_permissions_desc' => 'Any permissions set on this book will be copied to the new shelf and to all new child books that don\'t have their own permissions enforced. Note that permissions on shelves do not auto-cascade to content within, as they do for books.',
|
||||
'convert_book' => 'Convert Book',
|
||||
'convert_book_confirm' => 'Are you sure you want to convert this book?',
|
||||
'convert_undo_warning' => 'This cannot be as easily undone.',
|
||||
'convert_to_book' => 'Convert to Book',
|
||||
'convert_to_book_desc' => 'You can convert this chapter to a new book with the same contents. Any permissions set on this chapter will be copied to the new book but any inherited permissions, from the parent book, will not be copied which could lead to a change of access control.',
|
||||
'convert_chapter' => 'Convert Chapter',
|
||||
'convert_chapter_confirm' => 'Are you sure you want to convert this chapter?',
|
||||
'convert_to_shelf' => 'Konverter til bokhylle',
|
||||
'convert_to_shelf_contents_desc' => 'Du kan konvertere denne boken til en ny hylle med samme innhold. Kapitteler i denne boken vil bli konvertert til nye bøker. Hvis boken inneholder noen sider, som ikke er i et kapitler, boka blir omdøpt og med slike sider, og boka blir en del av den nye bokhyllen.',
|
||||
'convert_to_shelf_permissions_desc' => 'Eventuelle tillatelser som er satt på denne boka, vil bli kopiert til ny hylle og til alle nye under-bøker som ikke har egne tillatelser satt. Vær oppmerksom på at tillatelser på hyllene ikke skjuler automatisk innhold innenfor, da de gjør for bøker.',
|
||||
'convert_book' => 'Konverter bok',
|
||||
'convert_book_confirm' => 'Er du sikker på at du vil konvertere denne boken?',
|
||||
'convert_undo_warning' => 'Dette kan ikke bli så lett å angre.',
|
||||
'convert_to_book' => 'Konverter til bok',
|
||||
'convert_to_book_desc' => 'Du kan konvertere kapittelet til en ny bok med samme innhold. Alle tillatelser som er angitt i dette kapittelet vil bli kopiert til den nye boken, men alle arvede tillatelser, fra overordnet bok vil ikke kopieres noe som kan føre til en endring av tilgangskontroll.',
|
||||
'convert_chapter' => 'Konverter kapittel',
|
||||
'convert_chapter_confirm' => 'Er du sikker på at du vil konvertere dette kapittelet?',
|
||||
|
||||
// References
|
||||
'references' => 'References',
|
||||
'references_none' => 'There are no tracked references to this item.',
|
||||
'references_to_desc' => 'Shown below are all the known pages in the system that link to this item.',
|
||||
'references' => 'Referanser',
|
||||
'references_none' => 'Det er ingen sporede referanser til dette elementet.',
|
||||
'references_to_desc' => 'Nedenfor vises alle de kjente sidene i systemet som lenker til denne oppføringen.',
|
||||
];
|
||||
|
||||
@@ -23,10 +23,10 @@ return [
|
||||
'saml_no_email_address' => 'Denne kontoinformasjonen finnes ikke i det eksterne autentiseringssystemet.',
|
||||
'saml_invalid_response_id' => 'Forespørselen fra det eksterne autentiseringssystemet gjenkjennes ikke av en prosess som startes av dette programmet. Å navigere tilbake etter pålogging kan forårsake dette problemet.',
|
||||
'saml_fail_authed' => 'Innlogging gjennom :system feilet. Fikk ikke kontakt med autentiseringstjeneren.',
|
||||
'oidc_already_logged_in' => 'Already logged in',
|
||||
'oidc_user_not_registered' => 'The user :name is not registered and automatic registration is disabled',
|
||||
'oidc_no_email_address' => 'Could not find an email address, for this user, in the data provided by the external authentication system',
|
||||
'oidc_fail_authed' => 'Login using :system failed, system did not provide successful authorization',
|
||||
'oidc_already_logged_in' => 'Allerede logget inn',
|
||||
'oidc_user_not_registered' => 'Brukeren :name er ikke registrert og automatisk registrering er deaktivert',
|
||||
'oidc_no_email_address' => 'Finner ikke en e-postadresse, for denne brukeren, i dataene som leveres av det eksterne autentiseringssystemet',
|
||||
'oidc_fail_authed' => 'Innlogging ved hjelp av :system feilet, systemet ga ikke vellykket godkjenning',
|
||||
'social_no_action_defined' => 'Ingen handlinger er definert',
|
||||
'social_login_bad_response' => "Feilmelding mottat fra :socialAccount innloggingstjeneste: \n:error",
|
||||
'social_account_in_use' => 'Denne :socialAccount kontoen er allerede registrert, Prøv å logge inn med :socialAccount alternativet.',
|
||||
@@ -50,7 +50,7 @@ return [
|
||||
// Drawing & Images
|
||||
'image_upload_error' => 'Bildet kunne ikke lastes opp, forsøk igjen.',
|
||||
'image_upload_type_error' => 'Bildeformatet støttes ikke, forsøk med et annet format.',
|
||||
'drawing_data_not_found' => 'Drawing data could not be loaded. The drawing file might no longer exist or you may not have permission to access it.',
|
||||
'drawing_data_not_found' => 'Tegningsdata kunne ikke lastes. Det er mulig at tegningsfilen ikke finnes lenger, eller du har ikke rettigheter til å få tilgang til den.',
|
||||
|
||||
// Attachments
|
||||
'attachment_not_found' => 'Vedlegget ble ikke funnet',
|
||||
@@ -61,7 +61,7 @@ return [
|
||||
|
||||
// Entities
|
||||
'entity_not_found' => 'Entitet ble ikke funnet',
|
||||
'bookshelf_not_found' => 'Shelf not found',
|
||||
'bookshelf_not_found' => 'Bokhyllen ble ikke funnet',
|
||||
'book_not_found' => 'Boken ble ikke funnet',
|
||||
'page_not_found' => 'Siden ble ikke funnet',
|
||||
'chapter_not_found' => 'Kapittel ble ikke funnet',
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
*/
|
||||
|
||||
return [
|
||||
'shortcuts' => 'Shortcuts',
|
||||
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
|
||||
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
|
||||
'shortcuts_customize_desc' => 'You can customize each of the shortcuts below. Just press your desired key combination after selecting the input for a shortcut.',
|
||||
'shortcuts_toggle_label' => 'Keyboard shortcuts enabled',
|
||||
'shortcuts_section_navigation' => 'Navigation',
|
||||
'shortcuts_section_actions' => 'Common Actions',
|
||||
'shortcuts_save' => 'Save Shortcuts',
|
||||
'shortcuts_overlay_desc' => 'Note: When shortcuts are enabled a helper overlay is available via pressing "?" which will highlight the available shortcuts for actions currently visible on the screen.',
|
||||
'shortcuts_update_success' => 'Shortcut preferences have been updated!',
|
||||
'shortcuts' => 'Snarveier',
|
||||
'shortcuts_interface' => 'Grensesnitt hurtigtaster',
|
||||
'shortcuts_toggle_desc' => 'Her kan du aktivere eller deaktivere snarveier for tastatur system som brukes til navigasjon og handlinger.',
|
||||
'shortcuts_customize_desc' => 'Du kan tilpasse hver av snarveiene nedenfor. Trykk på ønsket nøkkelkombinasjon etter å ha valgt inndata for en snarvei.',
|
||||
'shortcuts_toggle_label' => 'Tastatursnarveier aktivert',
|
||||
'shortcuts_section_navigation' => 'Navigasjon',
|
||||
'shortcuts_section_actions' => 'Vanlige handlinger',
|
||||
'shortcuts_save' => 'Lagre snarveier',
|
||||
'shortcuts_overlay_desc' => 'Merk: Når snarveier er aktivert er et hjelperoverlegg tilgjengelig via å trykke "?" som vil fremheve de tilgjengelige snarveiene som for øyeblikket er synlige på skjermen.',
|
||||
'shortcuts_update_success' => 'Snarvei innstillinger er oppdatert!',
|
||||
];
|
||||
@@ -10,8 +10,8 @@ return [
|
||||
'settings' => 'Innstillinger',
|
||||
'settings_save' => 'Lagre innstillinger',
|
||||
'settings_save_success' => 'Innstillinger lagret',
|
||||
'system_version' => 'System Version',
|
||||
'categories' => 'Categories',
|
||||
'system_version' => 'System versjon',
|
||||
'categories' => 'Kategorier',
|
||||
|
||||
// App Settings
|
||||
'app_customization' => 'Tilpassing',
|
||||
@@ -27,15 +27,15 @@ return [
|
||||
'app_secure_images' => 'Høyere sikkerhet på bildeopplastinger',
|
||||
'app_secure_images_toggle' => 'Enable høyere sikkerhet på bildeopplastinger',
|
||||
'app_secure_images_desc' => 'Av ytelsesgrunner er alle bilder offentlige. Dette alternativet legger til en tilfeldig streng som er vanskelig å gjette foran bildets nettadresser. Forsikre deg om at katalogindekser ikke er aktivert for å forhindre enkel tilgang.',
|
||||
'app_default_editor' => 'Default Page Editor',
|
||||
'app_default_editor_desc' => 'Select which editor will be used by default when editing new pages. This can be overridden at a page level where permissions allow.',
|
||||
'app_default_editor' => 'Standard sideredigeringsprogram',
|
||||
'app_default_editor_desc' => 'Velg hvilken tekstbehandler som skal brukes som standard når du redigerer nye sider. Dette kan overskrives på et sidenivå der tillatelser tillates.',
|
||||
'app_custom_html' => 'Tilpasset HTML-hodeinnhold',
|
||||
'app_custom_html_desc' => 'Alt innhold som legges til her, blir satt inn i bunnen av <head> -delen på hver side. Dette er praktisk for å overstyre stiler eller legge til analysekode.',
|
||||
'app_custom_html_disabled_notice' => 'Tilpasset HTML-hodeinnhold er deaktivert på denne innstillingssiden for å sikre at eventuelle endringer ødelegger noe, kan tilbakestilles.',
|
||||
'app_logo' => 'Applikasjonslogo',
|
||||
'app_logo_desc' => 'This is used in the application header bar, among other areas. This image should be 86px in height. Large images will be scaled down.',
|
||||
'app_icon' => 'Application Icon',
|
||||
'app_icon_desc' => 'This icon is used for browser tabs and shortcut icons. This should be a 256px square PNG image.',
|
||||
'app_logo_desc' => 'Dette brukes i programtoppfeltet blant andre områder. Dette bildet skal være 86px i høyde. Store bilder vil bli skalert ned.',
|
||||
'app_icon' => 'Applikasjons ikon',
|
||||
'app_icon_desc' => 'Dette ikonet brukes for nettleserfaner og snarveisikoner. Dette bør være et bilde på 256 px kvadrat PNG.',
|
||||
'app_homepage' => 'Applikasjonens hjemmeside',
|
||||
'app_homepage_desc' => 'Velg en visning som skal vises på hjemmesiden i stedet for standardvisningen. Sidetillatelser ignoreres for utvalgte sider.',
|
||||
'app_homepage_select' => 'Velg en side',
|
||||
@@ -49,12 +49,12 @@ return [
|
||||
'app_disable_comments_desc' => 'Deaktiver kommentarer på tvers av alle sidene i applikasjonen. <br> Eksisterende kommentarer vises ikke.',
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
'color_scheme' => 'Applikasjonens farge oppsett',
|
||||
'color_scheme_desc' => 'Sett farger for å bruke i programmets brukergrensesnitt. Farger kan konfigureres separat for mørke og lysmoduser for å passe best inn temaet og sørge for lesbarhet.',
|
||||
'ui_colors_desc' => 'Angi primær farge for programmet og standard link farge. Primær farge brukes hovedsakelig for toppbanner, knapper og grensesnittets dekorasjoner. Standardfargen for koblinger brukes for tekstbaserte lenker og handlinger, både i skriftlig innhold og i programgrensesnittet.',
|
||||
'app_color' => 'Primær farge',
|
||||
'link_color' => 'Standard koblingsfarge',
|
||||
'content_colors_desc' => 'Angi farger for alle elementer i organiseringshierarkiet. Velger du farger med lik lysstyrke til standard farger anbefales for lesbarhet.',
|
||||
'bookshelf_color' => 'Hyllefarge',
|
||||
'book_color' => 'Bokfarge',
|
||||
'chapter_color' => 'Kapittelfarge',
|
||||
@@ -93,10 +93,10 @@ return [
|
||||
'maint_send_test_email_mail_text' => 'Gratulerer! Da du mottok dette e-postvarselet, ser det ut til at e-postinnstillingene dine er konfigurert riktig.',
|
||||
'maint_recycle_bin_desc' => 'Slettede hyller, bøker, kapitler og sider kastes i papirkurven så de kan bli gjenopprettet eller slettet permanent. Eldre utgaver i papirkurven kan slettes automatisk etter en stund, avhengig av systemkonfigurasjonen.',
|
||||
'maint_recycle_bin_open' => 'Åpne papirkurven',
|
||||
'maint_regen_references' => 'Regenerate References',
|
||||
'maint_regen_references_desc' => 'This action will rebuild the cross-item reference index within the database. This is usually handled automatically but this action can be useful to index old content or content added via unofficial methods.',
|
||||
'maint_regen_references_success' => 'Reference index has been regenerated!',
|
||||
'maint_timeout_command_note' => 'Note: This action can take time to run, which can lead to timeout issues in some web environments. As an alternative, this action be performed using a terminal command.',
|
||||
'maint_regen_references' => 'Regenerer referanser',
|
||||
'maint_regen_references_desc' => 'Denne handlingen gjenoppbygger referanseindeksen for krysselement i databasen. Dette håndteres vanligvis automatisk, men denne handlingen kan være nyttig for å indeksere gammelt innhold eller innhold lagt til via uoffisielle metoder.',
|
||||
'maint_regen_references_success' => 'Referanseindeksen har blitt regenerert!',
|
||||
'maint_timeout_command_note' => 'Merk: Denne handlingen kan ta tid å kjøre, noe som kan føre til tidsavbruddsmessige problemer i noen webomgivelser. Dette gjøres som et alternativ ved hjelp av en terminalkommando.',
|
||||
|
||||
// Recycle Bin
|
||||
'recycle_bin' => 'Papirkurven',
|
||||
@@ -129,7 +129,7 @@ return [
|
||||
'audit_table_user' => 'Kontoholder',
|
||||
'audit_table_event' => 'Hendelse',
|
||||
'audit_table_related' => 'Relaterte elementer eller detaljer',
|
||||
'audit_table_ip' => 'IP Address',
|
||||
'audit_table_ip' => 'IP Adresse',
|
||||
'audit_table_date' => 'Aktivitetsdato',
|
||||
'audit_date_from' => 'Datoperiode fra',
|
||||
'audit_date_to' => 'Datoperiode til',
|
||||
@@ -137,13 +137,13 @@ return [
|
||||
// Role Settings
|
||||
'roles' => 'Roller',
|
||||
'role_user_roles' => 'Kontoroller',
|
||||
'roles_index_desc' => 'Roles are used to group users & provide system permission to their members. When a user is a member of multiple roles the privileges granted will stack and the user will inherit all abilities.',
|
||||
'roles_x_users_assigned' => ':count user assigned|:count users assigned',
|
||||
'roles_x_permissions_provided' => ':count permission|:count permissions',
|
||||
'roles_assigned_users' => 'Assigned Users',
|
||||
'roles_permissions_provided' => 'Provided Permissions',
|
||||
'roles_index_desc' => 'Roller brukes til å gruppere brukere og gi systemtilgang til medlemmene. Når en bruker er medlem av flere roller, vil de tildelte rettighetene samles inn, og brukeren vil arve alle evner.',
|
||||
'roles_x_users_assigned' => ':count bruker tildelt|:count brukere tildelt',
|
||||
'roles_x_permissions_provided' => ':count tillatelse|:count tillatelser',
|
||||
'roles_assigned_users' => 'Tilordnede brukere',
|
||||
'roles_permissions_provided' => 'Tilbudte rettigheter',
|
||||
'role_create' => 'Opprett ny rolle',
|
||||
'role_delete' => 'Rolle slettet',
|
||||
'role_delete' => 'Slett rolle',
|
||||
'role_delete_confirm' => 'Dette vil slette rollen «:roleName».',
|
||||
'role_delete_users_assigned' => 'Denne rollen har :userCount kontoer koblet opp mot seg. Velg hvilke rolle du vil flytte disse til.',
|
||||
'role_delete_no_migration' => "Ikke flytt kontoer",
|
||||
@@ -162,13 +162,13 @@ return [
|
||||
'role_manage_page_templates' => 'Behandle sidemaler',
|
||||
'role_access_api' => 'Systemtilgang API',
|
||||
'role_manage_settings' => 'Behandle applikasjonsinnstillinger',
|
||||
'role_export_content' => 'Export content',
|
||||
'role_editor_change' => 'Change page editor',
|
||||
'role_export_content' => 'Eksporter innhold',
|
||||
'role_editor_change' => 'Endre sideredigering',
|
||||
'role_asset' => 'Eiendomstillatelser',
|
||||
'roles_system_warning' => 'Vær oppmerksom på at tilgang til noen av de ovennevnte tre tillatelsene kan tillate en bruker å endre sine egne rettigheter eller rettighetene til andre i systemet. Bare tildel roller med disse tillatelsene til pålitelige brukere.',
|
||||
'role_asset_desc' => 'Disse tillatelsene kontrollerer standard tilgang til eiendelene i systemet. Tillatelser til bøker, kapitler og sider overstyrer disse tillatelsene.',
|
||||
'role_asset_admins' => 'Administratorer får automatisk tilgang til alt innhold, men disse alternativene kan vise eller skjule UI-alternativer.',
|
||||
'role_asset_image_view_note' => 'This relates to visibility within the image manager. Actual access of uploaded image files will be dependant upon system image storage option.',
|
||||
'role_asset_image_view_note' => 'Dette gjelder synlighet innenfor bilde-administrasjonen. Faktisk tilgang på opplastede bildefiler vil være avhengig av valget for systemlagring av bildet.',
|
||||
'role_all' => 'Alle',
|
||||
'role_own' => 'Egne',
|
||||
'role_controlled_by_asset' => 'Kontrollert av eiendelen de er lastet opp til',
|
||||
@@ -178,7 +178,7 @@ return [
|
||||
|
||||
// Users
|
||||
'users' => 'Brukere',
|
||||
'users_index_desc' => 'Create & manage individual user accounts within the system. User accounts are used for login and attribution of content & activity. Access permissions are primarily role-based but user content ownership, among other factors, may also affect permissions & access.',
|
||||
'users_index_desc' => 'Opprett og administrer individuelle brukerkontoer innenfor systemet. Brukerkontoer brukes for innlogging og navngivelse av innhold og aktivitet. Tilgangstillatelser er primært rollebasert, men brukerinnhold eierskap, blant andre faktorer, kan også påvirke tillatelser og tilgang.',
|
||||
'user_profile' => 'Profil',
|
||||
'users_add_new' => 'Register ny konto',
|
||||
'users_search' => 'Søk i kontoer',
|
||||
@@ -189,7 +189,7 @@ return [
|
||||
'users_role' => 'Roller',
|
||||
'users_role_desc' => 'Velg hvilke roller denne kontoholderen vil bli tildelt. Hvis en kontoholderen er tildelt flere roller, vil tillatelsene fra disse rollene stable seg, og de vil motta alle evnene til de tildelte rollene.',
|
||||
'users_password' => 'Passord',
|
||||
'users_password_desc' => 'Set a password used to log-in to the application. This must be at least 8 characters long.',
|
||||
'users_password_desc' => 'Angi et passord som brukes til å logge inn til programmet. Dette må være minst 8 tegn langt.',
|
||||
'users_send_invite_text' => 'Du kan velge å sende denne kontoholderen en invitasjons-e-post som lar dem angi sitt eget passord, ellers kan du selv angi passordet.',
|
||||
'users_send_invite_option' => 'Send invitasjonsmelding',
|
||||
'users_external_auth_id' => 'Ekstern godkjennings-ID',
|
||||
@@ -248,32 +248,32 @@ return [
|
||||
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_index_desc' => 'Webhooks are a way to send data to external URLs when certain actions and events occur within the system which allows event-based integration with external platforms such as messaging or notification systems.',
|
||||
'webhooks_x_trigger_events' => ':count trigger event|:count trigger events',
|
||||
'webhooks_create' => 'Create New Webhook',
|
||||
'webhooks_none_created' => 'No webhooks have yet been created.',
|
||||
'webhooks_edit' => 'Edit Webhook',
|
||||
'webhooks_save' => 'Save Webhook',
|
||||
'webhooks_details' => 'Webhook Details',
|
||||
'webhooks_details_desc' => 'Provide a user friendly name and a POST endpoint as a location for the webhook data to be sent to.',
|
||||
'webhooks_events' => 'Webhook Events',
|
||||
'webhooks_events_desc' => 'Select all the events that should trigger this webhook to be called.',
|
||||
'webhooks_events_warning' => 'Keep in mind that these events will be triggered for all selected events, even if custom permissions are applied. Ensure that use of this webhook won\'t expose confidential content.',
|
||||
'webhooks_events_all' => 'All system events',
|
||||
'webhooks_name' => 'Webhook Name',
|
||||
'webhooks_timeout' => 'Webhook Request Timeout (Seconds)',
|
||||
'webhooks_endpoint' => 'Webhook Endpoint',
|
||||
'webhooks_active' => 'Webhook Active',
|
||||
'webhook_events_table_header' => 'Events',
|
||||
'webhooks_delete' => 'Delete Webhook',
|
||||
'webhooks_delete_warning' => 'This will fully delete this webhook, with the name \':webhookName\', from the system.',
|
||||
'webhooks_delete_confirm' => 'Are you sure you want to delete this webhook?',
|
||||
'webhooks_format_example' => 'Webhook Format Example',
|
||||
'webhooks_format_example_desc' => 'Webhook data is sent as a POST request to the configured endpoint as JSON following the format below. The "related_item" and "url" properties are optional and will depend on the type of event triggered.',
|
||||
'webhooks_status' => 'Webhook Status',
|
||||
'webhooks_last_called' => 'Last Called:',
|
||||
'webhooks_last_errored' => 'Last Errored:',
|
||||
'webhooks_last_error_message' => 'Last Error Message:',
|
||||
'webhooks_index_desc' => 'Webhooks er en måte å sende data til eksterne nettadresser når bestemte handlinger og hendelser oppstår i systemet som gjør det mulig å integrer med eksterne plattformer som meldingssystemer eller varslingssystemer.',
|
||||
'webhooks_x_trigger_events' => ':count utløsende hendelse:count utløsende hendelser',
|
||||
'webhooks_create' => 'Lag ny Webhook',
|
||||
'webhooks_none_created' => 'Ingen webhooks er opprettet ennå.',
|
||||
'webhooks_edit' => 'Rediger webhook',
|
||||
'webhooks_save' => 'Lagre Webhook',
|
||||
'webhooks_details' => 'Webhook detaljer',
|
||||
'webhooks_details_desc' => 'Gi et brukervennlig navn og et POST endepunkt som et sted der webhook-dataene skal sendes til.',
|
||||
'webhooks_events' => 'Webhook hendelser',
|
||||
'webhooks_events_desc' => 'Velg alle hendelsene som skal utløse denne webhook som skal kalles.',
|
||||
'webhooks_events_warning' => 'Husk at disse hendelsene vil bli utløst for alle valgte hendelser, selv om egendefinerte tillatelser brukes. Pass på at bruk av denne webhooken ikke vil utsette konfidensiell innhold.',
|
||||
'webhooks_events_all' => 'Alle systemhendelser',
|
||||
'webhooks_name' => 'Webhook navn',
|
||||
'webhooks_timeout' => 'Tidsavbrudd for Webhook forespørsler (sekunder)',
|
||||
'webhooks_endpoint' => 'Webhook endepunkt',
|
||||
'webhooks_active' => 'Webhook aktiv',
|
||||
'webhook_events_table_header' => 'Hendelser',
|
||||
'webhooks_delete' => 'Slett webhook',
|
||||
'webhooks_delete_warning' => 'Dette vil slette webhook, med navnet \':webhookName\', fra systemet.',
|
||||
'webhooks_delete_confirm' => 'Er du sikker på at du vil slette denne webhooken?',
|
||||
'webhooks_format_example' => 'Webhook formattering eksempel',
|
||||
'webhooks_format_example_desc' => 'Webhook-data sendes som en POST-forespørsel til det konfigurerte endepunktet som JSON ved hjelp av formatet nedenfor. «related_item» og «url» egenskaper er valgfrie og vil avhenge av hvilken type hendelse som utløses.',
|
||||
'webhooks_status' => 'Webhook status',
|
||||
'webhooks_last_called' => 'Sist ringt:',
|
||||
'webhooks_last_errored' => 'Siste feil:',
|
||||
'webhooks_last_error_message' => 'Siste feilmelding:',
|
||||
|
||||
|
||||
//! If editing translations files directly please ignore this in all
|
||||
|
||||
@@ -32,7 +32,7 @@ return [
|
||||
'digits_between' => ':attribute må være mellomg :min og :max tall.',
|
||||
'email' => ':attribute må være en gyldig e-post.',
|
||||
'ends_with' => ':attribute må slutte med en av verdiene: :values',
|
||||
'file' => 'The :attribute must be provided as a valid file.',
|
||||
'file' => 'Attributtet :attribute må angis som en gyldig fil.',
|
||||
'filled' => ':attribute feltet er påkrevd.',
|
||||
'gt' => [
|
||||
'numeric' => ':attribute må være større enn :value.',
|
||||
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Gebruiker succesvol verwijderd',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Rol succesvol aangemaakt',
|
||||
'role_update_notification' => 'Rol succesvol bijgewerkt',
|
||||
'role_delete_notification' => 'Rol succesvol verwijderd',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'reageerde op',
|
||||
|
||||
@@ -23,7 +23,7 @@ return [
|
||||
'meta_updated' => 'Bijgewerkt: :timeLength',
|
||||
'meta_updated_name' => 'Bijgewerkt: :timeLength door :user',
|
||||
'meta_owned_name' => 'Eigendom van :user',
|
||||
'meta_reference_page_count' => 'Referenced on :count page|Referenced on :count pages',
|
||||
'meta_reference_page_count' => 'Naartoe verwezen op :count pagina|Naartoe verwezen op :count pagina\'s',
|
||||
'entity_select' => 'Entiteit selecteren',
|
||||
'entity_select_lack_permission' => 'Je hebt niet de vereiste machtiging om dit item te selecteren',
|
||||
'images' => 'Afbeeldingen',
|
||||
@@ -141,7 +141,7 @@ return [
|
||||
'books_search_this' => 'Zoeken in dit boek',
|
||||
'books_navigation' => 'Boek navigatie',
|
||||
'books_sort' => 'Inhoud van het boek sorteren',
|
||||
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books.',
|
||||
'books_sort_desc' => 'Verplaats hoofdstukken en pagina\'s binnen een boek om de inhoud ervan te reorganiseren. Andere boeken kunnen worden toegevoegd, zodat hoofdstukken en pagina\'s gemakkelijk tussen boeken kunnen worden verplaatst.',
|
||||
'books_sort_named' => 'Sorteer boek :bookName',
|
||||
'books_sort_name' => 'Sorteren op naam',
|
||||
'books_sort_created' => 'Sorteren op datum van aanmaken',
|
||||
@@ -150,17 +150,17 @@ return [
|
||||
'books_sort_chapters_last' => 'Hoofdstukken laatst',
|
||||
'books_sort_show_other' => 'Bekijk andere boeken',
|
||||
'books_sort_save' => 'Nieuwe volgorde opslaan',
|
||||
'books_sort_show_other_desc' => 'Add other books here to include them in the sort operation, and allow easy cross-book reorganisation.',
|
||||
'books_sort_move_up' => 'Move Up',
|
||||
'books_sort_move_down' => 'Move Down',
|
||||
'books_sort_move_prev_book' => 'Move to Previous Book',
|
||||
'books_sort_move_next_book' => 'Move to Next Book',
|
||||
'books_sort_move_prev_chapter' => 'Move Into Previous Chapter',
|
||||
'books_sort_move_next_chapter' => 'Move Into Next Chapter',
|
||||
'books_sort_move_book_start' => 'Move to Start of Book',
|
||||
'books_sort_move_book_end' => 'Move to End of Book',
|
||||
'books_sort_move_before_chapter' => 'Move to Before Chapter',
|
||||
'books_sort_move_after_chapter' => 'Move to After Chapter',
|
||||
'books_sort_show_other_desc' => 'Voeg hier andere boeken toe om ze op te nemen in de sortering, en om een gemakkelijke reorganisatie van boeken mogelijk te maken.',
|
||||
'books_sort_move_up' => 'Verplaats naar boven',
|
||||
'books_sort_move_down' => 'Verplaats naar beneden',
|
||||
'books_sort_move_prev_book' => 'Verplaats naar het vorige boek',
|
||||
'books_sort_move_next_book' => 'Verplaats naar het volgende boek',
|
||||
'books_sort_move_prev_chapter' => 'Verplaats naar het vorige hoofdstuk',
|
||||
'books_sort_move_next_chapter' => 'Verplaats naar het volgende hoofdstuk',
|
||||
'books_sort_move_book_start' => 'Verplaats naar het begin van het boek',
|
||||
'books_sort_move_book_end' => 'Verplaats naar het einde van het boek',
|
||||
'books_sort_move_before_chapter' => 'Verplaats naar vóór het hoofdstuk',
|
||||
'books_sort_move_after_chapter' => 'Verplaats naar áchter het hoofdstuk',
|
||||
'books_copy' => 'Kopieer Boek',
|
||||
'books_copy_success' => 'Boek succesvol gekopieerd',
|
||||
|
||||
|
||||
@@ -50,7 +50,7 @@ return [
|
||||
// Drawing & Images
|
||||
'image_upload_error' => 'Er is een fout opgetreden bij het uploaden van de afbeelding',
|
||||
'image_upload_type_error' => 'Het geüploade afbeeldingstype is ongeldig',
|
||||
'drawing_data_not_found' => 'Drawing data could not be loaded. The drawing file might no longer exist or you may not have permission to access it.',
|
||||
'drawing_data_not_found' => 'De gegevens van de tekening konden niet worden geladen. Het tekenbestand bestaat misschien niet meer of u hebt geen machtiging om het te openen.',
|
||||
|
||||
// Attachments
|
||||
'attachment_not_found' => 'Bijlage niet gevonden',
|
||||
|
||||
@@ -33,9 +33,9 @@ return [
|
||||
'app_custom_html_desc' => 'Alle hieronder toegevoegde data wordt aan het einde van de <head> sectie van elke pagina toegevoegd. Gebruik dit om stijlen te overschrijven of analytische code toe te voegen.',
|
||||
'app_custom_html_disabled_notice' => 'Bovenstaande wordt niet toegevoegd aan deze pagina om ervoor te zorgen dat je foutieve code steeds ongedaan kan maken.',
|
||||
'app_logo' => 'Applicatielogo',
|
||||
'app_logo_desc' => 'This is used in the application header bar, among other areas. This image should be 86px in height. Large images will be scaled down.',
|
||||
'app_icon' => 'Application Icon',
|
||||
'app_icon_desc' => 'This icon is used for browser tabs and shortcut icons. This should be a 256px square PNG image.',
|
||||
'app_logo_desc' => 'Dit wordt onder meer gebruikt in de kopbalk van de applicatie. Deze afbeelding dient 86px hoog te zijn. Grote afbeeldingen worden teruggeschaald.',
|
||||
'app_icon' => 'Applicatie Pictogram',
|
||||
'app_icon_desc' => 'Dit pictogram wordt gebruikt voor browsertabbladen en snelkoppelingspictogrammen. Dit dient een 256px vierkante PNG-afbeelding te zijn.',
|
||||
'app_homepage' => 'Applicatie Startpagina',
|
||||
'app_homepage_desc' => 'Selecteer een weergave om weer te geven op de startpagina in plaats van de standaard weergave. Paginamachtigingen worden genegeerd voor geselecteerde pagina\'s.',
|
||||
'app_homepage_select' => 'Selecteer een pagina',
|
||||
@@ -49,12 +49,12 @@ return [
|
||||
'app_disable_comments_desc' => 'Schakel reacties uit op alle pagina\'s in de applicatie. <br> Bestaande reacties worden niet getoond.',
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
'color_scheme' => 'Kleurenschema van applicatie',
|
||||
'color_scheme_desc' => 'Stel de kleuren in voor de gebruikersinterface van de applicatie. Kleuren kunnen afzonderlijk worden geconfigureerd voor donkere en lichte modi om zo goed mogelijk bij het thema te passen en de leesbaarheid te garanderen.',
|
||||
'ui_colors_desc' => 'Stel de primaire kleur van de applicatie en de standaard hyperlinkkleur in. De primaire kleur wordt voornamelijk gebruikt voor de headerbanner, knoppen en interfacedecoraties. De standaard hyperlinkkleur wordt gebruikt voor tekstgebaseerde links en acties, zowel binnen geschreven inhoud als in de applicatie-interface.',
|
||||
'app_color' => 'Primaire kleur',
|
||||
'link_color' => 'Standaard hyperlinkkleur',
|
||||
'content_colors_desc' => 'Stel kleuren in voor alle elementen in de hiërarchie van de pagina-organisatie. Voor de leesbaarheid is het aan te raden kleuren te kiezen met eenzelfde helderheid als de standaardkleuren.',
|
||||
'bookshelf_color' => 'Kleur van de Boekenplank',
|
||||
'book_color' => 'Kleur van het Boek',
|
||||
'chapter_color' => 'Kleur van het Hoofdstuk',
|
||||
@@ -138,8 +138,8 @@ return [
|
||||
'roles' => 'Rollen',
|
||||
'role_user_roles' => 'Gebruikersrollen',
|
||||
'roles_index_desc' => 'Rollen worden gebruikt om gebruikers te groeperen en systeemrechten te geven. Wanneer een gebruiker lid is van meerdere rollen worden de toegekende rechten samengevoegd en erft de gebruiker alle mogelijkheden.',
|
||||
'roles_x_users_assigned' => ':count user assigned|:count users assigned',
|
||||
'roles_x_permissions_provided' => ':count permission|:count permissions',
|
||||
'roles_x_users_assigned' => ':count gebruiker toegewezen|:count gebruikers toegewezen',
|
||||
'roles_x_permissions_provided' => ':count machtiging|:count machtigingen',
|
||||
'roles_assigned_users' => 'Toegewezen Gebruikers',
|
||||
'roles_permissions_provided' => 'Verleende Machtigingen',
|
||||
'role_create' => 'Nieuwe Rol Maken',
|
||||
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Użytkownik pomyślnie usunięty',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Rola utworzona pomyślnie',
|
||||
'role_update_notification' => 'Rola zaktualizowana pomyślnie',
|
||||
'role_delete_notification' => 'Rola usunięta pomyślnie',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'skomentował',
|
||||
|
||||
@@ -23,7 +23,7 @@ return [
|
||||
'meta_updated' => 'Zaktualizowano :timeLength',
|
||||
'meta_updated_name' => 'Zaktualizowano :timeLength przez :user',
|
||||
'meta_owned_name' => 'Właściciel: :user',
|
||||
'meta_reference_page_count' => 'Referenced on :count page|Referenced on :count pages',
|
||||
'meta_reference_page_count' => 'Odniesienie na :count stronie|Odniesienie na :count stronach',
|
||||
'entity_select' => 'Wybór obiektu',
|
||||
'entity_select_lack_permission' => 'Nie masz wymaganych uprawnień do wybrania tej pozycji',
|
||||
'images' => 'Obrazki',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Schemat kolorów aplikacji',
|
||||
'color_scheme_desc' => 'Ustaw kolory użyte w interfejsie BookStack\'a. Kolory można skonfigurować oddzielnie dla trybu ciemnego i jasnego, aby jak najlepiej pasowały do motywu i zapewniały czytelność.',
|
||||
'ui_colors_desc' => 'Ustaw kolor podstawowy i domyślny kolor linku dla BookStack\'a. Podstawowy kolor jest używany głównie do głównego baneru, przycisków i dekoracji interfejsu. Domyślny kolor linku jest używany dla tekstowych linków i akcji, zarówno w napisanej treści, jak i w interfejsie Bookstack\'a.',
|
||||
'color_scheme_desc' => 'Ustaw kolory używane w interfejsie aplikacji. Kolory można skonfigurować oddzielnie dla trybu ciemnego i jasnego, aby najlepiej pasowały do motywu i zapewniały czytelność.',
|
||||
'ui_colors_desc' => 'Ustaw podstawowy kolor aplikacji i domyślny kolor linku. Podstawowy kolor jest używany głównie w banerze aplikacji, przyciskach i interfejsie. Domyślny kolor linku jest używany dla tekstowych linków i akcji, zarówno w napisanych treściach, jak i w interfejsie aplikacji.',
|
||||
'app_color' => 'Kolor podstawowy',
|
||||
'link_color' => 'Domyślny kolor linku',
|
||||
'content_colors_desc' => 'Ustaw kolory dla wszystkich elementów w hierarchii organizacji stron. Wybór kolorów o jasności podobnej do domyślnych kolorów jest zalecany dla czytelności.',
|
||||
@@ -138,8 +138,8 @@ return [
|
||||
'roles' => 'Role',
|
||||
'role_user_roles' => 'Role użytkowników',
|
||||
'roles_index_desc' => 'Role są używane do grupowania użytkowników i udzielania uprawnień systemowych ich członkom. Gdy użytkownik jest członkiem wielu ról, przyznane uprawnienia będą gromadzone, a użytkownik odziedziczy wszystkie możliwości.',
|
||||
'roles_x_users_assigned' => ':count user assigned|:count users assigned',
|
||||
'roles_x_permissions_provided' => ':count permission|:count permissions',
|
||||
'roles_x_users_assigned' => ':count przypisany użytkownik|:count przypisanych użytkowników',
|
||||
'roles_x_permissions_provided' => ':1 uprawnienie|:count uprawnień',
|
||||
'roles_assigned_users' => 'Przypisani Użytkownicy',
|
||||
'roles_permissions_provided' => 'Przyznawane Uprawnienia',
|
||||
'role_create' => 'Utwórz nową rolę',
|
||||
@@ -249,7 +249,7 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooki',
|
||||
'webhooks_index_desc' => 'Webhooki to sposób na wysyłanie danych do zewnętrznych adresów URL, gdy pewne działania i zdarzenia zachodzą w ramach systemu, co umożliwia integrację zdarzeń w systemie z zewnętrznymi platformami, takimi jak systemy wysyłania wiadomości lub powiadamiania.',
|
||||
'webhooks_x_trigger_events' => ':count trigger event|:count trigger events',
|
||||
'webhooks_x_trigger_events' => ':count zdarzenie wyzwalacza|:count zdarzeń wyzwalacza',
|
||||
'webhooks_create' => 'Utwórz nowy Webhook',
|
||||
'webhooks_none_created' => 'Nie utworzono jeszcze żadnych webhooków.',
|
||||
'webhooks_edit' => 'Edytuj Webhook',
|
||||
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Utilizador removido com sucesso',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Cargo criado com sucesso',
|
||||
'role_update_notification' => 'Cargo atualizado com sucesso',
|
||||
'role_delete_notification' => 'Cargo excluído com sucesso',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'comentado a',
|
||||
|
||||
@@ -23,7 +23,7 @@ return [
|
||||
'meta_updated' => 'Atualizado :timeLength',
|
||||
'meta_updated_name' => 'Atualizado :timeLength por :user',
|
||||
'meta_owned_name' => 'Propriedade de :user',
|
||||
'meta_reference_page_count' => 'Referenced on :count page|Referenced on :count pages',
|
||||
'meta_reference_page_count' => 'Referenciado em :count página|Referenciado em :count páginas',
|
||||
'entity_select' => 'Seleção de Entidade',
|
||||
'entity_select_lack_permission' => 'Não tem as permissões necessárias para selecionar este item',
|
||||
'images' => 'Imagens',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Esquema de cores da aplicação',
|
||||
'color_scheme_desc' => 'Define as cores a serem usadas na interface do BookStack. As cores podem ser configuradas separadamente para modos escuro e claro para melhor se adequar ao tema e garantir a legibilidade.',
|
||||
'ui_colors_desc' => 'Defina a cor primária e a cor padrão do link para o BookStack. A cor primária é usada principalmente para o banner do cabeçalho, botões e decorações da interface. A cor padrão do link é usada para links e ações baseados em texto, tanto no conteúdo escrito quanto na interface do BookStack.',
|
||||
'color_scheme_desc' => 'Defina as cores a serem utilizadas na aplicação. As cores podem ser configuradas separadamente para modos escuro e claro para melhor se adequar ao tema e garantir legibilidade.',
|
||||
'ui_colors_desc' => 'Defina a cor primária e a cor padrão para links da aplicação. A cor principal é utilizada principalmente para o banner do cabeçalho, botões e decorações da interface. A cor padrão do link é usada para links e ações baseados em texto, tanto dentro do conteúdo escrito quanto na interface da aplicação.',
|
||||
'app_color' => 'Cor primária',
|
||||
'link_color' => 'Cor padrão do link',
|
||||
'content_colors_desc' => 'Definir cores para todos os elementos na hierarquia da organização da página. Escolher cores com um brilho semelhante às cores padrão é recomendado para a legibilidade.',
|
||||
@@ -138,8 +138,8 @@ return [
|
||||
'roles' => 'Cargos',
|
||||
'role_user_roles' => 'Cargos de Utilizador',
|
||||
'roles_index_desc' => 'Papéis são usados para agrupar utilizadores & fornecer permissão ao sistema para os seus membros. Quando um utilizador é membro de múltiplas funções, os privilégios concedidos irão acumular e o utilizador herdará todas as habilidades.',
|
||||
'roles_x_users_assigned' => ':count user assigned|:count users assigned',
|
||||
'roles_x_permissions_provided' => ':count permission|:count permissions',
|
||||
'roles_x_users_assigned' => ':count utilizadores atribuído|:count utilizadores atribuídos',
|
||||
'roles_x_permissions_provided' => ':count permissão|:count permissões',
|
||||
'roles_assigned_users' => 'Utilizadores atribuídos',
|
||||
'roles_permissions_provided' => 'Permissões fornecidas',
|
||||
'role_create' => 'Criar novo Cargo',
|
||||
@@ -249,7 +249,7 @@ return [
|
||||
// Webhooks
|
||||
'webhooks' => 'Webhooks',
|
||||
'webhooks_index_desc' => 'Webhooks são uma maneira de enviar dados para URLs externas quando certas ações e eventos ocorrem no sistema. Isto permite uma integração baseada em eventos com plataformas externas como mensagens ou sistemas de notificação.',
|
||||
'webhooks_x_trigger_events' => ':count trigger event|:count trigger events',
|
||||
'webhooks_x_trigger_events' => ':count acionador|:count acionadores',
|
||||
'webhooks_create' => 'Criar um novo webhook',
|
||||
'webhooks_none_created' => 'Ainda nenhum webhooks foi criado.',
|
||||
'webhooks_edit' => 'Editar Webhook',
|
||||
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Usuário removido com sucesso',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Perfil criado com sucesso',
|
||||
'role_update_notification' => 'Perfil atualizado com sucesso',
|
||||
'role_delete_notification' => 'Perfil excluído com sucesso',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'comentou em',
|
||||
|
||||
@@ -50,7 +50,7 @@ return [
|
||||
// Drawing & Images
|
||||
'image_upload_error' => 'Um erro aconteceu enquanto o servidor tentava efetuar o upload da imagem',
|
||||
'image_upload_type_error' => 'O tipo de imagem que está sendo enviada é inválido',
|
||||
'drawing_data_not_found' => 'Drawing data could not be loaded. The drawing file might no longer exist or you may not have permission to access it.',
|
||||
'drawing_data_not_found' => 'Dados de desenho não puderam ser carregados. Talvez o arquivo de desenho não exista mais ou você não tenha permissão para acessá-lo.',
|
||||
|
||||
// Attachments
|
||||
'attachment_not_found' => 'Anexo não encontrado',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Цветовая схема приложения',
|
||||
'color_scheme_desc' => 'Установите цвета для использования в интерфейсе BookStack. Цвета могут быть настроены отдельно для темных и светлых режимов, чтобы наилучшим образом соответствовать теме и обеспечить разборчивость.',
|
||||
'ui_colors_desc' => 'Установите основной цвет и цвет ссылок по умолчанию для BookStack. Основной цвет в основном используется для заголовка баннера, кнопок и декораций интерфейса. Цвет ссылок по умолчанию используется для текстовых ссылок и действий как в письменном содержании, так и в интерфейсе Bookstack.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Основной цвет',
|
||||
'link_color' => 'Цвет ссылки',
|
||||
'content_colors_desc' => 'Задает цвета для всех элементов организационной иерархии страницы. Для удобства чтения рекомендуется выбирать цвета, яркость которых близка к цветам по умолчанию.',
|
||||
|
||||
@@ -38,14 +38,14 @@ return [
|
||||
'book_sort_notification' => 'Kniha úspešne znovu zoradená',
|
||||
|
||||
// Bookshelves
|
||||
'bookshelf_create' => 'created shelf',
|
||||
'bookshelf_create_notification' => 'Shelf successfully created',
|
||||
'bookshelf_create_from_book' => 'converted book to shelf',
|
||||
'bookshelf_create' => 'vytvoril(a) policu',
|
||||
'bookshelf_create_notification' => 'Polica úspešne vytvorená',
|
||||
'bookshelf_create_from_book' => 'kniha bola prevedená na policu',
|
||||
'bookshelf_create_from_book_notification' => 'Kniha úspešne konvertovaná na poličku',
|
||||
'bookshelf_update' => 'updated shelf',
|
||||
'bookshelf_update_notification' => 'Shelf successfully updated',
|
||||
'bookshelf_delete' => 'deleted shelf',
|
||||
'bookshelf_delete_notification' => 'Shelf successfully deleted',
|
||||
'bookshelf_update' => 'aktualizoval(a) policu',
|
||||
'bookshelf_update_notification' => 'Polica bola úspešne aktualizovaná',
|
||||
'bookshelf_delete' => 'odstránená polica',
|
||||
'bookshelf_delete_notification' => 'Polica bola úspešne odstránená',
|
||||
|
||||
// Favourites
|
||||
'favourite_add_notification' => '":name" bol pridaný medzi obľúbené',
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Používateľ úspešne zmazaný',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Rola úspešne vytvorená',
|
||||
'role_update_notification' => 'Rola úspešne aktualizovaná',
|
||||
'role_delete_notification' => 'Rola úspešne zmazaná',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'komentoval(a)',
|
||||
|
||||
@@ -21,7 +21,7 @@ return [
|
||||
'email' => 'E-mail',
|
||||
'password' => 'Heslo',
|
||||
'password_confirm' => 'Potvrdiť heslo',
|
||||
'password_hint' => 'Must be at least 8 characters',
|
||||
'password_hint' => 'Musí obsahovať aspoň 8 znakov',
|
||||
'forgot_password' => 'Zabudli ste heslo?',
|
||||
'remember_me' => 'Zapamätať si ma',
|
||||
'ldap_email_hint' => 'Zadajte prosím e-mail, ktorý sa má použiť pre tento účet.',
|
||||
@@ -39,9 +39,9 @@ return [
|
||||
'register_success' => 'Ďakujeme za registráciu! Teraz ste registrovaný a prihlásený.',
|
||||
|
||||
// Login auto-initiation
|
||||
'auto_init_starting' => 'Attempting Login',
|
||||
'auto_init_starting_desc' => 'We\'re contacting your authentication system to start the login process. If there\'s no progress after 5 seconds you can try clicking the link below.',
|
||||
'auto_init_start_link' => 'Proceed with authentication',
|
||||
'auto_init_starting' => 'Pokus o prihlásenie',
|
||||
'auto_init_starting_desc' => 'Kontaktujeme váš overovací systém, aby sme spustili proces prihlásenia. Ak po 5 sekundách nedôjde k žiadnemu pokroku, môžete skúsiť kliknúť na odkaz nižšie.',
|
||||
'auto_init_start_link' => 'Pokračujte v autentifikácii',
|
||||
|
||||
// Password Reset
|
||||
'reset_password' => 'Resetovanie hesla',
|
||||
@@ -59,10 +59,10 @@ return [
|
||||
'email_confirm_text' => 'Prosím, potvrďte Vašu e-mailovú adresu kliknutím na tlačidlo nižšie:',
|
||||
'email_confirm_action' => 'Potvrdiť e-mail',
|
||||
'email_confirm_send_error' => 'Je požadované overenie e-mailu, ale systém nemohol e-mail odoslať. Kontaktujte administrátora, aby ste sa uistili, že je e-mail nastavený správne.',
|
||||
'email_confirm_success' => 'Your email has been confirmed! You should now be able to login using this email address.',
|
||||
'email_confirm_success' => 'Váš email bol potvrdený! Teraz by ste sa mali vedieť prihlásiť pomocou tejto e-mailovej adresy.',
|
||||
'email_confirm_resent' => 'Potvrdzujúci e-mail bol poslaný znovu, skontrolujte prosím svoju e-mailovú schránku.',
|
||||
'email_confirm_thanks' => 'Thanks for confirming!',
|
||||
'email_confirm_thanks_desc' => 'Please wait a moment while your confirmation is handled. If you are not redirected after 3 seconds press the "Continue" link below to proceed.',
|
||||
'email_confirm_thanks' => 'Ďakujeme za potvrdenie!',
|
||||
'email_confirm_thanks_desc' => 'Počkajte chvíľu, kým sa spracuje vaše potvrdenie. Ak nebudete presmerovaní do 3 sekúnd, pokračujte kliknutím na odkaz „Pokračovať“ nižšie.',
|
||||
|
||||
'email_not_confirmed' => 'E-mailová adresa nebola overená',
|
||||
'email_not_confirmed_text' => 'Vaša e-mailová adresa nebola zatiaľ overená.',
|
||||
@@ -78,7 +78,7 @@ return [
|
||||
'user_invite_page_welcome' => 'Vitajte v :appName!',
|
||||
'user_invite_page_text' => 'Ak chcete dokončiť svoj účet a získať prístup, musíte nastaviť heslo, ktoré sa použije na prihlásenie do aplikácie :appName pri budúcich návštevách.',
|
||||
'user_invite_page_confirm_button' => 'Potvrdiť heslo',
|
||||
'user_invite_success_login' => 'Password set, you should now be able to login using your set password to access :appName!',
|
||||
'user_invite_success_login' => 'Heslo je nastavené, teraz by ste sa mali vedieť prihlásiť pomocou svojho nastaveného hesla na prístup k :appName!',
|
||||
|
||||
// Multi-factor Authentication
|
||||
'mfa_setup' => 'Nastaviť viacúrovňové prihlasovanie',
|
||||
|
||||
@@ -25,7 +25,7 @@ return [
|
||||
'actions' => 'Akcie',
|
||||
'view' => 'Zobraziť',
|
||||
'view_all' => 'Zobraziť všetko',
|
||||
'new' => 'New',
|
||||
'new' => 'Nový',
|
||||
'create' => 'Vytvoriť',
|
||||
'update' => 'Aktualizovať',
|
||||
'edit' => 'Editovať',
|
||||
@@ -48,8 +48,8 @@ return [
|
||||
'previous' => 'Späť',
|
||||
'filter_active' => 'Aktívny filter:',
|
||||
'filter_clear' => 'Bez filtrovania',
|
||||
'download' => 'Download',
|
||||
'open_in_tab' => 'Open in Tab',
|
||||
'download' => 'Stiahnuť',
|
||||
'open_in_tab' => 'Otvoriť na novej karte',
|
||||
|
||||
// Sort Options
|
||||
'sort_options' => 'Možnosti triedenia',
|
||||
@@ -74,21 +74,21 @@ return [
|
||||
'list_view' => 'Zobraziť ako zoznam',
|
||||
'default' => 'Predvolené',
|
||||
'breadcrumb' => 'Breadcrumb',
|
||||
'status' => 'Status',
|
||||
'status_active' => 'Active',
|
||||
'status_inactive' => 'Inactive',
|
||||
'never' => 'Never',
|
||||
'none' => 'None',
|
||||
'status' => 'Stav',
|
||||
'status_active' => 'Aktívny',
|
||||
'status_inactive' => 'Neaktívny',
|
||||
'never' => 'Nikdy',
|
||||
'none' => 'Žiadne',
|
||||
|
||||
// Header
|
||||
'homepage' => 'Homepage',
|
||||
'homepage' => 'Domovská stránka',
|
||||
'header_menu_expand' => 'Rozbaliť menu v záhlaví',
|
||||
'profile_menu' => 'Menu profilu',
|
||||
'view_profile' => 'Zobraziť profil',
|
||||
'edit_profile' => 'Upraviť profil',
|
||||
'dark_mode' => 'Tmavý režim',
|
||||
'light_mode' => 'Svetlý režim',
|
||||
'global_search' => 'Global Search',
|
||||
'global_search' => 'Globálne vyhľadávanie',
|
||||
|
||||
// Layout tabs
|
||||
'tab_info' => 'Informácie',
|
||||
|
||||
@@ -7,68 +7,68 @@
|
||||
*/
|
||||
return [
|
||||
// General editor terms
|
||||
'general' => 'General',
|
||||
'advanced' => 'Advanced',
|
||||
'none' => 'None',
|
||||
'cancel' => 'Cancel',
|
||||
'save' => 'Save',
|
||||
'close' => 'Close',
|
||||
'undo' => 'Undo',
|
||||
'redo' => 'Redo',
|
||||
'left' => 'Left',
|
||||
'center' => 'Center',
|
||||
'right' => 'Right',
|
||||
'top' => 'Top',
|
||||
'middle' => 'Middle',
|
||||
'bottom' => 'Bottom',
|
||||
'width' => 'Width',
|
||||
'height' => 'Height',
|
||||
'More' => 'More',
|
||||
'select' => 'Select...',
|
||||
'general' => 'Všeobecné',
|
||||
'advanced' => 'Pokročilé',
|
||||
'none' => 'Žiadne',
|
||||
'cancel' => 'Zrušiť',
|
||||
'save' => 'Uložiť',
|
||||
'close' => 'Zavrieť',
|
||||
'undo' => 'Vrátiť späť',
|
||||
'redo' => 'Obnoviť',
|
||||
'left' => 'Vľavo',
|
||||
'center' => 'Na stred',
|
||||
'right' => 'Vpravo',
|
||||
'top' => 'Nahor',
|
||||
'middle' => 'Uprostred',
|
||||
'bottom' => 'Dole',
|
||||
'width' => 'Šírka',
|
||||
'height' => 'Výška',
|
||||
'More' => 'Viac',
|
||||
'select' => 'Vybrať...',
|
||||
|
||||
// Toolbar
|
||||
'formats' => 'Formats',
|
||||
'header_large' => 'Large Header',
|
||||
'header_medium' => 'Medium Header',
|
||||
'header_small' => 'Small Header',
|
||||
'header_tiny' => 'Tiny Header',
|
||||
'paragraph' => 'Paragraph',
|
||||
'blockquote' => 'Blockquote',
|
||||
'inline_code' => 'Inline code',
|
||||
'callouts' => 'Callouts',
|
||||
'callout_information' => 'Information',
|
||||
'callout_success' => 'Success',
|
||||
'callout_warning' => 'Warning',
|
||||
'callout_danger' => 'Danger',
|
||||
'bold' => 'Bold',
|
||||
'italic' => 'Italic',
|
||||
'underline' => 'Underline',
|
||||
'strikethrough' => 'Strikethrough',
|
||||
'superscript' => 'Superscript',
|
||||
'subscript' => 'Subscript',
|
||||
'text_color' => 'Text color',
|
||||
'custom_color' => 'Custom color',
|
||||
'remove_color' => 'Remove color',
|
||||
'background_color' => 'Background color',
|
||||
'align_left' => 'Align left',
|
||||
'align_center' => 'Align center',
|
||||
'align_right' => 'Align right',
|
||||
'align_justify' => 'Justify',
|
||||
'list_bullet' => 'Bullet list',
|
||||
'list_numbered' => 'Numbered list',
|
||||
'list_task' => 'Task list',
|
||||
'indent_increase' => 'Increase indent',
|
||||
'indent_decrease' => 'Decrease indent',
|
||||
'table' => 'Table',
|
||||
'insert_image' => 'Insert image',
|
||||
'insert_image_title' => 'Insert/Edit Image',
|
||||
'insert_link' => 'Insert/edit link',
|
||||
'insert_link_title' => 'Insert/Edit Link',
|
||||
'insert_horizontal_line' => 'Insert horizontal line',
|
||||
'insert_code_block' => 'Insert code block',
|
||||
'edit_code_block' => 'Edit code block',
|
||||
'insert_drawing' => 'Insert/edit drawing',
|
||||
'drawing_manager' => 'Drawing manager',
|
||||
'formats' => 'Formáty',
|
||||
'header_large' => 'Veľká hlavička',
|
||||
'header_medium' => 'Stredná hlavička',
|
||||
'header_small' => 'Malá hlavička',
|
||||
'header_tiny' => 'Drobná hlavička',
|
||||
'paragraph' => 'Odstavec',
|
||||
'blockquote' => 'Citácia',
|
||||
'inline_code' => 'Vložený kód',
|
||||
'callouts' => 'Hlášky',
|
||||
'callout_information' => 'Informácie',
|
||||
'callout_success' => 'Úspech',
|
||||
'callout_warning' => 'Upozornenie',
|
||||
'callout_danger' => 'Nebezpečné',
|
||||
'bold' => 'Tučné',
|
||||
'italic' => 'Kurzíva',
|
||||
'underline' => 'Podčiarknutie',
|
||||
'strikethrough' => 'Prečiarknutie',
|
||||
'superscript' => 'Horný index',
|
||||
'subscript' => 'Dolný index',
|
||||
'text_color' => 'Farba textu',
|
||||
'custom_color' => 'Vlastná farba',
|
||||
'remove_color' => 'Odstrániť farbu',
|
||||
'background_color' => 'Farba pozadia',
|
||||
'align_left' => 'Zarovnať vľavo',
|
||||
'align_center' => 'Zarovnať na stred',
|
||||
'align_right' => 'Zarovnať vpravo',
|
||||
'align_justify' => 'Do bloku',
|
||||
'list_bullet' => 'Bodový zoznam',
|
||||
'list_numbered' => 'Číslovaný zoznam',
|
||||
'list_task' => 'Zoznam úloh',
|
||||
'indent_increase' => 'Zvýšiť odsadenie',
|
||||
'indent_decrease' => 'Zmenšiť odsadenie',
|
||||
'table' => 'Tabuľka',
|
||||
'insert_image' => 'Vložiť obrázok',
|
||||
'insert_image_title' => 'Vložiť/Upraviť obrázok',
|
||||
'insert_link' => 'Vložiť/Upraviť odkaz',
|
||||
'insert_link_title' => 'Vložiť/Upraviť link',
|
||||
'insert_horizontal_line' => 'Vložiť horizontálnu čiaru',
|
||||
'insert_code_block' => 'Vložte blok kódu',
|
||||
'edit_code_block' => 'Upraviť blok kódu',
|
||||
'insert_drawing' => 'Vložiť/upraviť výkres',
|
||||
'drawing_manager' => 'Manažér kreslenia',
|
||||
'insert_media' => 'Insert/edit media',
|
||||
'insert_media_title' => 'Insert/Edit Media',
|
||||
'clear_formatting' => 'Clear formatting',
|
||||
@@ -111,60 +111,60 @@ return [
|
||||
'copy_row' => 'Copy row',
|
||||
'paste_row_before' => 'Paste row before',
|
||||
'paste_row_after' => 'Paste row after',
|
||||
'row_type' => 'Row type',
|
||||
'row_type_header' => 'Header',
|
||||
'row_type_body' => 'Body',
|
||||
'row_type_footer' => 'Footer',
|
||||
'alignment' => 'Alignment',
|
||||
'cut_column' => 'Cut column',
|
||||
'copy_column' => 'Copy column',
|
||||
'paste_column_before' => 'Paste column before',
|
||||
'paste_column_after' => 'Paste column after',
|
||||
'cell_padding' => 'Cell padding',
|
||||
'cell_spacing' => 'Cell spacing',
|
||||
'caption' => 'Caption',
|
||||
'show_caption' => 'Show caption',
|
||||
'constrain' => 'Constrain proportions',
|
||||
'cell_border_solid' => 'Solid',
|
||||
'cell_border_dotted' => 'Dotted',
|
||||
'cell_border_dashed' => 'Dashed',
|
||||
'cell_border_double' => 'Double',
|
||||
'cell_border_groove' => 'Groove',
|
||||
'cell_border_ridge' => 'Ridge',
|
||||
'cell_border_inset' => 'Inset',
|
||||
'cell_border_outset' => 'Outset',
|
||||
'cell_border_none' => 'None',
|
||||
'cell_border_hidden' => 'Hidden',
|
||||
'row_type' => 'Typ riadku',
|
||||
'row_type_header' => 'Hlavička',
|
||||
'row_type_body' => 'Telo',
|
||||
'row_type_footer' => 'Päta',
|
||||
'alignment' => 'Zarovnanie',
|
||||
'cut_column' => 'Vystrihnúť stĺpec',
|
||||
'copy_column' => 'Kopírovať stĺpec',
|
||||
'paste_column_before' => 'Pridať stĺpec pred',
|
||||
'paste_column_after' => 'Pridať stĺpec po',
|
||||
'cell_padding' => 'Cell Rozostup',
|
||||
'cell_spacing' => 'Cell Rozstup',
|
||||
'caption' => 'Titulok',
|
||||
'show_caption' => 'Zobraziť Titulok',
|
||||
'constrain' => 'Obmedziť rozmery',
|
||||
'cell_border_solid' => 'Plný',
|
||||
'cell_border_dotted' => 'Bodkovaný',
|
||||
'cell_border_dashed' => 'Prerušované',
|
||||
'cell_border_double' => 'Dvojité',
|
||||
'cell_border_groove' => 'Drážka',
|
||||
'cell_border_ridge' => 'Hrebeň',
|
||||
'cell_border_inset' => 'Príloha',
|
||||
'cell_border_outset' => 'Počiatok',
|
||||
'cell_border_none' => 'Žiadne',
|
||||
'cell_border_hidden' => 'Skryté',
|
||||
|
||||
// Images, links, details/summary & embed
|
||||
'source' => 'Source',
|
||||
'alt_desc' => 'Alternative description',
|
||||
'embed' => 'Embed',
|
||||
'paste_embed' => 'Paste your embed code below:',
|
||||
'source' => 'Zdroj',
|
||||
'alt_desc' => 'Alternatívny popis',
|
||||
'embed' => 'Vložka',
|
||||
'paste_embed' => 'Vložte svoj kód na vloženie nižšie:',
|
||||
'url' => 'URL',
|
||||
'text_to_display' => 'Text to display',
|
||||
'title' => 'Title',
|
||||
'open_link' => 'Open link',
|
||||
'open_link_in' => 'Open link in...',
|
||||
'open_link_current' => 'Current window',
|
||||
'open_link_new' => 'New window',
|
||||
'remove_link' => 'Remove link',
|
||||
'insert_collapsible' => 'Insert collapsible block',
|
||||
'collapsible_unwrap' => 'Unwrap',
|
||||
'edit_label' => 'Edit label',
|
||||
'toggle_open_closed' => 'Toggle open/closed',
|
||||
'collapsible_edit' => 'Edit collapsible block',
|
||||
'toggle_label' => 'Toggle label',
|
||||
'text_to_display' => 'Text na zobrazenie',
|
||||
'title' => 'Názov',
|
||||
'open_link' => 'Otvoriť odkaz',
|
||||
'open_link_in' => 'Otvoriť odkaz v...',
|
||||
'open_link_current' => 'Iba aktuálne okno',
|
||||
'open_link_new' => 'Nové okno',
|
||||
'remove_link' => 'Odstrániť odkaz',
|
||||
'insert_collapsible' => 'Vložte skladací blok',
|
||||
'collapsible_unwrap' => 'Rozbaliť',
|
||||
'edit_label' => 'Upraviť menovku',
|
||||
'toggle_open_closed' => 'Prepínač otvorené/zatvorené',
|
||||
'collapsible_edit' => 'Upraviť skladací blok',
|
||||
'toggle_label' => 'Prepnutie menovky',
|
||||
|
||||
// About view
|
||||
'about' => 'About the editor',
|
||||
'about_title' => 'About the WYSIWYG Editor',
|
||||
'editor_license' => 'Editor License & Copyright',
|
||||
'editor_tiny_license' => 'This editor is built using :tinyLink which is provided under the MIT license.',
|
||||
'editor_tiny_license_link' => 'The copyright and license details of TinyMCE can be found here.',
|
||||
'save_continue' => 'Save Page & Continue',
|
||||
'callouts_cycle' => '(Keep pressing to toggle through types)',
|
||||
'link_selector' => 'Link to content',
|
||||
'about' => 'O editore',
|
||||
'about_title' => 'O WYSIWYG Editore',
|
||||
'editor_license' => 'Licencia editora a autorské práva',
|
||||
'editor_tiny_license' => 'Tento editor je vytvorený pomocou :tinyLink, ktorý je poskytovaný pod licenciou MIT.',
|
||||
'editor_tiny_license_link' => 'Podrobnosti o autorských právach a licenciách TinyMCE nájdete tu.',
|
||||
'save_continue' => 'Uložiť a pokračovať',
|
||||
'callouts_cycle' => '(Podržte stlačené, aby ste prepínali medzi typmi)',
|
||||
'link_selector' => 'Prejsť na obsah',
|
||||
'shortcuts' => 'Shortcuts',
|
||||
'shortcut' => 'Shortcut',
|
||||
'shortcuts_intro' => 'The following shortcuts are available in the editor:',
|
||||
|
||||
@@ -50,7 +50,7 @@ return [
|
||||
// Drawing & Images
|
||||
'image_upload_error' => 'Pri nahrávaní obrázka nastala chyba',
|
||||
'image_upload_type_error' => 'Typ nahrávaného obrázka je neplatný',
|
||||
'drawing_data_not_found' => 'Drawing data could not be loaded. The drawing file might no longer exist or you may not have permission to access it.',
|
||||
'drawing_data_not_found' => 'Údaje výkresu sa nepodarilo načítať. Súbor výkresu už možno neexistuje alebo nemáte povolenie na prístup k nemu.',
|
||||
|
||||
// Attachments
|
||||
'attachment_not_found' => 'Príloha nenájdená',
|
||||
@@ -61,7 +61,7 @@ return [
|
||||
|
||||
// Entities
|
||||
'entity_not_found' => 'Entita nenájdená',
|
||||
'bookshelf_not_found' => 'Shelf not found',
|
||||
'bookshelf_not_found' => 'Polica nenájdená',
|
||||
'book_not_found' => 'Kniha nenájdená',
|
||||
'page_not_found' => 'Stránka nenájdená',
|
||||
'chapter_not_found' => 'Kapitola nenájdená',
|
||||
|
||||
@@ -5,14 +5,14 @@
|
||||
*/
|
||||
|
||||
return [
|
||||
'shortcuts' => 'Shortcuts',
|
||||
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
|
||||
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
|
||||
'shortcuts_customize_desc' => 'You can customize each of the shortcuts below. Just press your desired key combination after selecting the input for a shortcut.',
|
||||
'shortcuts_toggle_label' => 'Keyboard shortcuts enabled',
|
||||
'shortcuts_section_navigation' => 'Navigation',
|
||||
'shortcuts_section_actions' => 'Common Actions',
|
||||
'shortcuts_save' => 'Save Shortcuts',
|
||||
'shortcuts_overlay_desc' => 'Note: When shortcuts are enabled a helper overlay is available via pressing "?" which will highlight the available shortcuts for actions currently visible on the screen.',
|
||||
'shortcuts_update_success' => 'Shortcut preferences have been updated!',
|
||||
'shortcuts' => 'Skratky',
|
||||
'shortcuts_interface' => 'Klávesové skratky rozhrania',
|
||||
'shortcuts_toggle_desc' => 'Tu môžete povoliť alebo zakázať klávesové skratky systémového rozhrania, ktoré sa používajú na navigáciu a akcie.',
|
||||
'shortcuts_customize_desc' => 'Každú z nižšie uvedených skratiek si môžete prispôsobiť. Po výbere vstupu pre skratku stačí stlačiť požadovanú kombináciu klávesov.',
|
||||
'shortcuts_toggle_label' => 'Klávesové skratky sú povolené',
|
||||
'shortcuts_section_navigation' => 'Navigácia',
|
||||
'shortcuts_section_actions' => 'Hlavné akcie',
|
||||
'shortcuts_save' => 'Uložiť skratky',
|
||||
'shortcuts_overlay_desc' => 'Poznámka: Keď sú zapnuté skratky, pomocné prekrytie je dostupné stlačením „?", ktoré zvýrazní dostupné skratky akcií,, ktoré sú momentálne viditeľné na obrazovke.',
|
||||
'shortcuts_update_success' => 'Predvoľby skratiek boli aktualizované!',
|
||||
];
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -32,7 +32,7 @@ return [
|
||||
'digits_between' => ':attribute musí mať medzi :min a :max číslicami.',
|
||||
'email' => ':attribute musí byť platná emailová adresa.',
|
||||
'ends_with' => ':attribute musí končiť jednou z nasledujúcich hodnôt :values',
|
||||
'file' => 'The :attribute must be provided as a valid file.',
|
||||
'file' => ':attribute musí byť uvedený ako platný súbor.',
|
||||
'filled' => 'Políčko :attribute je povinné.',
|
||||
'gt' => [
|
||||
'numeric' => 'Hodnota :attribute musí byť väčšia ako :value.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -50,8 +50,8 @@ return [
|
||||
|
||||
// Color settings
|
||||
'color_scheme' => 'Application Color Scheme',
|
||||
'color_scheme_desc' => 'Set the colors to use in the BookStack interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the primary color and default link color for BookStack. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the Bookstack interface.',
|
||||
'color_scheme_desc' => 'Set the colors to use in the application user interface. Colors can be configured separately for dark and light modes to best fit the theme and ensure legibility.',
|
||||
'ui_colors_desc' => 'Set the application primary color and default link color. The primary color is mainly used for the header banner, buttons and interface decorations. The default link color is used for text-based links and actions, both within written content and in the application interface.',
|
||||
'app_color' => 'Primary Color',
|
||||
'link_color' => 'Default Link Color',
|
||||
'content_colors_desc' => 'Set colors for all elements in the page organisation hierarchy. Choosing colors with a similar brightness to the default colors is recommended for readability.',
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
return [
|
||||
|
||||
// Pages
|
||||
'page_create' => 'створив сторінку',
|
||||
'page_create' => 'створено сторінку',
|
||||
'page_create_notification' => 'Сторінка успішно створена',
|
||||
'page_update' => 'оновив сторінку',
|
||||
'page_update_notification' => 'Сторінка успішно оновлена',
|
||||
@@ -68,9 +68,9 @@ return [
|
||||
'user_delete_notification' => 'Користувача успішно видалено',
|
||||
|
||||
// Roles
|
||||
'role_create_notification' => 'Role successfully created',
|
||||
'role_update_notification' => 'Role successfully updated',
|
||||
'role_delete_notification' => 'Role successfully deleted',
|
||||
'role_create_notification' => 'Роль успішно створена',
|
||||
'role_update_notification' => 'Роль успішно оновлена',
|
||||
'role_delete_notification' => 'Роль успішно видалена',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'прокоментував',
|
||||
|
||||
@@ -61,8 +61,8 @@ return [
|
||||
'email_confirm_send_error' => 'Необхідно підтвердження електронною поштою, але система не змогла надіслати електронний лист. Зверніться до адміністратора, щоб правильно налаштувати електронну пошту.',
|
||||
'email_confirm_success' => 'Ваша адреса електронної пошти була підтверджена! Тепер ви можете увійти в систему, використовуючи цю адресу електронної пошти.',
|
||||
'email_confirm_resent' => 'Лист з підтвердженням надіслано, перевірте свою пошту.',
|
||||
'email_confirm_thanks' => 'Thanks for confirming!',
|
||||
'email_confirm_thanks_desc' => 'Please wait a moment while your confirmation is handled. If you are not redirected after 3 seconds press the "Continue" link below to proceed.',
|
||||
'email_confirm_thanks' => 'Дякуємо за підтвердження!',
|
||||
'email_confirm_thanks_desc' => 'Будь ласка, зачекайте деякий час, поки підтвердження буде оброблено. Якщо ви не перенаправлені через 3 секунди, натисніть посилання "Продовжити" нижче, щоб продовжити.',
|
||||
|
||||
'email_not_confirmed' => 'Адресу електронної скриньки не підтверджено',
|
||||
'email_not_confirmed_text' => 'Ваша електронна адреса ще не підтверджена.',
|
||||
|
||||
@@ -144,11 +144,11 @@ return [
|
||||
'url' => 'Адреса URL',
|
||||
'text_to_display' => 'Текст для показу',
|
||||
'title' => 'Назва',
|
||||
'open_link' => 'Open link',
|
||||
'open_link_in' => 'Open link in...',
|
||||
'open_link' => 'Відкрити посилання',
|
||||
'open_link_in' => 'Відкрити посилання в...',
|
||||
'open_link_current' => 'Поточне вікно',
|
||||
'open_link_new' => 'Нове вікно',
|
||||
'remove_link' => 'Remove link',
|
||||
'remove_link' => 'Видалити посилання',
|
||||
'insert_collapsible' => 'Вставити згорнутий блок',
|
||||
'collapsible_unwrap' => 'Розгорнути',
|
||||
'edit_label' => 'Редагувати мітку',
|
||||
|
||||
@@ -23,7 +23,7 @@ return [
|
||||
'meta_updated' => 'Оновлено :timeLength',
|
||||
'meta_updated_name' => ':user оновив :timeLength',
|
||||
'meta_owned_name' => 'Власник :user',
|
||||
'meta_reference_page_count' => 'Referenced on :count page|Referenced on :count pages',
|
||||
'meta_reference_page_count' => 'Посилання на :count сторінки|Посилання на :count сторінок',
|
||||
'entity_select' => 'Вибір об\'єкта',
|
||||
'entity_select_lack_permission' => 'У вас немає необхідних прав для вибору цього елемента',
|
||||
'images' => 'Зображення',
|
||||
@@ -50,7 +50,7 @@ return [
|
||||
'permissions_role_everyone_else' => 'Всі інші',
|
||||
'permissions_role_everyone_else_desc' => 'Встановити дозвіл для всіх ролей не спеціально перевизначений.',
|
||||
'permissions_role_override' => 'Змінити права доступу для ролі',
|
||||
'permissions_inherit_defaults' => 'Inherit defaults',
|
||||
'permissions_inherit_defaults' => 'Успадковувати за замовчуванням',
|
||||
|
||||
// Search
|
||||
'search_results' => 'Результати пошуку',
|
||||
@@ -141,7 +141,7 @@ return [
|
||||
'books_search_this' => 'Шукати цю книгу',
|
||||
'books_navigation' => 'Навігація по книзі',
|
||||
'books_sort' => 'Сортувати вміст книги',
|
||||
'books_sort_desc' => 'Move chapters and pages within a book to reorganise its contents. Other books can be added which allows easy moving of chapters and pages between books.',
|
||||
'books_sort_desc' => 'Перекладіть розділи та сторінки в межах книги, щоб реорганізувати вміст. Інші книги можна додати, що дозволяє легко переміщати глави та сторінки між книгами.',
|
||||
'books_sort_named' => 'Сортувати книгу :bookName',
|
||||
'books_sort_name' => 'Сортувати за назвою',
|
||||
'books_sort_created' => 'Сортувати за датою створення',
|
||||
@@ -150,17 +150,17 @@ return [
|
||||
'books_sort_chapters_last' => 'Розділи в кінці',
|
||||
'books_sort_show_other' => 'Показати інші книги',
|
||||
'books_sort_save' => 'Зберегти нове замовлення',
|
||||
'books_sort_show_other_desc' => 'Add other books here to include them in the sort operation, and allow easy cross-book reorganisation.',
|
||||
'books_sort_move_up' => 'Move Up',
|
||||
'books_sort_move_down' => 'Move Down',
|
||||
'books_sort_move_prev_book' => 'Move to Previous Book',
|
||||
'books_sort_move_next_book' => 'Move to Next Book',
|
||||
'books_sort_move_prev_chapter' => 'Move Into Previous Chapter',
|
||||
'books_sort_move_next_chapter' => 'Move Into Next Chapter',
|
||||
'books_sort_move_book_start' => 'Move to Start of Book',
|
||||
'books_sort_move_book_end' => 'Move to End of Book',
|
||||
'books_sort_move_before_chapter' => 'Move to Before Chapter',
|
||||
'books_sort_move_after_chapter' => 'Move to After Chapter',
|
||||
'books_sort_show_other_desc' => 'Додавайте інші книги, щоб включити їх у операцію сортування та дозволити легку повторну організацію перехресних книг.',
|
||||
'books_sort_move_up' => 'Перемістити вгору',
|
||||
'books_sort_move_down' => 'Перемістити нижче',
|
||||
'books_sort_move_prev_book' => 'Перейти до попередньої книги',
|
||||
'books_sort_move_next_book' => 'Перейти до наступної книги',
|
||||
'books_sort_move_prev_chapter' => 'Перейти до попереднього розділу',
|
||||
'books_sort_move_next_chapter' => 'Перейти до наступного розділу',
|
||||
'books_sort_move_book_start' => 'Перейти до початку книги',
|
||||
'books_sort_move_book_end' => 'Перейти до кінця книги',
|
||||
'books_sort_move_before_chapter' => 'Перейти до розділу',
|
||||
'books_sort_move_after_chapter' => 'Перехід в кінець розділу',
|
||||
'books_copy' => 'Копіювати книгу',
|
||||
'books_copy_success' => 'Сторінка успішно скопійована',
|
||||
|
||||
@@ -236,8 +236,8 @@ return [
|
||||
'pages_md_insert_image' => 'Вставити зображення',
|
||||
'pages_md_insert_link' => 'Вставити посилання на об\'єкт',
|
||||
'pages_md_insert_drawing' => 'Вставити малюнок',
|
||||
'pages_md_show_preview' => 'Show preview',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_md_show_preview' => 'Показати попередній перегляд',
|
||||
'pages_md_sync_scroll' => 'Синхронізація прокручування попереднього перегляду',
|
||||
'pages_not_in_chapter' => 'Сторінка не знаходиться в розділі',
|
||||
'pages_move' => 'Перемістити сторінку',
|
||||
'pages_move_success' => 'Сторінку переміщено до ":parentName"',
|
||||
@@ -248,14 +248,14 @@ return [
|
||||
'pages_permissions_success' => 'Дозволи на сторінку оновлено',
|
||||
'pages_revision' => 'Версія',
|
||||
'pages_revisions' => 'Версія сторінки',
|
||||
'pages_revisions_desc' => 'Listed below are all the past revisions of this page. You can look back upon, compare, and restore old page versions if permissions allow. The full history of the page may not be fully reflected here since, depending on system configuration, old revisions could be auto-deleted.',
|
||||
'pages_revisions_desc' => 'Нижче наведено всі попередні версії цієї сторінки. Ви можете переглядати, порівнювати та відновлювати старі версії сторінок, якщо це дозволено. Повна історія сторінки може бути показана не повністю, оскільки, залежно від конфігурації системи, старі версії можуть автоматично видалятися.',
|
||||
'pages_revisions_named' => 'Версії сторінки для :pageName',
|
||||
'pages_revision_named' => 'Версія сторінки для :pageName',
|
||||
'pages_revision_restored_from' => 'Відновлено з #:id; :summary',
|
||||
'pages_revisions_created_by' => 'Створена',
|
||||
'pages_revisions_date' => 'Дата версії',
|
||||
'pages_revisions_number' => '#',
|
||||
'pages_revisions_sort_number' => 'Revision Number',
|
||||
'pages_revisions_sort_number' => 'Номер редакції',
|
||||
'pages_revisions_numbered' => 'Версія #:id',
|
||||
'pages_revisions_numbered_changes' => 'Зміни версії #:id',
|
||||
'pages_revisions_editor' => 'Тип редактора',
|
||||
@@ -292,7 +292,7 @@ return [
|
||||
'shelf_tags' => 'Теги полиць',
|
||||
'tag' => 'Тег',
|
||||
'tags' => 'Теги',
|
||||
'tags_index_desc' => 'Tags can be applied to content within the system to apply a flexible form of categorization. Tags can have both a key and value, with the value being optional. Once applied, content can then be queried using the tag name and value.',
|
||||
'tags_index_desc' => 'Теги можна застосовувати до вмісту в системі, щоб застосувати гнучку форму категоризації. Теги можуть мати як ключ, так і значення, при цьому значення є необов’язковим. Після застосування вміст можна запитувати за допомогою імені та значення тегу.',
|
||||
'tag_name' => 'Назва тегу',
|
||||
'tag_value' => 'Значення тегу (необов\'язково)',
|
||||
'tags_explain' => "Додайте кілька тегів, щоб краще класифікувати ваш вміст. \n Ви можете присвоїти значення тегу для більш глибокої організації.",
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user