From 5c4f2d6e9b4889662c3dc790a40cbd70b33aefd1 Mon Sep 17 00:00:00 2001 From: Donatas Glodenis Date: Fri, 25 Oct 2019 23:32:02 +0300 Subject: [PATCH 1/3] =?UTF-8?q?trump=C5=B3=20fail=C5=B3=20pirminiai=20vert?= =?UTF-8?q?imai?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Language/lt/CLI.php | 24 ++++++++++++ Language/lt/Cache.php | 22 +++++++++++ Language/lt/Cast.php | 23 ++++++++++++ Language/lt/Core.php | 22 +++++++++++ Language/lt/Database.php | 33 ++++++++++++++++ Language/lt/Email.php | 36 ++++++++++++++++++ Language/lt/Encryption.php | 23 ++++++++++++ Language/lt/Entity.php | 19 ++++++++++ Language/lt/Files.php | 19 ++++++++++ Language/lt/Filters.php | 20 ++++++++++ Language/lt/Format.php | 20 ++++++++++ Language/lt/HTTP.php | 77 ++++++++++++++++++++++++++++++++++++++ Language/lt/Images.php | 36 ++++++++++++++++++ Language/lt/Language.php | 19 ++++++++++ Language/lt/Log.php | 19 ++++++++++ Language/lt/Migrations.php | 56 +++++++++++++++++++++++++++ Language/lt/Number.php | 30 +++++++++++++++ Language/lt/Pager.php | 27 +++++++++++++ Language/lt/RESTful.php | 18 +++++++++ Language/lt/Redirect.php | 19 ++++++++++ Language/lt/Router.php | 20 ++++++++++ Language/lt/Session.php | 23 ++++++++++++ Language/lt/Time.php | 36 ++++++++++++++++++ Language/lt/Validation.php | 71 +++++++++++++++++++++++++++++++++++ Language/lt/View.php | 23 ++++++++++++ 25 files changed, 735 insertions(+) create mode 100644 Language/lt/CLI.php create mode 100644 Language/lt/Cache.php create mode 100644 Language/lt/Cast.php create mode 100644 Language/lt/Core.php create mode 100644 Language/lt/Database.php create mode 100644 Language/lt/Email.php create mode 100644 Language/lt/Encryption.php create mode 100644 Language/lt/Entity.php create mode 100644 Language/lt/Files.php create mode 100644 Language/lt/Filters.php create mode 100644 Language/lt/Format.php create mode 100644 Language/lt/HTTP.php create mode 100644 Language/lt/Images.php create mode 100644 Language/lt/Language.php create mode 100644 Language/lt/Log.php create mode 100644 Language/lt/Migrations.php create mode 100644 Language/lt/Number.php create mode 100644 Language/lt/Pager.php create mode 100644 Language/lt/RESTful.php create mode 100644 Language/lt/Redirect.php create mode 100644 Language/lt/Router.php create mode 100644 Language/lt/Session.php create mode 100644 Language/lt/Time.php create mode 100644 Language/lt/Validation.php create mode 100644 Language/lt/View.php diff --git a/Language/lt/CLI.php b/Language/lt/CLI.php new file mode 100644 index 00000000..13865fe5 --- /dev/null +++ b/Language/lt/CLI.php @@ -0,0 +1,24 @@ + 'Komandos „{0}“ rasti nepavyko.', + 'helpUsage' => 'Naudojimas:', + 'helpDescription' => 'Aprašymas:', + 'helpOptions' => 'Parinktys:', + 'helpArguments' => 'Argumentai:', + 'invalidColor' => 'Neteisinga {0} spalva: {1}.', +]; diff --git a/Language/lt/Cache.php b/Language/lt/Cache.php new file mode 100644 index 00000000..a89cd876 --- /dev/null +++ b/Language/lt/Cache.php @@ -0,0 +1,22 @@ + 'Cache unable to write to {0}', + 'invalidHandlers' => 'Cache config must have an array of $validHandlers.', + 'noBackup' => 'Cache config must have a handler and backupHandler set.', + 'handlerNotFound' => 'Cache config has an invalid handler or backup handler specified.', +]; diff --git a/Language/lt/Cast.php b/Language/lt/Cast.php new file mode 100644 index 00000000..9d396822 --- /dev/null +++ b/Language/lt/Cast.php @@ -0,0 +1,23 @@ + 'Maximum stack depth exceeded', + 'jsonErrorStateMismatch' => 'Underflow or the modes mismatch', + 'jsonErrorCtrlChar' => 'Unexpected control character found', + 'jsonErrorSyntax' => 'Syntax error, malformed JSON', + 'jsonErrorUtf8' => 'Malformed UTF-8 characters, possibly incorrectly encoded', + 'jsonErrorUnknown' => 'Unknown error', +]; diff --git a/Language/lt/Core.php b/Language/lt/Core.php new file mode 100644 index 00000000..698afa93 --- /dev/null +++ b/Language/lt/Core.php @@ -0,0 +1,22 @@ + 'Neteisingas failas: {0}', + 'copyError' => 'Bandant pakeisti failą ({0}) susidurta su klaida. Prašome patikrinti, ar galima rašyti į direktoriją, kurioje yra failas.', + 'missingExtension' => '{0} praplėtimas nėra įkeltas.', + 'noHandlers' => '{0} turi teikti bent vieną doroklį.', +]; diff --git a/Language/lt/Database.php b/Language/lt/Database.php new file mode 100644 index 00000000..08748e38 --- /dev/null +++ b/Language/lt/Database.php @@ -0,0 +1,33 @@ + '{0} is not a valid Model Event callback.', + 'invalidArgument' => 'You must provide a valid {0}.', + 'invalidAllowedFields' => 'Allowed fields must be specified for model: {0}', + 'emptyDataset' => 'There is no data to {0}.', + 'failGetFieldData' => 'Failed to get field data from database.', + 'failGetIndexData' => 'Failed to get index data from database.', + 'failGetForeignKeyData' => 'Failed to get foreign key data from database.', + 'parseStringFail' => 'Parsing key string failed.', + 'featureUnavailable' => 'This feature is not available for the database you are using.', + 'tableNotFound' => 'Table `{0}` was not found in the current database.', + 'noPrimaryKey' => '`{0}` model class does not specify a Primary Key.', + 'noDateFormat' => '`{0}` model class does not have a valid dateFormat.', + 'fieldNotExists' => 'Field `{0}` not found.', + 'forEmptyInputGiven' => 'Empty statement is given for the field `{0}`', + 'forFindColumnHaveMultipleColumns' => 'Only single column allowed in Column name.', +]; diff --git a/Language/lt/Email.php b/Language/lt/Email.php new file mode 100644 index 00000000..b99117b9 --- /dev/null +++ b/Language/lt/Email.php @@ -0,0 +1,36 @@ + 'The email validation method must be passed an array.', + 'invalidAddress' => 'Invalid email address: {0}', + 'attachmentMissing' => 'Unable to locate the following email attachment: {0}', + 'attachmentUnreadable' => 'Unable to open this attachment: {0}', + 'noFrom' => 'Cannot send mail with no "From" header.', + 'noRecipients' => 'You must include recipients: To, Cc, or Bcc', + 'sendFailurePHPMail' => 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.', + 'sendFailureSendmail' => 'Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.', + 'sendFailureSmtp' => 'Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.', + 'sent' => 'Your message has been successfully sent using the following protocol: {0, string}', + 'noSocket' => 'Unable to open a socket to Sendmail. Please check settings.', + 'noHostname' => 'You did not specify a SMTP hostname.', + 'SMTPError' => 'The following SMTP error was encountered: {0}', + 'noSMTPAuth' => 'Error: You must assign a SMTP username and password.', + 'failedSMTPLogin' => 'Failed to send AUTH LOGIN command. Error: {0}', + 'SMTPAuthUsername' => 'Failed to authenticate username. Error: {0}', + 'SMTPAuthPassword' => 'Failed to authenticate password. Error: {0}', + 'SMTPDataFailure' => 'Unable to send data: {0}', + 'exitStatus' => 'Exit status code: {0}', +]; diff --git a/Language/lt/Encryption.php b/Language/lt/Encryption.php new file mode 100644 index 00000000..ddf15430 --- /dev/null +++ b/Language/lt/Encryption.php @@ -0,0 +1,23 @@ + 'No driver requested; Miss Daisy will be so upset!', + 'noHandlerAvailable' => 'Unable to find an available {0} encryption handler.', + 'unKnownHandler' => '"{0}" cannot be configured.', + 'starterKeyNeeded' => 'Encrypter needs a starter key.', + 'authenticationFailed' => 'Decrypting: authentication failed.', + 'encryptionFailed' => 'Encryption failed.', +]; diff --git a/Language/lt/Entity.php b/Language/lt/Entity.php new file mode 100644 index 00000000..7c3d58a0 --- /dev/null +++ b/Language/lt/Entity.php @@ -0,0 +1,19 @@ + 'Bandoma pasiekti neegzistuojančią {1} savybę {0}', +]; diff --git a/Language/lt/Files.php b/Language/lt/Files.php new file mode 100644 index 00000000..90cdfec4 --- /dev/null +++ b/Language/lt/Files.php @@ -0,0 +1,19 @@ + 'Failo rasti nepavyko: {0}', + 'cannotMove' => 'Nepavyko perkelti failo {0} į {1} ({2})', +]; diff --git a/Language/lt/Filters.php b/Language/lt/Filters.php new file mode 100644 index 00000000..e4a43846 --- /dev/null +++ b/Language/lt/Filters.php @@ -0,0 +1,20 @@ + '{0} filtras turi turėti nustatytą slapyvardį.', + 'incorrectInterface' => '{0} turi įgyvendinti CodeIgniter\Filters\FilterInterface.', +]; diff --git a/Language/lt/Format.php b/Language/lt/Format.php new file mode 100644 index 00000000..e93280f5 --- /dev/null +++ b/Language/lt/Format.php @@ -0,0 +1,20 @@ + 'Nepavyko nuskaityti json eilutės, klaida: „{0}“.', + 'missingExtension' => 'XML formatavimui reikalingas SimpleXML praplėtimas.', +]; diff --git a/Language/lt/HTTP.php b/Language/lt/HTTP.php new file mode 100644 index 00000000..9f94419f --- /dev/null +++ b/Language/lt/HTTP.php @@ -0,0 +1,77 @@ + 'CURL must be enabled to use the CURLRequest class.', + 'invalidSSLKey' => 'Cannot set SSL Key. {0} is not a valid file.', + 'sslCertNotFound' => 'SSL certificate not found at: {0}', + 'curlError' => '{0} : {1}', + + // IncomingRequest + 'invalidNegotiationType' => '{0} is not a valid negotiation type. Must be one of: media, charset, encoding, language.', + + // Message + 'invalidHTTPProtocol' => 'Invalid HTTP Protocol Version. Must be one of: {0}', + + // Negotiate + 'emptySupportedNegotiations' => 'You must provide an array of supported values to all Negotiations.', + + // RedirectResponse + 'invalidRoute' => '{0, string} route cannot be found while reverse-routing.', + + // DownloadResponse + 'cannotSetBinary' => 'When setting filepath can not set binary.', + 'cannotSetFilepath' => 'When setting binary can not set filepath: {0}', + 'notFoundDownloadSource' => 'Not found download body source.', + 'cannotSetCache' => 'It does not supported caching for downloading.', + 'cannotSetStatusCode' => 'It does not supported chnage status code for downloading. code: {0}, reason: {1}', + + // Response + 'missingResponseStatus' => 'HTTP Response is missing a status code', + 'invalidStatusCode' => '{0, string} is not a valid HTTP return status code', + 'unknownStatusCode' => 'Unknown HTTP status code provided with no message: {0}', + + // URI + 'cannotParseURI' => 'Unable to parse URI: {0}', + 'segmentOutOfRange' => 'Request URI segment is our of range: {0}', + 'invalidPort' => 'Ports must be between 0 and 65535. Given: {0}', + 'malformedQueryString' => 'Query strings may not include URI fragments.', + + // Page Not Found + 'pageNotFound' => 'Page Not Found', + 'emptyController' => 'No Controller specified.', + 'controllerNotFound' => 'Controller or its method is not found: {0}::{1}', + 'methodNotFound' => 'Controller method is not found: {0}', + + // CSRF + 'disallowedAction' => 'The action you requested is not allowed.', + + // Uploaded file moving + 'alreadyMoved' => 'The uploaded file has already been moved.', + 'invalidFile' => 'The original file is not a valid file.', + 'moveFailed' => 'Could not move file {0} to {1} ({2})', + + 'uploadErrOk' => 'The file uploaded with success.', + 'uploadErrIniSize' => 'The file "%s" exceeds your upload_max_filesize ini directive.', + 'uploadErrFormSize' => 'The file "%s" exceeds the upload limit defined in your form.', + 'uploadErrPartial' => 'The file "%s" was only partially uploaded.', + 'uploadErrNoFile' => 'No file was uploaded.', + 'uploadErrCantWrite' => 'The file "%s" could not be written on disk.', + 'uploadErrNoTmpDir' => 'File could not be uploaded: missing temporary directory.', + 'uploadErrExtension' => 'File upload was stopped by a PHP extension.', + 'uploadErrUnknown' => 'The file "%s" was not uploaded due to an unknown error.', +]; diff --git a/Language/lt/Images.php b/Language/lt/Images.php new file mode 100644 index 00000000..740b9e88 --- /dev/null +++ b/Language/lt/Images.php @@ -0,0 +1,36 @@ + 'You must specify a source image in your preferences.', + 'gdRequired' => 'The GD image library is required to use this feature.', + 'gdRequiredForProps' => 'Your server must support the GD image library in order to determine the image properties.', + 'gifNotSupported' => 'GIF images are often not supported due to licensing restrictions. You may have to use JPG or PNG images instead.', + 'jpgNotSupported' => 'JPG images are not supported.', + 'pngNotSupported' => 'PNG images are not supported.', + 'unsupportedImageCreate' => 'Your server does not support the GD function required to process this type of image.', + 'jpgOrPngRequired' => 'The image resize protocol specified in your preferences only works with JPEG or PNG image types.', + 'rotateUnsupported' => 'Image rotation does not appear to be supported by your server.', + 'libPathInvalid' => 'The path to your image library is not correct. Please set the correct path in your image preferences. {0, string)', + 'imageProcessFailed' => 'Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.', + 'rotationAngleRequired' => 'An angle of rotation is required to rotate the image.', + 'invalidPath' => 'The path to the image is not correct.', + 'copyFailed' => 'The image copy routine failed.', + 'missingFont' => 'Unable to find a font to use.', + 'saveFailed' => 'Unable to save the image. Please make sure the image and file directory are writable.', + 'invalidDirection' => 'Flip direction can be only `vertical` or `horizontal`. Given: {0}', + 'exifNotSupported' => 'Reading EXIF data is not supported by this PHP installation.', +]; diff --git a/Language/lt/Language.php b/Language/lt/Language.php new file mode 100644 index 00000000..efd395ba --- /dev/null +++ b/Language/lt/Language.php @@ -0,0 +1,19 @@ + 'Get line must be a string or array of strings.', +]; diff --git a/Language/lt/Log.php b/Language/lt/Log.php new file mode 100644 index 00000000..0ccd094a --- /dev/null +++ b/Language/lt/Log.php @@ -0,0 +1,19 @@ + '{0} yra netinkamas žurnalo įrašo lygmuo.', +]; diff --git a/Language/lt/Migrations.php b/Language/lt/Migrations.php new file mode 100644 index 00000000..efcc94ce --- /dev/null +++ b/Language/lt/Migrations.php @@ -0,0 +1,56 @@ + 'Migrations table must be set.', + 'disabled' => 'Migrations have been loaded but are disabled or setup incorrectly.', + 'notFound' => 'Migration file not found: ', + 'batchNotFound' => 'Target batch not found: ', + 'empty' => 'No Migration files found', + 'gap' => 'There is a gap in the migration sequence near version number: ', + 'classNotFound' => 'The migration class "%s" could not be found.', + 'missingMethod' => 'The migration class is missing an "%s" method.', + + // Migration Command + 'migHelpLatest' => "\t\tMigrates database to latest available migration.", + 'migHelpCurrent' => "\t\tMigrates database to version set as 'current' in configuration.", + 'migHelpVersion' => "\tMigrates database to version {v}.", + 'migHelpRollback' => "\tRuns all migrations 'down' to version 0.", + 'migHelpRefresh' => "\t\tUninstalls and re-runs all migrations to freshen database.", + 'migHelpSeed' => "\tRuns the seeder named [name].", + 'migCreate' => "\tCreates a new migration named [name]", + 'nameMigration' => 'Name the migration file', + 'badCreateName' => 'You must provide a migration file name.', + 'writeError' => 'Error trying to create file.', + 'migNumberError' => 'Migration number must be three digits, and there must not be any gaps in the sequence.', + + 'latest' => 'Running all new migrations...', + 'generalFault' => 'Migration failed!', + 'migInvalidVersion' => 'Invalid version number provided.', + 'toVersionPH' => 'Migrating to version %s...', + 'toVersion' => 'Migrating to current version...', + 'rollingBack' => 'Rolling back migrations to batch: ', + 'noneFound' => 'No migrations were found.', + 'on' => 'Migrated On: ', + 'migSeeder' => 'Seeder name', + 'migMissingSeeder' => 'You must provide a seeder name.', + 'removed' => 'Rolling back: ', + 'added' => 'Running: ', + + 'version' => 'Version', + 'filename' => 'Filename', +]; diff --git a/Language/lt/Number.php b/Language/lt/Number.php new file mode 100644 index 00000000..ec8ea47b --- /dev/null +++ b/Language/lt/Number.php @@ -0,0 +1,30 @@ + 'TB', + 'gigabyteAbbr' => 'GB', + 'megabyteAbbr' => 'MB', + 'kilobyteAbbr' => 'KB', + 'bytes' => 'Bytes', + + // don't forget the space in front of these! + 'thousand' => ' thousand', + 'million' => ' million', + 'billion' => ' billion', + 'trillion' => ' trillion', + 'quadrillion' => ' quadrillion', +]; diff --git a/Language/lt/Pager.php b/Language/lt/Pager.php new file mode 100644 index 00000000..3d4ad914 --- /dev/null +++ b/Language/lt/Pager.php @@ -0,0 +1,27 @@ + 'Page navigation', + 'first' => 'First', + 'previous' => 'Previous', + 'next' => 'Next', + 'last' => 'Last', + 'older' => 'Older', + 'newer' => 'Newer', + 'invalidTemplate' => '{0} is not a valid Pager template.', + 'invalidPaginationGroup' => '{0} is not a valid Pagination group.', +]; diff --git a/Language/lt/RESTful.php b/Language/lt/RESTful.php new file mode 100644 index 00000000..8eeee3ca --- /dev/null +++ b/Language/lt/RESTful.php @@ -0,0 +1,18 @@ + '"{0}" veiksmas neįgyvendintas.', +]; diff --git a/Language/lt/Redirect.php b/Language/lt/Redirect.php new file mode 100644 index 00000000..f86520d4 --- /dev/null +++ b/Language/lt/Redirect.php @@ -0,0 +1,19 @@ + ' Nepavyksta nukreipti „{0}“. Klaidos kodas „{1}“', +]; diff --git a/Language/lt/Router.php b/Language/lt/Router.php new file mode 100644 index 00000000..a0573947 --- /dev/null +++ b/Language/lt/Router.php @@ -0,0 +1,20 @@ + 'Parametras neatitinka laukiamo tipo.', + 'missingDefaultRoute' => 'Nepavyksta nustatyti, kas turi būti rodoma. Maršrutizavimo faile nėra nustatytas numatytasis maršrutas.', +]; diff --git a/Language/lt/Session.php b/Language/lt/Session.php new file mode 100644 index 00000000..5f0dabdf --- /dev/null +++ b/Language/lt/Session.php @@ -0,0 +1,23 @@ + '`sessionSavePath` must have the table name for the Database Session Handler to work.', + 'invalidSavePath' => 'Session: Configured save path "{0}" is not a directory, does not exist or cannot be created.', + 'writeProtectedSavePath' => 'Session: Configured save path "{0}" is not writable by the PHP process.', + 'emptySavePath' => 'Session: No save path configured.', + 'invalidSavePathFormat' => 'Session: Invalid Redis save path format: {0}', +]; diff --git a/Language/lt/Time.php b/Language/lt/Time.php new file mode 100644 index 00000000..ece5f768 --- /dev/null +++ b/Language/lt/Time.php @@ -0,0 +1,36 @@ + 'Months must be between 1 and 12. Given: {0}', + 'invalidDay' => 'Days must be between 1 and 31. Given: {0}', + 'invalidOverDay' => 'Days must be between 1 and {0}. Given: {1}', + 'invalidHours' => 'Hours must be between 0 and 23. Given: {0}', + 'invalidMinutes' => 'Minutes must be between 0 and 59. Given: {0}', + 'invalidSeconds' => 'Seconds must be between 0 and 59. Given: {0}', + 'years' => '{0, plural, =1{# year} other{# years}}', + 'months' => '{0, plural, =1{# month} other{# months}}', + 'weeks' => '{0, plural, =1{# week} other{# weeks}}', + 'days' => '{0, plural, =1{# day} other{# days}}', + 'hours' => '{0, plural, =1{# hour} other{# hours}}', + 'minutes' => '{0, plural, =1{# minute} other{# minutes}}', + 'seconds' => '{0, plural, =1{# second} other{# seconds}}', + 'ago' => '{0} ago', + 'inFuture' => 'in {0}', + 'yesterday' => 'Yesterday', + 'tomorrow' => 'Tomorrow', + 'now' => 'Just now', +]; diff --git a/Language/lt/Validation.php b/Language/lt/Validation.php new file mode 100644 index 00000000..c9e656f8 --- /dev/null +++ b/Language/lt/Validation.php @@ -0,0 +1,71 @@ + 'No rulesets specified in Validation configuration.', + 'ruleNotFound' => '{0} is not a valid rule.', + 'groupNotFound' => '{0} is not a validation rules group.', + 'groupNotArray' => '{0} rule group must be an array.', + 'invalidTemplate' => '{0} is not a valid Validation template.', + + // Rule Messages + 'alpha' => 'The {field} field may only contain alphabetical characters.', + 'alpha_dash' => 'The {field} field may only contain alpha-numeric characters, underscores, and dashes.', + 'alpha_numeric' => 'The {field} field may only contain alpha-numeric characters.', + 'alpha_numeric_space' => 'The {field} field may only contain alpha-numeric characters and spaces.', + 'alpha_space' => 'The {field} field may only contain alphabetical characters and spaces.', + 'decimal' => 'The {field} field must contain a decimal number.', + 'differs' => 'The {field} field must differ from the {param} field.', + 'equals' => 'The {field} field must be exactly: {param}.', + 'exact_length' => 'The {field} field must be exactly {param} characters in length.', + 'greater_than' => 'The {field} field must contain a number greater than {param}.', + 'greater_than_equal_to' => 'The {field} field must contain a number greater than or equal to {param}.', + 'in_list' => 'The {field} field must be one of: {param}.', + 'integer' => 'The {field} field must contain an integer.', + 'is_natural' => 'The {field} field must only contain digits.', + 'is_natural_no_zero' => 'The {field} field must only contain digits and must be greater than zero.', + 'is_unique' => 'The {field} field must contain a unique value.', + 'less_than' => 'The {field} field must contain a number less than {param}.', + 'less_than_equal_to' => 'The {field} field must contain a number less than or equal to {param}.', + 'matches' => 'The {field} field does not match the {param} field.', + 'max_length' => 'The {field} field cannot exceed {param} characters in length.', + 'min_length' => 'The {field} field must be at least {param} characters in length.', + 'not_equals' => 'The {field} field cannot be: {param}.', + 'numeric' => 'The {field} field must contain only numbers.', + 'regex_match' => 'The {field} field is not in the correct format.', + 'required' => 'The {field} field is required.', + 'required_with' => 'The {field} field is required when {param} is present.', + 'required_without' => 'The {field} field is required when {param} is not present.', + 'timezone' => 'The {field} field must be a valid timezone.', + 'valid_base64' => 'The {field} field must be a valid base64 string.', + 'valid_email' => 'The {field} field must contain a valid email address.', + 'valid_emails' => 'The {field} field must contain all valid email addresses.', + 'valid_ip' => 'The {field} field must contain a valid IP.', + 'valid_url' => 'The {field} field must contain a valid URL.', + 'valid_date' => 'The {field} field must contain a valid date.', + + // Credit Cards + 'valid_cc_num' => '{field} does not appear to be a valid credit card number.', + + // Files + 'uploaded' => '{field} is not a valid uploaded file.', + 'max_size' => '{field} is too large of a file.', + 'is_image' => '{field} is not a valid, uploaded image file.', + 'mime_in' => '{field} does not have a valid mime type.', + 'ext_in' => '{field} does not have a valid file extension.', + 'max_dims' => '{field} is either not an image, or it is too wide or tall.', +]; diff --git a/Language/lt/View.php b/Language/lt/View.php new file mode 100644 index 00000000..0c2a146e --- /dev/null +++ b/Language/lt/View.php @@ -0,0 +1,23 @@ + '{class}::{method} is not a valid method.', + 'missingCellParameters' => '{class}::{method} has no params.', + 'invalidCellParameter' => '{0} is not a valid param name.', + 'noCellClass' => 'No view cell class provided.', + 'invalidCellClass' => 'Unable to locate view cell class: {0}.', + 'tagSyntaxError' => 'You have a syntax error in your Parser tags: {0}', +]; From cebf2fc4b78a72d959c9c30f34f21033f510832d Mon Sep 17 00:00:00 2001 From: Donatas Glodenis Date: Sat, 26 Oct 2019 12:09:59 +0300 Subject: [PATCH 2/3] initial translation --- Language/lt/Cache.php | 8 ++++---- Language/lt/Cast.php | 12 ++++++------ Language/lt/Encryption.php | 12 ++++++------ Language/lt/Number.php | 12 ++++++------ Language/lt/Pager.php | 18 +++++++++--------- Language/lt/Session.php | 10 +++++----- Language/lt/Time.php | 36 ++++++++++++++++++------------------ Language/lt/View.php | 12 ++++++------ 8 files changed, 60 insertions(+), 60 deletions(-) diff --git a/Language/lt/Cache.php b/Language/lt/Cache.php index a89cd876..b7775e2f 100644 --- a/Language/lt/Cache.php +++ b/Language/lt/Cache.php @@ -15,8 +15,8 @@ */ return [ - 'unableToWrite' => 'Cache unable to write to {0}', - 'invalidHandlers' => 'Cache config must have an array of $validHandlers.', - 'noBackup' => 'Cache config must have a handler and backupHandler set.', - 'handlerNotFound' => 'Cache config has an invalid handler or backup handler specified.', + 'unableToWrite' => 'Laikinąjai atmintinei nepavyko rašyti į {0}', + 'invalidHandlers' => 'Laikinosios atmintinės konfigūracijos faile turi būti $validHandlers masyvas.', + 'noBackup' => 'Laikinosios atmintinės konfigūracijos faile turi būti nustatytas įvykių doroklio ir atsarginio įvykių doroklio parametras.', + 'handlerNotFound' => 'Laikinosios atmintinės knfigūracijos faile nurodytas neteisingas įvykių doroklio ar atsarginio įvykių doroklio parametras.', ]; diff --git a/Language/lt/Cast.php b/Language/lt/Cast.php index 9d396822..096cd22a 100644 --- a/Language/lt/Cast.php +++ b/Language/lt/Cast.php @@ -14,10 +14,10 @@ */ return [ - 'jsonErrorDepth' => 'Maximum stack depth exceeded', - 'jsonErrorStateMismatch' => 'Underflow or the modes mismatch', - 'jsonErrorCtrlChar' => 'Unexpected control character found', - 'jsonErrorSyntax' => 'Syntax error, malformed JSON', - 'jsonErrorUtf8' => 'Malformed UTF-8 characters, possibly incorrectly encoded', - 'jsonErrorUnknown' => 'Unknown error', + 'jsonErrorDepth' => 'Viršytas maksimalus dėklo gylis', + 'jsonErrorStateMismatch' => 'Nepakankama tėkmė arba režimų neatitiimas', + 'jsonErrorCtrlChar' => 'Aptiktas nelauktas kontrolės simbolis', + 'jsonErrorSyntax' => 'Sintaksės klaida, netesingai suformuotas JSON', + 'jsonErrorUtf8' => 'Neteisingi UTF-8 simboliai, JSON gali būti neteisingai užkoduotas', + 'jsonErrorUnknown' => 'Nežinoma klaida', ]; diff --git a/Language/lt/Encryption.php b/Language/lt/Encryption.php index ddf15430..f25e5b0b 100644 --- a/Language/lt/Encryption.php +++ b/Language/lt/Encryption.php @@ -14,10 +14,10 @@ */ return [ - 'noDriverRequested' => 'No driver requested; Miss Daisy will be so upset!', - 'noHandlerAvailable' => 'Unable to find an available {0} encryption handler.', - 'unKnownHandler' => '"{0}" cannot be configured.', - 'starterKeyNeeded' => 'Encrypter needs a starter key.', - 'authenticationFailed' => 'Decrypting: authentication failed.', - 'encryptionFailed' => 'Encryption failed.', + 'noDriverRequested' => 'Neužprašytas valdiklis; panelė Deizė bus labai nuliūdusi!', + 'noHandlerAvailable' => 'Nepavyksta rasti prieinamo {0} šifravimo doroklio.', + 'unKnownHandler' => '„{0}“ negali būti konfigūruotas.', + 'starterKeyNeeded' => 'Šifruokliui reikia starterio rakto.', + 'authenticationFailed' => 'Dešifravimas: autentifikavimas nepavyko.', + 'encryptionFailed' => 'Užšifruoti nepavyko.', ]; diff --git a/Language/lt/Number.php b/Language/lt/Number.php index ec8ea47b..56a2f873 100644 --- a/Language/lt/Number.php +++ b/Language/lt/Number.php @@ -19,12 +19,12 @@ 'gigabyteAbbr' => 'GB', 'megabyteAbbr' => 'MB', 'kilobyteAbbr' => 'KB', - 'bytes' => 'Bytes', + 'bytes' => 'Baitai', // don't forget the space in front of these! - 'thousand' => ' thousand', - 'million' => ' million', - 'billion' => ' billion', - 'trillion' => ' trillion', - 'quadrillion' => ' quadrillion', + 'thousand' => ' tūkstantis', + 'million' => ' milijonas', + 'billion' => ' milijardas', + 'trillion' => ' trilijonas', + 'quadrillion' => ' kvadriljonas', ]; diff --git a/Language/lt/Pager.php b/Language/lt/Pager.php index 3d4ad914..b00c682c 100644 --- a/Language/lt/Pager.php +++ b/Language/lt/Pager.php @@ -15,13 +15,13 @@ */ return [ - 'pageNavigation' => 'Page navigation', - 'first' => 'First', - 'previous' => 'Previous', - 'next' => 'Next', - 'last' => 'Last', - 'older' => 'Older', - 'newer' => 'Newer', - 'invalidTemplate' => '{0} is not a valid Pager template.', - 'invalidPaginationGroup' => '{0} is not a valid Pagination group.', + 'pageNavigation' => 'Puslapio navigacija', + 'first' => 'pirmas', + 'previous' => 'ankstesnis', + 'next' => 'kitas', + 'last' => 'paskutinis', + 'older' => 'senesnis', + 'newer' => 'naujesnis', + 'invalidTemplate' => '{0} nėra teisingas puslapiuotojo šablonas.', + 'invalidPaginationGroup' => '{0} nėra teisinga puslapiavimo grupė.', ]; diff --git a/Language/lt/Session.php b/Language/lt/Session.php index 5f0dabdf..fae196de 100644 --- a/Language/lt/Session.php +++ b/Language/lt/Session.php @@ -15,9 +15,9 @@ */ return [ - 'missingDatabaseTable' => '`sessionSavePath` must have the table name for the Database Session Handler to work.', - 'invalidSavePath' => 'Session: Configured save path "{0}" is not a directory, does not exist or cannot be created.', - 'writeProtectedSavePath' => 'Session: Configured save path "{0}" is not writable by the PHP process.', - 'emptySavePath' => 'Session: No save path configured.', - 'invalidSavePathFormat' => 'Session: Invalid Redis save path format: {0}', + 'missingDatabaseTable' => 'Norint, kad duomenų bazės doroklė veiktų, `sessionSavePath` turi turėti duomenų bazės lentelės pavadinimą.', + 'invalidSavePath' => 'Sesija: konfigūracijoje nustatytas įrašymo kelias „{0}“ nėra direktorija, neegzistuoja arba negali būti sukurtas.', + 'writeProtectedSavePath' => 'Sesija: konfigūracijoje nustatytas įrašymo kelias „{0}“ nėra prieinamas php procesui įrašymui.', + 'emptySavePath' => 'Sesija: konfigūracijoje nenustatytas įrašymo kelias.', + 'invalidSavePathFormat' => 'Sesija: negaliojantis Redis įrašymo kelio formatas: {0}', ]; diff --git a/Language/lt/Time.php b/Language/lt/Time.php index ece5f768..a0b449ab 100644 --- a/Language/lt/Time.php +++ b/Language/lt/Time.php @@ -15,22 +15,22 @@ */ return [ - 'invalidMonth' => 'Months must be between 1 and 12. Given: {0}', - 'invalidDay' => 'Days must be between 1 and 31. Given: {0}', - 'invalidOverDay' => 'Days must be between 1 and {0}. Given: {1}', - 'invalidHours' => 'Hours must be between 0 and 23. Given: {0}', - 'invalidMinutes' => 'Minutes must be between 0 and 59. Given: {0}', - 'invalidSeconds' => 'Seconds must be between 0 and 59. Given: {0}', - 'years' => '{0, plural, =1{# year} other{# years}}', - 'months' => '{0, plural, =1{# month} other{# months}}', - 'weeks' => '{0, plural, =1{# week} other{# weeks}}', - 'days' => '{0, plural, =1{# day} other{# days}}', - 'hours' => '{0, plural, =1{# hour} other{# hours}}', - 'minutes' => '{0, plural, =1{# minute} other{# minutes}}', - 'seconds' => '{0, plural, =1{# second} other{# seconds}}', - 'ago' => '{0} ago', - 'inFuture' => 'in {0}', - 'yesterday' => 'Yesterday', - 'tomorrow' => 'Tomorrow', - 'now' => 'Just now', + 'invalidMonth' => 'Menesių reikšmės gali būti nuo 1 iki 12. Įrašyta: {0}', + 'invalidDay' => 'Dienų reikšmės gali būti nuo 1 iki 31. Įrašyta: {0}', + 'invalidOverDay' => 'Dienų reikšmės gali būti nuo 1 iki {0}. Įrašyta: {1}', + 'invalidHours' => 'Valandų reikšmės gali būti nuo 0 iki 23. Įrašyta: {0}', + 'invalidMinutes' => 'Minučių reikšmės gali būti nuo 0 iki 59. Įrašyta: {0}', + 'invalidSeconds' => 'Sekundžių reikšmės gali būti nuo 0 iki 59. Įrašyta: {0}', + 'years' => '{0, plural, =1{# metai} other{# metai}}', + 'months' => '{0, plural, =1{# mėnuo} other{# mėnesiai}}', + 'weeks' => '{0, plural, =1{# savaitė} other{# savaitės}}', + 'days' => '{0, plural, =1{# diena} other{# dienos}}', + 'hours' => '{0, plural, =1{# valanda} other{# valandos}}', + 'minutes' => '{0, plural, =1{# minutė} other{# minutės}}', + 'seconds' => '{0, plural, =1{# sekundė} other{# sekundės}}', + 'ago' => 'prieš {0}', + 'inFuture' => 'po {0}', + 'yesterday' => 'Vakar', + 'tomorrow' => 'Rytoj', + 'now' => 'Dabar', ]; diff --git a/Language/lt/View.php b/Language/lt/View.php index 0c2a146e..03c484ed 100644 --- a/Language/lt/View.php +++ b/Language/lt/View.php @@ -14,10 +14,10 @@ */ return [ - 'invalidCellMethod' => '{class}::{method} is not a valid method.', - 'missingCellParameters' => '{class}::{method} has no params.', - 'invalidCellParameter' => '{0} is not a valid param name.', - 'noCellClass' => 'No view cell class provided.', - 'invalidCellClass' => 'Unable to locate view cell class: {0}.', - 'tagSyntaxError' => 'You have a syntax error in your Parser tags: {0}', + 'invalidCellMethod' => '{class}::{method} nėra teisingas metodas.', + 'missingCellParameters' => '{class}::{method} neturi parametrų.', + 'invalidCellParameter' => '{0} nėra teisingas parametro pavadinimas.', + 'noCellClass' => 'Nenurodyta peržiūros užklausos klasė.', + 'invalidCellClass' => 'Nepavyksta rasti peržiūros užklausos klasės: {0}.', + 'tagSyntaxError' => 'Analizatoriaus žymose yra sintaksės klaida: {0}', ]; From 0c0f945323417bfc2ee91c61857149cecda92d3a Mon Sep 17 00:00:00 2001 From: Donatas Glodenis Date: Tue, 29 Oct 2019 21:45:19 +0200 Subject: [PATCH 3/3] initial translation --- Language/lt/Database.php | 30 ++++++------- Language/lt/Email.php | 38 ++++++++-------- Language/lt/HTTP.php | 72 ++++++++++++++--------------- Language/lt/Images.php | 36 +++++++-------- Language/lt/Language.php | 2 +- Language/lt/Migrations.php | 66 +++++++++++++-------------- Language/lt/Validation.php | 92 +++++++++++++++++++------------------- 7 files changed, 168 insertions(+), 168 deletions(-) diff --git a/Language/lt/Database.php b/Language/lt/Database.php index 08748e38..08a45a6d 100644 --- a/Language/lt/Database.php +++ b/Language/lt/Database.php @@ -15,19 +15,19 @@ */ return [ - 'invalidEvent' => '{0} is not a valid Model Event callback.', - 'invalidArgument' => 'You must provide a valid {0}.', - 'invalidAllowedFields' => 'Allowed fields must be specified for model: {0}', - 'emptyDataset' => 'There is no data to {0}.', - 'failGetFieldData' => 'Failed to get field data from database.', - 'failGetIndexData' => 'Failed to get index data from database.', - 'failGetForeignKeyData' => 'Failed to get foreign key data from database.', - 'parseStringFail' => 'Parsing key string failed.', - 'featureUnavailable' => 'This feature is not available for the database you are using.', - 'tableNotFound' => 'Table `{0}` was not found in the current database.', - 'noPrimaryKey' => '`{0}` model class does not specify a Primary Key.', - 'noDateFormat' => '`{0}` model class does not have a valid dateFormat.', - 'fieldNotExists' => 'Field `{0}` not found.', - 'forEmptyInputGiven' => 'Empty statement is given for the field `{0}`', - 'forFindColumnHaveMultipleColumns' => 'Only single column allowed in Column name.', + 'invalidEvent' => '{0} nėra teisingas modelio įvykio iškviečiamasis atsakas.', + 'invalidArgument' => 'Turite pateikti teisingą {0}.', + 'invalidAllowedFields' => 'Leidžiami laukai turi būti nurodyti modeliui: {0}', + 'emptyDataset' => '{0} Nėra duomenų.', + 'failGetFieldData' => 'Nepavyko gauti lauko duomenų iš duomenų bazės.', + 'failGetIndexData' => 'Iš duomenų bazės nepavyko gauti indekso duomenų.', + 'failGetForeignKeyData' => 'Nepavyko gauti svetimojo rakto duomenų iš duomenų bazės.', + 'parseStringFail' => 'Nepavyko išanalizuoti rakto eilutės.', + 'featureUnavailable' => 'Ši savybė nėra naudojama su duomenų baze, kurią naudojate.', + 'tableNotFound' => 'Lentelės `{0}` dabartinėje duomenų bazėje nėra.', + 'noPrimaryKey' => '`{0}` modelio klasė nenurodo pirminio rakto.', + 'noDateFormat' => '`{0}` modelio klasė neturi teisingo dateFormat.', + 'fieldNotExists' => 'Nepavyko rasti lauko `{0}`.', + 'forEmptyInputGiven' => 'Laukui `{0}` pateiktas tuščias teiginys', + 'forFindColumnHaveMultipleColumns' => 'Stulpelio pavadinimą leidžiama sudaryti iš vieno stulpelio.', ]; diff --git a/Language/lt/Email.php b/Language/lt/Email.php index b99117b9..4d3b40b4 100644 --- a/Language/lt/Email.php +++ b/Language/lt/Email.php @@ -14,23 +14,23 @@ */ return [ - 'mustBeArray' => 'The email validation method must be passed an array.', - 'invalidAddress' => 'Invalid email address: {0}', - 'attachmentMissing' => 'Unable to locate the following email attachment: {0}', - 'attachmentUnreadable' => 'Unable to open this attachment: {0}', - 'noFrom' => 'Cannot send mail with no "From" header.', - 'noRecipients' => 'You must include recipients: To, Cc, or Bcc', - 'sendFailurePHPMail' => 'Unable to send email using PHP mail(). Your server might not be configured to send mail using this method.', - 'sendFailureSendmail' => 'Unable to send email using PHP Sendmail. Your server might not be configured to send mail using this method.', - 'sendFailureSmtp' => 'Unable to send email using PHP SMTP. Your server might not be configured to send mail using this method.', - 'sent' => 'Your message has been successfully sent using the following protocol: {0, string}', - 'noSocket' => 'Unable to open a socket to Sendmail. Please check settings.', - 'noHostname' => 'You did not specify a SMTP hostname.', - 'SMTPError' => 'The following SMTP error was encountered: {0}', - 'noSMTPAuth' => 'Error: You must assign a SMTP username and password.', - 'failedSMTPLogin' => 'Failed to send AUTH LOGIN command. Error: {0}', - 'SMTPAuthUsername' => 'Failed to authenticate username. Error: {0}', - 'SMTPAuthPassword' => 'Failed to authenticate password. Error: {0}', - 'SMTPDataFailure' => 'Unable to send data: {0}', - 'exitStatus' => 'Exit status code: {0}', + 'mustBeArray' => 'El. adreso patikrinimo metodui turi būti perduotas masyvas.', + 'invalidAddress' => 'Nevalidus el. pašto adresas: {0}', + 'attachmentMissing' => 'Nepavyksta rasti šio el. laiško priedo: {0}', + 'attachmentUnreadable' => 'Nepavyksta atverti šio priedo: {0}', + 'noFrom' => 'Negalima siųsti el. laiško be „From“ antraštės.', + 'noRecipients' => 'Turite įtraukti gavėjus: To, Cc, arba Bcc', + 'sendFailurePHPMail' => 'Nepavyksta siųsti laiško naudojant PHP mail() funkciją. Jūsų serveris greičiausiai nesukonfigūruotas siųsti laiškus šiuo metodu.', + 'sendFailureSendmail' => 'Nepavyksta siųsti laiško naudojant PHP Sendmail funkciją. Jūsų serveris greičiausiai nesukonfigūruotas siųsti laiškus šiuo metodu.', + 'sendFailureSmtp' => 'Nepavyksta siųsti laiško naudojant PHP SMTP funkciją. Jūsų serveris greičiausiai nesukonfigūruotas siųsti laiškus šiuo metodu.', + 'sent' => 'Jūsų laiškas buvo išsiųstas naudojant šį protokolą: {0, string}', + 'noSocket' => 'Nepavyksta atverti lizdo į Sendmail. Prašome patikrinti nustatymus.', + 'noHostname' => 'Jūs nenurodėte SMTP mazgo pavadinimo.', + 'SMTPError' => 'Buvo susidurta su šia SMTP klaida: {0}', + 'noSMTPAuth' => 'Klaida: turite nurodyti SMTP vartotojo vardą ir slaptažodį.', + 'failedSMTPLogin' => 'Nepavyko išsiųsti AUTH LOGIN komandos. Klaida: {0}', + 'SMTPAuthUsername' => 'Nepavyko autentifikuotis šiuo vardu. Klaida: {0}', + 'SMTPAuthPassword' => 'Nepavyko autentifikuotis šiuo slaptažodžiu. Klaida: {0}', + 'SMTPDataFailure' => 'Nepavyko išsiųsti duomenų: {0}', + 'exitStatus' => 'Išėjimo būklės kodas: {0}', ]; diff --git a/Language/lt/HTTP.php b/Language/lt/HTTP.php index 9f94419f..8f70deee 100644 --- a/Language/lt/HTTP.php +++ b/Language/lt/HTTP.php @@ -16,62 +16,62 @@ return [ // CurlRequest - 'missingCurl' => 'CURL must be enabled to use the CURLRequest class.', - 'invalidSSLKey' => 'Cannot set SSL Key. {0} is not a valid file.', - 'sslCertNotFound' => 'SSL certificate not found at: {0}', + 'missingCurl' => 'Norint naudoti CURLRequest klasę CURL turi būti įgalintas.', + 'invalidSSLKey' => 'Nepavyksta nustatyti SSL rakto. {0} nėra taisyklingas failas.', + 'sslCertNotFound' => 'SSL sertifikatas narastas adresu: {0}', 'curlError' => '{0} : {1}', // IncomingRequest - 'invalidNegotiationType' => '{0} is not a valid negotiation type. Must be one of: media, charset, encoding, language.', + 'invalidNegotiationType' => '{0} nėra taisyklingas derybų tipas. Turi būti vienas iš: media, simbolių rinkinys, koduotė, kalba.', // Message - 'invalidHTTPProtocol' => 'Invalid HTTP Protocol Version. Must be one of: {0}', + 'invalidHTTPProtocol' => 'Neteisinga HTTP protokolo versija. Turi būti viena iš: {0}', // Negotiate - 'emptySupportedNegotiations' => 'You must provide an array of supported values to all Negotiations.', + 'emptySupportedNegotiations' => 'Visoms deryboms turite pateikti palaikomas reikšmes.', // RedirectResponse - 'invalidRoute' => '{0, string} route cannot be found while reverse-routing.', + 'invalidRoute' => '{0, string} maršrutas negali būti nustatytas antvirkštinio maršrutizavimo metu.', // DownloadResponse - 'cannotSetBinary' => 'When setting filepath can not set binary.', - 'cannotSetFilepath' => 'When setting binary can not set filepath: {0}', - 'notFoundDownloadSource' => 'Not found download body source.', - 'cannotSetCache' => 'It does not supported caching for downloading.', - 'cannotSetStatusCode' => 'It does not supported chnage status code for downloading. code: {0}, reason: {1}', + 'cannotSetBinary' => 'Nustatant failo kelią negali būti naudojama dvejetainė reikšmė.', + 'cannotSetFilepath' => 'Nustatant dvejetainę reikšmę negalima nustatyti failo kelio: {0}', + 'notFoundDownloadSource' => 'Nerastas atsiuntimo turinio šaltinis.', + 'cannotSetCache' => 'Nepalaiko padėjimo (caching) atsiuntimui.', + 'cannotSetStatusCode' => 'Nepalaiko pakeisto statuso kodo atsiuntimo tvarkymui. Kodas: {0}, priežastis: {1}', // Response - 'missingResponseStatus' => 'HTTP Response is missing a status code', - 'invalidStatusCode' => '{0, string} is not a valid HTTP return status code', - 'unknownStatusCode' => 'Unknown HTTP status code provided with no message: {0}', + 'missingResponseStatus' => 'HTTP atsakui trūksta statuso kodo', + 'invalidStatusCode' => '{0, string} nėra teisingas HTTP atsako statuso kodas', + 'unknownStatusCode' => 'Nežinomas HTTP statuso kodas pateiktas be pranešimo: {0}', // URI - 'cannotParseURI' => 'Unable to parse URI: {0}', - 'segmentOutOfRange' => 'Request URI segment is our of range: {0}', - 'invalidPort' => 'Ports must be between 0 and 65535. Given: {0}', - 'malformedQueryString' => 'Query strings may not include URI fragments.', + 'cannotParseURI' => 'Nepavyko išnagrinėti URI: {0}', + 'segmentOutOfRange' => 'Užklausos URI segmentas ne reikšmių aibės ribose: {0}', + 'invalidPort' => 'Prievadų numeriai turi būti tarp 0 ir 65535. Gautasis: {0}', + 'malformedQueryString' => 'Užklausų eilutės turi neįtraukti URI fragmentų.', // Page Not Found - 'pageNotFound' => 'Page Not Found', - 'emptyController' => 'No Controller specified.', - 'controllerNotFound' => 'Controller or its method is not found: {0}::{1}', - 'methodNotFound' => 'Controller method is not found: {0}', + 'pageNotFound' => 'Puslapis nerastas', + 'emptyController' => 'Nenurodytas kontroleris.', + 'controllerNotFound' => 'Kontroleris arba jo metodas nerastas: {0}::{1}', + 'methodNotFound' => 'Kontrolerio metodas nerastas: {0}', // CSRF - 'disallowedAction' => 'The action you requested is not allowed.', + 'disallowedAction' => 'Veiksmas, kurio prašote, neleistinas.', // Uploaded file moving - 'alreadyMoved' => 'The uploaded file has already been moved.', - 'invalidFile' => 'The original file is not a valid file.', - 'moveFailed' => 'Could not move file {0} to {1} ({2})', + 'alreadyMoved' => 'Įkeltasis failas jau perkeltas.', + 'invalidFile' => 'Pirminis failas nėra teisingas failas.', + 'moveFailed' => 'Nepavyko perkelti failo {0} į {1} ({2})', - 'uploadErrOk' => 'The file uploaded with success.', - 'uploadErrIniSize' => 'The file "%s" exceeds your upload_max_filesize ini directive.', - 'uploadErrFormSize' => 'The file "%s" exceeds the upload limit defined in your form.', - 'uploadErrPartial' => 'The file "%s" was only partially uploaded.', - 'uploadErrNoFile' => 'No file was uploaded.', - 'uploadErrCantWrite' => 'The file "%s" could not be written on disk.', - 'uploadErrNoTmpDir' => 'File could not be uploaded: missing temporary directory.', - 'uploadErrExtension' => 'File upload was stopped by a PHP extension.', - 'uploadErrUnknown' => 'The file "%s" was not uploaded due to an unknown error.', + 'uploadErrOk' => 'Failas įkeltas sėkmingai.', + 'uploadErrIniSize' => 'Failo „%s“ dydis viršija jūsų upload_max_filesize ini direktyvą.', + 'uploadErrFormSize' => 'Failo „%s“ dydis viršija formoje nurodytą maksimalų failo dydį.', + 'uploadErrPartial' => 'Failas „%s“ buvo tik dalinai įkeltas.', + 'uploadErrNoFile' => 'Nebuvo įkeltas joks failas.', + 'uploadErrCantWrite' => 'Failo„%s“ nepavyko įrašyti į diską.', + 'uploadErrNoTmpDir' => 'Failo įkelti nepavyko: nėra laikinosios direktorijos.', + 'uploadErrExtension' => 'Failo įkėlimą sustabdė PHP išplėtimas.', + 'uploadErrUnknown' => 'Failo „%s“ nepavyko įkelti dėl nežinomos klaidos.', ]; diff --git a/Language/lt/Images.php b/Language/lt/Images.php index 740b9e88..7c88be92 100644 --- a/Language/lt/Images.php +++ b/Language/lt/Images.php @@ -15,22 +15,22 @@ */ return [ - 'sourceImageRequired' => 'You must specify a source image in your preferences.', - 'gdRequired' => 'The GD image library is required to use this feature.', - 'gdRequiredForProps' => 'Your server must support the GD image library in order to determine the image properties.', - 'gifNotSupported' => 'GIF images are often not supported due to licensing restrictions. You may have to use JPG or PNG images instead.', - 'jpgNotSupported' => 'JPG images are not supported.', - 'pngNotSupported' => 'PNG images are not supported.', - 'unsupportedImageCreate' => 'Your server does not support the GD function required to process this type of image.', - 'jpgOrPngRequired' => 'The image resize protocol specified in your preferences only works with JPEG or PNG image types.', - 'rotateUnsupported' => 'Image rotation does not appear to be supported by your server.', - 'libPathInvalid' => 'The path to your image library is not correct. Please set the correct path in your image preferences. {0, string)', - 'imageProcessFailed' => 'Image processing failed. Please verify that your server supports the chosen protocol and that the path to your image library is correct.', - 'rotationAngleRequired' => 'An angle of rotation is required to rotate the image.', - 'invalidPath' => 'The path to the image is not correct.', - 'copyFailed' => 'The image copy routine failed.', - 'missingFont' => 'Unable to find a font to use.', - 'saveFailed' => 'Unable to save the image. Please make sure the image and file directory are writable.', - 'invalidDirection' => 'Flip direction can be only `vertical` or `horizontal`. Given: {0}', - 'exifNotSupported' => 'Reading EXIF data is not supported by this PHP installation.', + 'sourceImageRequired' => 'Turite nurodyti šaltinio paveikslėlį nustatymuose.', + 'gdRequired' => 'Norint naudoti šią savybę reikalinga GD paveikslėlių biblioteka.', + 'gdRequiredForProps' => 'Norint nustatyti paveikslėlių savybes serveris turi palaikyti GD paveikslėlių biblioteką.', + 'gifNotSupported' => 'GIF paveikslėliai dažnai nėra palaikomi dėl licenzijavimo apribojimų. Vietoje jų gali tekti naudoti JPG arba PNG paveikslėlius.', + 'jpgNotSupported' => 'JPG paveikslėliai nepalaikomi.', + 'pngNotSupported' => 'PNG paveikslėliai nepalaikomi.', + 'unsupportedImageCreate' => 'Serveris nepalaiko GD funkcijos, kurios reikia šio paveikslėlio apdorojimui.', + 'jpgOrPngRequired' => 'Paveikslėlių dydžio keitimo protokolas, nurodytas Jūsų nustatymuose, veikia tik su JPG arba PNG paveikslėlių tipais.', + 'rotateUnsupported' => 'Paveikslėlių sukimas atrodo nėra palaikomas serverio.', + 'libPathInvalid' => 'Paveikslėlių apdorojimo bibliotekos kelias neteisingas. Prašome paveikslėlių nustatymuose nurodyti teisingą kelią. {0, string)', + 'imageProcessFailed' => 'Paveikslėlio apdorojimas nepavyko. Prašome įsitikinti, kad serveris palaiko pasirinktą protokolą, ir kad kelias iki paveikslėlių bibliotekos nurodytas teisingai.', + 'rotationAngleRequired' => 'Paveikslėlio pasukimui reikia nurodyti sukimo kampą.', + 'invalidPath' => 'Paveikslėlio kelias nurodytas neteisingai.', + 'copyFailed' => 'Paveikslėlio kopijavimas nepavyko.', + 'missingFont' => 'Nepavyksta rasti naudotino šrifto.', + 'saveFailed' => 'Nepavyko išsaugoti paveikslėlio. Prašome įsitikinti, kad į paveikslėlio vardą ir direktoriją galima rašyti.', + 'invalidDirection' => 'Apvertimo kryptis gali būti arba `vertical`, arba `horizontal`. Nurodyta: {0}', + 'exifNotSupported' => 'Serverio PHP nepalaiko EXIF duomenų skaitymo.', ]; diff --git a/Language/lt/Language.php b/Language/lt/Language.php index efd395ba..8d9e0042 100644 --- a/Language/lt/Language.php +++ b/Language/lt/Language.php @@ -15,5 +15,5 @@ */ return [ - 'languageGetLineInvalidArgumentException' => 'Get line must be a string or array of strings.', + 'languageGetLineInvalidArgumentException' => 'Get eilutė turi būti eilutės arba eilučių masyvo tipo.', ]; diff --git a/Language/lt/Migrations.php b/Language/lt/Migrations.php index efcc94ce..7c954614 100644 --- a/Language/lt/Migrations.php +++ b/Language/lt/Migrations.php @@ -16,41 +16,41 @@ return [ // Migration Runner - 'missingTable' => 'Migrations table must be set.', - 'disabled' => 'Migrations have been loaded but are disabled or setup incorrectly.', - 'notFound' => 'Migration file not found: ', - 'batchNotFound' => 'Target batch not found: ', - 'empty' => 'No Migration files found', - 'gap' => 'There is a gap in the migration sequence near version number: ', - 'classNotFound' => 'The migration class "%s" could not be found.', - 'missingMethod' => 'The migration class is missing an "%s" method.', + 'missingTable' => 'Turi būti nustatyta migracijų lentelė.', + 'disabled' => 'Migracijos buvo įkeltos, bet yra išjungtos, arba nustatytos neteisingai.', + 'notFound' => 'Migracijų failas nerastas: ', + 'batchNotFound' => 'Tikslinis paketas nerastas: ', + 'empty' => 'Nerasta migracijų failų', + 'gap' => 'Migracijų sekoje netoli versijos numerio yra tarpas: ', + 'classNotFound' => 'Migracijos klasė „%s“ nerasta.', + 'missingMethod' => 'Migracijos klasei trūksta „%s“ metodo.', // Migration Command - 'migHelpLatest' => "\t\tMigrates database to latest available migration.", - 'migHelpCurrent' => "\t\tMigrates database to version set as 'current' in configuration.", - 'migHelpVersion' => "\tMigrates database to version {v}.", - 'migHelpRollback' => "\tRuns all migrations 'down' to version 0.", - 'migHelpRefresh' => "\t\tUninstalls and re-runs all migrations to freshen database.", - 'migHelpSeed' => "\tRuns the seeder named [name].", - 'migCreate' => "\tCreates a new migration named [name]", - 'nameMigration' => 'Name the migration file', - 'badCreateName' => 'You must provide a migration file name.', - 'writeError' => 'Error trying to create file.', - 'migNumberError' => 'Migration number must be three digits, and there must not be any gaps in the sequence.', + 'migHelpLatest' => "\t\tMigruoja duomenų bazes naudojant vėliausią prieinamą migraciją.", + 'migHelpCurrent' => "\t\tMigruoja duomenų bazę iki versijos, kuri konfigūracijoje nurodyta kaip 'current'.", + 'migHelpVersion' => "\tMigruoja duomenų bazę iki versijos {v}.", + 'migHelpRollback' => "\tVykdo visas migracijas 'down' iki versijos 0.", + 'migHelpRefresh' => "\t\tIšinstaliuoja ir iš naujo įvykdo visas migracijas siekiant atšviežinti duomenų bazę.", + 'migHelpSeed' => "\tvykdo sėjiką, pavadintą [name].", + 'migCreate' => "\tSukuria naują migraciją vardu [name]", + 'nameMigration' => 'Įvardinkite migracijos failą', + 'badCreateName' => 'Turite nurodyti migracijos failo vardą.', + 'writeError' => 'Klaida bandant sukurti failą.', + 'migNumberError' => 'Migracijos numerį turi sudaryti trys skaitmenys, o jų sekoje neturi būti jokių tarpų.', - 'latest' => 'Running all new migrations...', - 'generalFault' => 'Migration failed!', - 'migInvalidVersion' => 'Invalid version number provided.', - 'toVersionPH' => 'Migrating to version %s...', - 'toVersion' => 'Migrating to current version...', - 'rollingBack' => 'Rolling back migrations to batch: ', - 'noneFound' => 'No migrations were found.', - 'on' => 'Migrated On: ', - 'migSeeder' => 'Seeder name', - 'migMissingSeeder' => 'You must provide a seeder name.', - 'removed' => 'Rolling back: ', - 'added' => 'Running: ', + 'latest' => 'Vykdomos visos migracijos...', + 'generalFault' => 'Migracijos nepavyko!', + 'migInvalidVersion' => 'Nurodytas neteisingas versijos numeris.', + 'toVersionPH' => 'Migruojama iki versijos %s...', + 'toVersion' => 'Migruojama iki dabartinės versijos...', + 'rollingBack' => 'Migracijos anuliuojamos iki paketo: ', + 'noneFound' => 'Nerasta migracijų.', + 'on' => 'Migruota: ', + 'migSeeder' => 'Sėjiko vardas', + 'migMissingSeeder' => 'Turite nurodyti sėjimo vardą.', + 'removed' => 'Anuliuojama: ', + 'added' => 'Vykdoma: ', - 'version' => 'Version', - 'filename' => 'Filename', + 'version' => 'Versija', + 'filename' => 'Failo pavadinimas', ]; diff --git a/Language/lt/Validation.php b/Language/lt/Validation.php index c9e656f8..423b7c7b 100644 --- a/Language/lt/Validation.php +++ b/Language/lt/Validation.php @@ -16,56 +16,56 @@ return [ // Core Messages - 'noRuleSets' => 'No rulesets specified in Validation configuration.', - 'ruleNotFound' => '{0} is not a valid rule.', - 'groupNotFound' => '{0} is not a validation rules group.', - 'groupNotArray' => '{0} rule group must be an array.', - 'invalidTemplate' => '{0} is not a valid Validation template.', + 'noRuleSets' => 'Validavimo konfigūracijoje nenurodyta jokių taisyklių.', + 'ruleNotFound' => '{0} nėra tinkama taisyklė.', + 'groupNotFound' => '{0} nėra validavimo taisyklių grupė.', + 'groupNotArray' => '{0} taisyklių grupė turi būti masyvas.', + 'invalidTemplate' => '{0} nėra tinkamas validavimo šablonas.', // Rule Messages - 'alpha' => 'The {field} field may only contain alphabetical characters.', - 'alpha_dash' => 'The {field} field may only contain alpha-numeric characters, underscores, and dashes.', - 'alpha_numeric' => 'The {field} field may only contain alpha-numeric characters.', - 'alpha_numeric_space' => 'The {field} field may only contain alpha-numeric characters and spaces.', - 'alpha_space' => 'The {field} field may only contain alphabetical characters and spaces.', - 'decimal' => 'The {field} field must contain a decimal number.', - 'differs' => 'The {field} field must differ from the {param} field.', - 'equals' => 'The {field} field must be exactly: {param}.', - 'exact_length' => 'The {field} field must be exactly {param} characters in length.', - 'greater_than' => 'The {field} field must contain a number greater than {param}.', - 'greater_than_equal_to' => 'The {field} field must contain a number greater than or equal to {param}.', - 'in_list' => 'The {field} field must be one of: {param}.', - 'integer' => 'The {field} field must contain an integer.', - 'is_natural' => 'The {field} field must only contain digits.', - 'is_natural_no_zero' => 'The {field} field must only contain digits and must be greater than zero.', - 'is_unique' => 'The {field} field must contain a unique value.', - 'less_than' => 'The {field} field must contain a number less than {param}.', - 'less_than_equal_to' => 'The {field} field must contain a number less than or equal to {param}.', - 'matches' => 'The {field} field does not match the {param} field.', - 'max_length' => 'The {field} field cannot exceed {param} characters in length.', - 'min_length' => 'The {field} field must be at least {param} characters in length.', - 'not_equals' => 'The {field} field cannot be: {param}.', - 'numeric' => 'The {field} field must contain only numbers.', - 'regex_match' => 'The {field} field is not in the correct format.', - 'required' => 'The {field} field is required.', - 'required_with' => 'The {field} field is required when {param} is present.', - 'required_without' => 'The {field} field is required when {param} is not present.', - 'timezone' => 'The {field} field must be a valid timezone.', - 'valid_base64' => 'The {field} field must be a valid base64 string.', - 'valid_email' => 'The {field} field must contain a valid email address.', - 'valid_emails' => 'The {field} field must contain all valid email addresses.', - 'valid_ip' => 'The {field} field must contain a valid IP.', - 'valid_url' => 'The {field} field must contain a valid URL.', - 'valid_date' => 'The {field} field must contain a valid date.', + 'alpha' => 'Lauke {field} gali būti tik abėcėlės raidės.', + 'alpha_dash' => 'Lauke {field} gali būti tik raidės, skaičiai, brūkšneliai ir apatiniai brūkšneliai.', + 'alpha_numeric' => 'Lauke {field} gali būti tik raidės ir skaičiai.', + 'alpha_numeric_space' => 'Lauke {field} gali būti tik raidės, skaičiai ir tarpai.', + 'alpha_space' => 'Lauke {field} gali būti tik raidės ir tarpai.', + 'decimal' => 'Lauke {field} turi būti dešimtainis skaičius.', + 'differs' => 'Laukas {field} turi skirtis nuo {param} lauko.', + 'equals' => 'Laukas {field} turi tiksliai atitikti: {param}.', + 'exact_length' => 'Laukas {field} turi būti tiksliai {param} ženklų ilgio.', + 'greater_than' => 'Lauke {field} turi būti skaičius, didesnis nei {param}.', + 'greater_than_equal_to' => 'Lauke {field} turi būti skaičius, didesnis ar lygus {param}.', + 'in_list' => 'Lauko {field} reikšmė turi atitikti vieną iš: {param}.', + 'integer' => 'Lauke {field} gali būti tik sveikasis skaičius.', + 'is_natural' => 'Lauke {field} gali būti tik skaitmenys.', + 'is_natural_no_zero' => 'Lauke {field} gali būti tik skaitmenys, ir jo reikšmė turi būti didesnė nei nulis.', + 'is_unique' => 'Lauke {field} turi būti unikali reikšmė.', + 'less_than' => 'Lauke {field} turi būti skaičius, mažesnis už {param}.', + 'less_than_equal_to' => 'Lauke {field} turi būti skaičius, mažesnis ar lygus {param}.', + 'matches' => 'Laukas {field} neatitinka {param} lauko.', + 'max_length' => 'Laukas {field} negali būti ilgesnis, nei {param} ženklai/-ų.', + 'min_length' => 'Lauke {field} negali būti mažiau nei {param} ženklų.', + 'not_equals' => 'Lauko {field} reikšmė negali būti {param}.', + 'numeric' => 'Lauke {field} gali būti tik skaičiai.', + 'regex_match' => 'Laulas {field} yra neteisingo formato.', + 'required' => 'Laukas {field} yra privalomas.', + 'required_with' => 'Laukas {field} yra privalomas kai yra nustatytas {param}.', + 'required_without' => 'Laukas {field} yra privalomas kai nėra nustatytas {param}.', + 'timezone' => 'Laukas {field} turi atitikti egzistuojančią laiko zoną.', + 'valid_base64' => 'Lauke {field} turi būti validi base64 eilutė.', + 'valid_email' => 'Lauke {field} turi būti teisyklingas el. pašto adresas.', + 'valid_emails' => 'Lauke {field} visi el. pašto adresai turi būti teisyklingi.', + 'valid_ip' => 'Lauke {field} turi būti taisyklingas IP adresas.', + 'valid_url' => 'Lauke {field} turi būti taisyklingas URL.', + 'valid_date' => 'Lauke {field} turi būti taisyklinga data.', // Credit Cards - 'valid_cc_num' => '{field} does not appear to be a valid credit card number.', + 'valid_cc_num' => 'Nepanašu, kad lauke {field} būtų įrašytas taisyklingas kredito kortelės numeris.', // Files - 'uploaded' => '{field} is not a valid uploaded file.', - 'max_size' => '{field} is too large of a file.', - 'is_image' => '{field} is not a valid, uploaded image file.', - 'mime_in' => '{field} does not have a valid mime type.', - 'ext_in' => '{field} does not have a valid file extension.', - 'max_dims' => '{field} is either not an image, or it is too wide or tall.', + 'uploaded' => '{field} nėra realus įkeltas failas.', + 'max_size' => '{field} failas yra per didelis.', + 'is_image' => '{field} nėra taisyklingas įkeltas paveikslėlis.', + 'mime_in' => '{field} nėra taisyklingo mime tipo.', + 'ext_in' => '{field} neturi taisyklingo failo praplėtimo.', + 'max_dims' => '{field} nėra paveikslėlis, arba paveikslėlis yra per platus ar per aukštas.', ];