repo
stringlengths
7
63
file_url
stringlengths
81
284
file_path
stringlengths
5
200
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 15:02:33
2026-01-05 05:24:06
truncated
bool
2 classes
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/src/Rules/Portuguese/Inflectible.php
src/Rules/Portuguese/Inflectible.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules\Portuguese; use Doctrine\Inflector\Rules\Pattern; use Doctrine\Inflector\Rules\Substitution; use Doctrine\Inflector\Rules\Transformation; use Doctrine\Inflector\Rules\Word; class Inflectible { /** @return Transformation[] */ public static fun...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/src/Rules/English/Uninflected.php
src/Rules/English/Uninflected.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules\English; use Doctrine\Inflector\Rules\Pattern; final class Uninflected { /** @return Pattern[] */ public static function getSingular(): iterable { yield from self::getDefault(); yield new Pattern('.*ss'); yield ne...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/src/Rules/English/InflectorFactory.php
src/Rules/English/InflectorFactory.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules\English; use Doctrine\Inflector\GenericLanguageInflectorFactory; use Doctrine\Inflector\Rules\Ruleset; final class InflectorFactory extends GenericLanguageInflectorFactory { protected function getSingularRuleset(): Ruleset { return Ru...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/src/Rules/English/Rules.php
src/Rules/English/Rules.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules\English; use Doctrine\Inflector\Rules\Patterns; use Doctrine\Inflector\Rules\Ruleset; use Doctrine\Inflector\Rules\Substitutions; use Doctrine\Inflector\Rules\Transformations; final class Rules { public static function getSingularRuleset(): Rules...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/src/Rules/English/Inflectible.php
src/Rules/English/Inflectible.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules\English; use Doctrine\Inflector\Rules\Pattern; use Doctrine\Inflector\Rules\Substitution; use Doctrine\Inflector\Rules\Transformation; use Doctrine\Inflector\Rules\Word; class Inflectible { /** @return Transformation[] */ public static functi...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/src/Rules/Spanish/Uninflected.php
src/Rules/Spanish/Uninflected.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules\Spanish; use Doctrine\Inflector\Rules\Pattern; final class Uninflected { /** @return Pattern[] */ public static function getSingular(): iterable { yield from self::getDefault(); } /** @return Pattern[] */ public stati...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/src/Rules/Spanish/InflectorFactory.php
src/Rules/Spanish/InflectorFactory.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules\Spanish; use Doctrine\Inflector\GenericLanguageInflectorFactory; use Doctrine\Inflector\Rules\Ruleset; final class InflectorFactory extends GenericLanguageInflectorFactory { protected function getSingularRuleset(): Ruleset { return Ru...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/src/Rules/Spanish/Rules.php
src/Rules/Spanish/Rules.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules\Spanish; use Doctrine\Inflector\Rules\Patterns; use Doctrine\Inflector\Rules\Ruleset; use Doctrine\Inflector\Rules\Substitutions; use Doctrine\Inflector\Rules\Transformations; final class Rules { public static function getSingularRuleset(): Rules...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/src/Rules/Spanish/Inflectible.php
src/Rules/Spanish/Inflectible.php
<?php declare(strict_types=1); namespace Doctrine\Inflector\Rules\Spanish; use Doctrine\Inflector\Rules\Pattern; use Doctrine\Inflector\Rules\Substitution; use Doctrine\Inflector\Rules\Transformation; use Doctrine\Inflector\Rules\Word; class Inflectible { /** @return Transformation[] */ public static functi...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/InflectorTest.php
tests/InflectorTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\WordInflector; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class InflectorTest extends TestCase { /** @var W...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/InflectorFunctionalTest.php
tests/InflectorFunctionalTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\InflectorFactory; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\TestCase; class InflectorFunctionalTest extends TestCase { public function testCapitalize(): void ...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/RulesetInflectorTest.php
tests/RulesetInflectorTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector; use Doctrine\Inflector\Rules\Pattern; use Doctrine\Inflector\Rules\Patterns; use Doctrine\Inflector\Rules\Ruleset; use Doctrine\Inflector\Rules\Substitution; use Doctrine\Inflector\Rules\Substitutions; use Doctrine\Inflector\Rules\Transformations; us...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/InflectorFactoryTest.php
tests/InflectorFactoryTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector; use Doctrine\Inflector\InflectorFactory; use Doctrine\Inflector\Language; use Doctrine\Inflector\LanguageInflectorFactory; use Doctrine\Inflector\Rules\English\InflectorFactory as EnglishInflectorFactory; use Doctrine\Inflector\Rules\Esperanto\Inflec...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/NoopWordInflectorTest.php
tests/NoopWordInflectorTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector; use Doctrine\Inflector\NoopWordInflector; use PHPUnit\Framework\TestCase; class NoopWordInflectorTest extends TestCase { /** @var NoopWordInflector */ private $inflector; public function testInflect(): void { self::assertSam...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/CachedWordInflectorTest.php
tests/CachedWordInflectorTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector; use Doctrine\Inflector\CachedWordInflector; use Doctrine\Inflector\WordInflector; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; class CachedWordInflectorTest extends TestCase { /** @var WordInflector&MockObject */ ...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/PatternsTest.php
tests/Rules/PatternsTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules; use Doctrine\Inflector\Rules\Pattern; use Doctrine\Inflector\Rules\Patterns; use PHPUnit\Framework\TestCase; class PatternsTest extends TestCase { /** @var Patterns */ private $patterns; public function testMatches(): void { ...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/TransformationTest.php
tests/Rules/TransformationTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules; use Doctrine\Inflector\Rules\Pattern; use Doctrine\Inflector\Rules\Transformation; use PHPUnit\Framework\TestCase; class TransformationTest extends TestCase { /** @var Transformation */ private $transformation; public function tes...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/SubstitutionsTest.php
tests/Rules/SubstitutionsTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules; use Doctrine\Inflector\Rules\Substitution; use Doctrine\Inflector\Rules\Substitutions; use Doctrine\Inflector\Rules\Word; use PHPUnit\Framework\TestCase; class SubstitutionsTest extends TestCase { /** @var Substitution[] */ private $su...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/LanguageFunctionalTestCase.php
tests/Rules/LanguageFunctionalTestCase.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules; use Doctrine\Inflector\Inflector; use PHPUnit\Framework\Attributes\DataProvider; use PHPUnit\Framework\TestCase; use function sprintf; abstract class LanguageFunctionalTestCase extends TestCase { /** @return string[][] */ abstract pub...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/SubstitutionTest.php
tests/Rules/SubstitutionTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules; use Doctrine\Inflector\Rules\Substitution; use Doctrine\Inflector\Rules\Word; use PHPUnit\Framework\TestCase; class SubstitutionTest extends TestCase { /** @var Substitution */ private $substitution; public function testGetFrom():...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/RulesetTest.php
tests/Rules/RulesetTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules; use Doctrine\Inflector\Rules\Patterns; use Doctrine\Inflector\Rules\Ruleset; use Doctrine\Inflector\Rules\Substitutions; use Doctrine\Inflector\Rules\Transformations; use PHPUnit\Framework\MockObject\MockObject; use PHPUnit\Framework\TestCase; ...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/PatternTest.php
tests/Rules/PatternTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules; use Doctrine\Inflector\Rules\Pattern; use PHPUnit\Framework\TestCase; class PatternTest extends TestCase { /** @var Pattern */ private $pattern; public function testGetPattern(): void { self::assertSame('test', $this->...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/WordTest.php
tests/Rules/WordTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules; use Doctrine\Inflector\Rules\Word; use PHPUnit\Framework\TestCase; class WordTest extends TestCase { /** @var Word */ private $word; public function testGetWord(): void { self::assertSame('test', $this->word->getWord()...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/TransformationsTest.php
tests/Rules/TransformationsTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules; use Doctrine\Inflector\Rules\Pattern; use Doctrine\Inflector\Rules\Transformation; use Doctrine\Inflector\Rules\Transformations; use PHPUnit\Framework\TestCase; class TransformationsTest extends TestCase { /** @var Transformations */ p...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/Turkish/TurkishFunctionalTest.php
tests/Rules/Turkish/TurkishFunctionalTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules\Turkish; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\InflectorFactory; use Doctrine\Inflector\Language; use Doctrine\Tests\Inflector\Rules\LanguageFunctionalTestCase; class TurkishFunctionalTest extends LanguageFunctionalTestCase {...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/French/FrenchFunctionalTest.php
tests/Rules/French/FrenchFunctionalTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules\French; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\InflectorFactory; use Doctrine\Inflector\Language; use Doctrine\Tests\Inflector\Rules\LanguageFunctionalTestCase; class FrenchFunctionalTest extends LanguageFunctionalTestCase { ...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/Italian/ItalianFunctionalTest.php
tests/Rules/Italian/ItalianFunctionalTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules\Italian; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\InflectorFactory; use Doctrine\Inflector\Language; use Doctrine\Tests\Inflector\Rules\LanguageFunctionalTestCase; class ItalianFunctionalTest extends LanguageFunctionalTestCase {...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/Esperanto/EsperantoFunctionalTest.php
tests/Rules/Esperanto/EsperantoFunctionalTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules\Esperanto; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\InflectorFactory; use Doctrine\Inflector\Language; use Doctrine\Tests\Inflector\Rules\LanguageFunctionalTestCase; class EsperantoFunctionalTest extends LanguageFunctionalTestCa...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/NorwegianBokmal/NorwegianBokmalFunctionalTest.php
tests/Rules/NorwegianBokmal/NorwegianBokmalFunctionalTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules\NorwegianBokmal; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\InflectorFactory; use Doctrine\Inflector\Language; use Doctrine\Tests\Inflector\Rules\LanguageFunctionalTestCase; class NorwegianBokmalFunctionalTest extends LanguageFunc...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/Portuguese/PortugueseFunctionalTest.php
tests/Rules/Portuguese/PortugueseFunctionalTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules\Portuguese; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\InflectorFactory; use Doctrine\Inflector\Language; use Doctrine\Tests\Inflector\Rules\LanguageFunctionalTestCase; class PortugueseFunctionalTest extends LanguageFunctionalTest...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/English/EnglishFunctionalTest.php
tests/Rules/English/EnglishFunctionalTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules\English; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\InflectorFactory; use Doctrine\Inflector\Language; use Doctrine\Tests\Inflector\Rules\LanguageFunctionalTestCase; use PHPUnit\Framework\Attributes\DataProvider; use function spri...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
doctrine/inflector
https://github.com/doctrine/inflector/blob/acc9e1de103b7a4fa55b17cea938207d97c5c55f/tests/Rules/Spanish/SpanishFunctionalTest.php
tests/Rules/Spanish/SpanishFunctionalTest.php
<?php declare(strict_types=1); namespace Doctrine\Tests\Inflector\Rules\Spanish; use Doctrine\Inflector\Inflector; use Doctrine\Inflector\InflectorFactory; use Doctrine\Inflector\Language; use Doctrine\Tests\Inflector\Rules\LanguageFunctionalTestCase; class SpanishFunctionalTest extends LanguageFunctionalTestCase {...
php
MIT
acc9e1de103b7a4fa55b17cea938207d97c5c55f
2026-01-04T15:04:39.383123Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/notifications.php
lang/de/notifications.php
<?php /** * Text used for activity-based notifications. */ return [ 'new_comment_subject' => 'Neuer Kommentar auf Seite: :pageName', 'new_comment_intro' => 'Ein Benutzer hat eine Seite in :appName kommentiert:', 'new_page_subject' => 'Neue Seite: :pageName', 'new_page_intro' => 'Es wurde eine neue Se...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/entities.php
lang/de/entities.php
<?php /** * Text used for 'Entities' (Document Structure Elements) such as * Books, Shelves, Chapters & Pages */ return [ // Shared 'recently_created' => 'Kürzlich angelegt', 'recently_created_pages' => 'Kürzlich angelegte Seiten', 'recently_updated_pages' => 'Kürzlich aktualisierte Seiten', 're...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
true
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/passwords.php
lang/de/passwords.php
<?php /** * Password Reminder Language Lines * The following language lines are the default lines which match reasons * that are given by the password broker for a password update attempt has failed. */ return [ 'password' => 'Passwörter müssen aus mindestens acht Zeichen bestehen und mit der eingegebenen Wied...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/editor.php
lang/de/editor.php
<?php /** * Page Editor Lines * Contains text strings used within the user interface of the * WYSIWYG page editor. Some Markdown editor strings may still * exist in the 'entities' file instead since this was added later. */ return [ // General editor terms 'general' => 'Allgemein', 'advanced' => 'Erwei...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/components.php
lang/de/components.php
<?php /** * Text used in custom JavaScript driven components. */ return [ // Image Manager 'image_select' => 'Bild auswählen', 'image_list' => 'Bilderliste', 'image_details' => 'Bilddetails', 'image_upload' => 'Bild hochladen', 'image_intro' => 'Hier können Sie die zuvor hochgeladenen Bilder ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/preferences.php
lang/de/preferences.php
<?php /** * Text used for user-preference specific views within bookstack. */ return [ 'my_account' => 'Mein Account', 'shortcuts' => 'Tastenkürzel', 'shortcuts_interface' => 'Einstellungen zu UI Abkürzungen', 'shortcuts_toggle_desc' => 'Hier können Sie Tastaturkürzel für die Systemoberfläche für N...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/errors.php
lang/de/errors.php
<?php /** * Text shown in error messaging. */ return [ // Permissions 'permission' => 'Sie haben keine Zugriffsberechtigung auf die angeforderte Seite.', 'permissionJson' => 'Sie haben keine Berechtigung die angeforderte Aktion auszuführen.', // Auth 'error_user_exists_different_creds' => 'Ein B...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/activities.php
lang/de/activities.php
<?php /** * Activity text strings. * Is used for all the text within activity logs & notifications. */ return [ // Pages 'page_create' => 'erstellte Seite', 'page_create_notification' => 'Seite erfolgreich erstellt', 'page_update' => 'aktualisierte Seite', 'pag...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/common.php
lang/de/common.php
<?php /** * Common elements found throughout many areas of BookStack. */ return [ // Buttons 'cancel' => 'Abbrechen', 'close' => 'Schließen', 'confirm' => 'Bestätigen', 'back' => 'Zurück', 'save' => 'Speichern', 'continue' => 'Fortfahren', 'select' => 'Auswählen', 'toggle_all' => ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/pagination.php
lang/de/pagination.php
<?php /** * Pagination Language Lines * The following language lines are used by the paginator library to build * the simple pagination links. */ return [ 'previous' => '&laquo; Vorherige', 'next' => 'Nächste &raquo;', ];
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/settings.php
lang/de/settings.php
<?php /** * Settings text strings * Contains all text strings used in the general settings sections of BookStack * including users and roles. */ return [ // Common Messages 'settings' => 'Einstellungen', 'settings_save' => 'Einstellungen speichern', 'system_version' => 'Systemversion', 'categor...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/validation.php
lang/de/validation.php
<?php /** * Validation Lines * The following language lines contain the default error messages used by * the validator class. Some of these rules have multiple versions such * as the size rules. Feel free to tweak each of these messages here. */ return [ // Standard laravel validation lines 'accepted' ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/de/auth.php
lang/de/auth.php
<?php /** * Authentication Language Lines * The following language lines are used during authentication for various * messages that we need to display to the user. */ return [ 'failed' => 'Diese Anmeldedaten stimmen nicht mit unseren Aufzeichnungen überein.', 'throttle' => 'Zu viele Anmeldeversuche. Bitte ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/notifications.php
lang/sk/notifications.php
<?php /** * Text used for activity-based notifications. */ return [ 'new_comment_subject' => 'New comment on page: :pageName', 'new_comment_intro' => 'A user has commented on a page in :appName:', 'new_page_subject' => 'New page: :pageName', 'new_page_intro' => 'A new page has been created in :appNam...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/entities.php
lang/sk/entities.php
<?php /** * Text used for 'Entities' (Document Structure Elements) such as * Books, Shelves, Chapters & Pages */ return [ // Shared 'recently_created' => 'Nedávno vytvorené', 'recently_created_pages' => 'Nedávno vytvorené stránky', 'recently_updated_pages' => 'Nedávno aktualizované stránky', 're...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/passwords.php
lang/sk/passwords.php
<?php /** * Password Reminder Language Lines * The following language lines are the default lines which match reasons * that are given by the password broker for a password update attempt has failed. */ return [ 'password' => 'Heslo musí obsahovať aspoň osem znakov a musí byť rovnaké ako potvrdzujúce.', 'u...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/editor.php
lang/sk/editor.php
<?php /** * Page Editor Lines * Contains text strings used within the user interface of the * WYSIWYG page editor. Some Markdown editor strings may still * exist in the 'entities' file instead since this was added later. */ return [ // General editor terms 'general' => 'Všeobecné', 'advanced' => 'Pokro...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/components.php
lang/sk/components.php
<?php /** * Text used in custom JavaScript driven components. */ return [ // Image Manager 'image_select' => 'Vybrať obrázok', 'image_list' => 'Image List', 'image_details' => 'Image Details', 'image_upload' => 'Nahrať obrázok', 'image_intro' => 'Tu môžete vybrať a spravovať obrázky, ktoré bo...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/preferences.php
lang/sk/preferences.php
<?php /** * Text used for user-preference specific views within bookstack. */ return [ 'my_account' => 'My Account', 'shortcuts' => 'Skratky', 'shortcuts_interface' => 'UI Shortcut Preferences', 'shortcuts_toggle_desc' => 'Tu môžete povoliť alebo zakázať klávesové skratky systémového rozhrania, kto...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/errors.php
lang/sk/errors.php
<?php /** * Text shown in error messaging. */ return [ // Permissions 'permission' => 'Nemáte oprávnenie pre prístup k požadovanej stránke.', 'permissionJson' => 'Nemáte oprávnenie pre vykonanie požadovaného úkonu.', // Auth 'error_user_exists_different_creds' => 'Používateľ s emailom :email už ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/activities.php
lang/sk/activities.php
<?php /** * Activity text strings. * Is used for all the text within activity logs & notifications. */ return [ // Pages 'page_create' => 'vytvoril(a) stránku', 'page_create_notification' => 'Stránka úspešne vytvorená', 'page_update' => 'aktualizoval(a) stránku', ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/common.php
lang/sk/common.php
<?php /** * Common elements found throughout many areas of BookStack. */ return [ // Buttons 'cancel' => 'Zrušiť', 'close' => 'Close', 'confirm' => 'Potvrdiť', 'back' => 'Späť', 'save' => 'Uložiť', 'continue' => 'Pokračovať', 'select' => 'Vybrať', 'toggle_all' => 'Prepnúť všetko',...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/pagination.php
lang/sk/pagination.php
<?php /** * Pagination Language Lines * The following language lines are used by the paginator library to build * the simple pagination links. */ return [ 'previous' => '&laquo; Predchádzajúca', 'next' => 'Ďalšia &raquo;', ];
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/settings.php
lang/sk/settings.php
<?php /** * Settings text strings * Contains all text strings used in the general settings sections of BookStack * including users and roles. */ return [ // Common Messages 'settings' => 'Nastavenia', 'settings_save' => 'Uložiť nastavenia', 'system_version' => 'Verzia systému', 'categories' => ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/validation.php
lang/sk/validation.php
<?php /** * Validation Lines * The following language lines contain the default error messages used by * the validator class. Some of these rules have multiple versions such * as the size rules. Feel free to tweak each of these messages here. */ return [ // Standard laravel validation lines 'accepted' ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/sk/auth.php
lang/sk/auth.php
<?php /** * Authentication Language Lines * The following language lines are used during authentication for various * messages that we need to display to the user. */ return [ 'failed' => 'Tieto údaje sa nezhodujú s našimi záznamami.', 'throttle' => 'Priveľa pokusov o prihlásenie. Skúste znova o :seconds s...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/notifications.php
lang/pt_BR/notifications.php
<?php /** * Text used for activity-based notifications. */ return [ 'new_comment_subject' => 'Novo comentário na página: :pageName', 'new_comment_intro' => 'Um usuário comentou em uma página de :appName:', 'new_page_subject' => 'Nova página: :pageName', 'new_page_intro' => 'Uma nova página foi criada...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/entities.php
lang/pt_BR/entities.php
<?php /** * Text used for 'Entities' (Document Structure Elements) such as * Books, Shelves, Chapters & Pages */ return [ // Shared 'recently_created' => 'Criado Recentemente', 'recently_created_pages' => 'Páginas Recentemente Criadas', 'recently_updated_pages' => 'Páginas Recentemente Atualizadas',...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/passwords.php
lang/pt_BR/passwords.php
<?php /** * Password Reminder Language Lines * The following language lines are the default lines which match reasons * that are given by the password broker for a password update attempt has failed. */ return [ 'password' => 'Senhas devem ter ao menos oito caracteres e ser iguais à confirmação.', 'user' =...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/editor.php
lang/pt_BR/editor.php
<?php /** * Page Editor Lines * Contains text strings used within the user interface of the * WYSIWYG page editor. Some Markdown editor strings may still * exist in the 'entities' file instead since this was added later. */ return [ // General editor terms 'general' => 'Geral', 'advanced' => 'Avançado'...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/components.php
lang/pt_BR/components.php
<?php /** * Text used in custom JavaScript driven components. */ return [ // Image Manager 'image_select' => 'Selecionar Imagem', 'image_list' => 'Lista de imagens', 'image_details' => 'Detalhes da Imagem', 'image_upload' => 'Fazer upload de imagem', 'image_intro' => 'Aqui você pode seleciona...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/preferences.php
lang/pt_BR/preferences.php
<?php /** * Text used for user-preference specific views within bookstack. */ return [ 'my_account' => 'Minha conta', 'shortcuts' => 'Atalhos', 'shortcuts_interface' => 'Preferências de Atalho UI', 'shortcuts_toggle_desc' => 'Aqui você pode habilitar ou desabilitar os atalhos da interface do sistem...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/errors.php
lang/pt_BR/errors.php
<?php /** * Text shown in error messaging. */ return [ // Permissions 'permission' => 'Você não tem permissão para acessar a página solicitada.', 'permissionJson' => 'Você não tem permissão para realizar a ação solicitada.', // Auth 'error_user_exists_different_creds' => 'Um usuário com o endere...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/activities.php
lang/pt_BR/activities.php
<?php /** * Activity text strings. * Is used for all the text within activity logs & notifications. */ return [ // Pages 'page_create' => 'criou a página', 'page_create_notification' => 'Página criada com sucesso', 'page_update' => 'atualizou a página', 'page_u...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/common.php
lang/pt_BR/common.php
<?php /** * Common elements found throughout many areas of BookStack. */ return [ // Buttons 'cancel' => 'Cancelar', 'close' => 'Fechar', 'confirm' => 'Confirmar', 'back' => 'Voltar', 'save' => 'Salvar', 'continue' => 'Continuar', 'select' => 'Selecionar', 'toggle_all' => 'Alterna...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/pagination.php
lang/pt_BR/pagination.php
<?php /** * Pagination Language Lines * The following language lines are used by the paginator library to build * the simple pagination links. */ return [ 'previous' => '&laquo; Anterior', 'next' => 'Próximo &raquo;', ];
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/settings.php
lang/pt_BR/settings.php
<?php /** * Settings text strings * Contains all text strings used in the general settings sections of BookStack * including users and roles. */ return [ // Common Messages 'settings' => 'Configurações', 'settings_save' => 'Salvar Configurações', 'system_version' => 'Versão do Sistema', 'catego...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/validation.php
lang/pt_BR/validation.php
<?php /** * Validation Lines * The following language lines contain the default error messages used by * the validator class. Some of these rules have multiple versions such * as the size rules. Feel free to tweak each of these messages here. */ return [ // Standard laravel validation lines 'accepted' ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/pt_BR/auth.php
lang/pt_BR/auth.php
<?php /** * Authentication Language Lines * The following language lines are used during authentication for various * messages that we need to display to the user. */ return [ 'failed' => 'As credenciais fornecidas não puderam ser validadas em nossos registros.', 'throttle' => 'Muitas tentativas de login. ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/notifications.php
lang/bn/notifications.php
<?php /** * Text used for activity-based notifications. */ return [ 'new_comment_subject' => 'New comment on page: :pageName', 'new_comment_intro' => 'A user has commented on a page in :appName:', 'new_page_subject' => 'New page: :pageName', 'new_page_intro' => 'A new page has been created in :appNam...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/entities.php
lang/bn/entities.php
<?php /** * Text used for 'Entities' (Document Structure Elements) such as * Books, Shelves, Chapters & Pages */ return [ // Shared 'recently_created' => 'Recently Created', 'recently_created_pages' => 'Recently Created Pages', 'recently_updated_pages' => 'Recently Updated Pages', 'recently_crea...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/passwords.php
lang/bn/passwords.php
<?php /** * Password Reminder Language Lines * The following language lines are the default lines which match reasons * that are given by the password broker for a password update attempt has failed. */ return [ 'password' => 'পাসওয়ার্ড কমপক্ষে আট অক্ষরের হতে হবে এবং পাসওয়ার্ড নিশ্চিতকরণের ঘরে প্রদত্ত পাসওয়...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/editor.php
lang/bn/editor.php
<?php /** * Page Editor Lines * Contains text strings used within the user interface of the * WYSIWYG page editor. Some Markdown editor strings may still * exist in the 'entities' file instead since this was added later. */ return [ // General editor terms 'general' => 'সাধারণ', 'advanced' => 'উন্নত', ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/components.php
lang/bn/components.php
<?php /** * Text used in custom JavaScript driven components. */ return [ // Image Manager 'image_select' => 'Image Select', 'image_list' => 'Image List', 'image_details' => 'Image Details', 'image_upload' => 'Upload Image', 'image_intro' => 'Here you can select and manage images that have be...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/preferences.php
lang/bn/preferences.php
<?php /** * Text used for user-preference specific views within bookstack. */ return [ 'my_account' => 'আমার অ্যাকাউন্ট', 'shortcuts' => 'Shortcuts', 'shortcuts_interface' => 'UI Shortcut Preferences', 'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, u...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/errors.php
lang/bn/errors.php
<?php /** * Text shown in error messaging. */ return [ // Permissions 'permission' => 'অনুরোধকৃত পৃষ্ঠাটিতে আপনার ব্যবহারাধিকারের অনুমতি নেই।', 'permissionJson' => 'You do not have permission to perform the requested action.', // Auth 'error_user_exists_different_creds' => 'A user with the email...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/activities.php
lang/bn/activities.php
<?php /** * Activity text strings. * Is used for all the text within activity logs & notifications. */ return [ // Pages 'page_create' => 'নতুন পৃষ্ঠা সৃষ্টি করেছেন', 'page_create_notification' => 'পৃষ্ঠাটি সার্থকভাবে তৈরী করা হয়েছে', 'page_update' => 'পৃষ্ঠা হালনা...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/common.php
lang/bn/common.php
<?php /** * Common elements found throughout many areas of BookStack. */ return [ // Buttons 'cancel' => 'প্রত্যাহার করুন', 'close' => 'বন্ধ করুন', 'confirm' => 'নিশ্চিত করুন', 'back' => 'প্রত্যাবর্তন করুন', 'save' => 'সংরক্ষণ করুন', 'continue' => 'অগ্রসর হউন', 'select' => 'নির্বাচন ক...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/pagination.php
lang/bn/pagination.php
<?php /** * Pagination Language Lines * The following language lines are used by the paginator library to build * the simple pagination links. */ return [ 'previous' => '&laquo; পূর্ববর্তী', 'next' => 'পরবর্তী &raquo;', ];
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/settings.php
lang/bn/settings.php
<?php /** * Settings text strings * Contains all text strings used in the general settings sections of BookStack * including users and roles. */ return [ // Common Messages 'settings' => 'সেটিংস', 'settings_save' => 'সেটিংস সংরক্ষণ করুন', 'system_version' => 'সিস্টেম ভার্সন', 'categories' => 'শ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/validation.php
lang/bn/validation.php
<?php /** * Validation Lines * The following language lines contain the default error messages used by * the validator class. Some of these rules have multiple versions such * as the size rules. Feel free to tweak each of these messages here. */ return [ // Standard laravel validation lines 'accepted' ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/bn/auth.php
lang/bn/auth.php
<?php /** * Authentication Language Lines * The following language lines are used during authentication for various * messages that we need to display to the user. */ return [ 'failed' => 'প্রদত্ত তথ্যনিরূপিত কোন রেকর্ড পাওয়া যায়নি।', 'throttle' => 'লগইন প্রচেষ্টার সীমা অতিক্রান্ত। দয়া করে :seconds সেকেন্ড...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/notifications.php
lang/uz/notifications.php
<?php /** * Text used for activity-based notifications. */ return [ 'new_comment_subject' => ':pageName sahifada yangi izoh', 'new_comment_intro' => ':appName ichida foydalanuvchi izoh qoldirdi:', 'new_page_subject' => ':pageName yangi sahifa.', 'new_page_intro' => ':appName ichida yangi sahifa yarat...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/entities.php
lang/uz/entities.php
<?php /** * Text used for 'Entities' (Document Structure Elements) such as * Books, Shelves, Chapters & Pages */ return [ // Shared 'recently_created' => 'Oxirgi yaratilgan', 'recently_created_pages' => 'Oxirgi yaratilgan sahifalar', 'recently_updated_pages' => 'Oxirgi yangilangan sahifalar', 'r...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/passwords.php
lang/uz/passwords.php
<?php /** * Password Reminder Language Lines * The following language lines are the default lines which match reasons * that are given by the password broker for a password update attempt has failed. */ return [ 'password' => 'Parollar kamida sakkiz belgidan iborat bo\'lishi va tasdiqlashga mos kelishi kerak.'...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/editor.php
lang/uz/editor.php
<?php /** * Page Editor Lines * Contains text strings used within the user interface of the * WYSIWYG page editor. Some Markdown editor strings may still * exist in the 'entities' file instead since this was added later. */ return [ // General editor terms 'general' => 'Umumiy', 'advanced' => 'Murakkab...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/components.php
lang/uz/components.php
<?php /** * Text used in custom JavaScript driven components. */ return [ // Image Manager 'image_select' => 'Rasmni tanlash', 'image_list' => 'Rasmlar roʻyxati', 'image_details' => 'Tasvir tafsilotlari', 'image_upload' => 'Rasm yuklash', 'image_intro' => 'Bu yerda siz avvalroq tizimga yuklan...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/preferences.php
lang/uz/preferences.php
<?php /** * Text used for user-preference specific views within bookstack. */ return [ 'my_account' => 'My Account', 'shortcuts' => 'Qisqa klavishlar', 'shortcuts_interface' => 'UI Shortcut Preferences', 'shortcuts_toggle_desc' => 'Bu erda siz navigatsiya va harakatlar uchun ishlatiladigan klaviatu...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/errors.php
lang/uz/errors.php
<?php /** * Text shown in error messaging. */ return [ // Permissions 'permission' => 'Sizda soʻralgan sahifaga kirish ruxsatingiz yoʻq.', 'permissionJson' => 'Sizda soʻralgan amalni bajarish uchun ruxsat yoʻq.', // Auth 'error_user_exists_different_creds' => 'E-pochta manzili boʻlgan foydalanuv...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/activities.php
lang/uz/activities.php
<?php /** * Activity text strings. * Is used for all the text within activity logs & notifications. */ return [ // Pages 'page_create' => 'yaratilgan sahifa', 'page_create_notification' => 'Sahifa muvaffaqiyatli yaratildi', 'page_update' => 'yangilangan sahifa', ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/common.php
lang/uz/common.php
<?php /** * Common elements found throughout many areas of BookStack. */ return [ // Buttons 'cancel' => 'Bekor qilsih', 'close' => 'Yopish', 'confirm' => 'Tasdiqlang', 'back' => 'Orqaga', 'save' => 'Saqlash', 'continue' => 'Davom etish', 'select' => 'Tanlang', 'toggle_all' => 'Ha...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/pagination.php
lang/uz/pagination.php
<?php /** * Pagination Language Lines * The following language lines are used by the paginator library to build * the simple pagination links. */ return [ 'previous' => '&laquo; Oldingi', 'next' => 'Kegingi &raquo;', ];
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/settings.php
lang/uz/settings.php
<?php /** * Settings text strings * Contains all text strings used in the general settings sections of BookStack * including users and roles. */ return [ // Common Messages 'settings' => 'Sozlamalar', 'settings_save' => 'Sozlamalarni saqlash', 'system_version' => 'Tizim versiyasi', 'categories'...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/validation.php
lang/uz/validation.php
<?php /** * Validation Lines * The following language lines contain the default error messages used by * the validator class. Some of these rules have multiple versions such * as the size rules. Feel free to tweak each of these messages here. */ return [ // Standard laravel validation lines 'accepted' ...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/uz/auth.php
lang/uz/auth.php
<?php /** * Authentication Language Lines * The following language lines are used during authentication for various * messages that we need to display to the user. */ return [ 'failed' => 'Uchbu ma‘lumotlar, bizdagi ma‘lumotlarga mos kelmadi.', 'throttle' => 'Kirishga urinishlar juda ko‘p. Iltimos :seconds...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/fi/notifications.php
lang/fi/notifications.php
<?php /** * Text used for activity-based notifications. */ return [ 'new_comment_subject' => 'Uusi kommentti sivulla: :pageName', 'new_comment_intro' => 'Käyttäjä on kommentoinut sivua sivustolla :appName:', 'new_page_subject' => 'Uusi sivu: :pageName', 'new_page_intro' => 'Uusi sivu on luotu sivusto...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/fi/entities.php
lang/fi/entities.php
<?php /** * Text used for 'Entities' (Document Structure Elements) such as * Books, Shelves, Chapters & Pages */ return [ // Shared 'recently_created' => 'Viimeksi luodut', 'recently_created_pages' => 'Viimeksi luodut sivut', 'recently_updated_pages' => 'Viimeksi päivitetyt sivut', 'recently_cre...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false
BookStackApp/BookStack
https://github.com/BookStackApp/BookStack/blob/e6b754fad029d6c35e139b907d04e6510775997b/lang/fi/passwords.php
lang/fi/passwords.php
<?php /** * Password Reminder Language Lines * The following language lines are the default lines which match reasons * that are given by the password broker for a password update attempt has failed. */ return [ 'password' => 'Salasanan on oltava vähintään kahdeksan merkkiä pitkä ja täsmättävä vahvistuksen kan...
php
MIT
e6b754fad029d6c35e139b907d04e6510775997b
2026-01-04T15:02:34.418809Z
false