diff --git a/CHANGELOG.md b/CHANGELOG.md index caea41546..75fb58abd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Laravel Enso's Changelog +## 4.7.1 + +This is a patch release whose main purpose is to update localisation files. + +### Upgrade steps + +- update the Enso version to `4.7.1` in `config/enso/config.php` +- run `composer update` in the project's root +- publish the updated localisation assets with `php artisan vendor:publish --tag=enso-localisation --force` +- run `yarn`, `yarn upgrade && yarn` in `/client` to ensure you have the latest versions and patches are applied. If necessary, update your patches +- `php artisan enso:upgrade --before-migration` +- `php artisan migrate` +- `php artisan enso:upgrade` +- as per every release, delete any local, deprecated upgrades + ## 4.7.0 This aims to be the last minor release before upgrading to PHP 8 and includes many improvements, bug fixes and also several new features. @@ -839,10 +854,10 @@ To upgrade: #### if generating exports using the `data-export` package - the `ExportsExcel` contract has been updated to support generating multiple sheets: ```php - public function heading(): array + public function heading(): array ``` becomes - ```php + ```php public function heading(string $sheet): array ``` ```php @@ -880,15 +895,15 @@ To upgrade: 'entries' => 0, 'created_by' => $user->id, ]); - + (new ExcelExport($user, $dataExport, $exporter))->handle(); - + return $dataExport->download(); ``` - now, you may call the static `excel(...)` method on the `DataExport` model ```php $exporter = new MyExporter(); - + return DataExport::excel($exporter)->file->inline(); ``` - if running exports programmatically or from jobs, authenticate using the required user before running the export: @@ -913,7 +928,7 @@ The following Enso models use the `HasFile` trait: `Avatar`, `Brand`, `CarouselS - `attach` - `upload` - `folder` - + What this means is that you should load the file and chain/call the desired method on the file model: ```php $document->file->download(); @@ -937,14 +952,14 @@ The following Enso models use the `HasFile` trait: `Avatar`, `Brand`, `CarouselS ## 4.4.0 -The release further decouples ui packages and introduces automatic asset +The release further decouples ui packages and introduces automatic asset discovery and registration, better files organization to help in the future with -adding a new CSS framework as well as various other improvements. +adding a new CSS framework as well as various other improvements. This also means breaking changes, so please read through the entire changelog. ### Front-end -All packages which depend on the `ui` package have had their dependency versions updated. +All packages which depend on the `ui` package have had their dependency versions updated. Also, the `icons.js` files have been moved from the `bulma` folder one level up, since icons are css framework agnostic. @@ -1028,7 +1043,7 @@ a gravatar fetch, which speeds up tests #### charts - added `autoYMin()` helper - added support for gridlines -- switched `xAxisConfig` parameter order and made dataset optional; +- switched `xAxisConfig` parameter order and made dataset optional; - added `disableAutoRadius()` in bubble; added `datalabels` config setter - improved chart customization - added method return types and typed parameters @@ -1049,7 +1064,7 @@ a gravatar fetch, which speeds up tests by adding a `$localisation` variable with the desired value in your enum; #### forms -- the Form service now uses the `when` trait so actions may be chained conditionally +- the Form service now uses the `when` trait so actions may be chained conditionally #### io - fixed the variable name within the `BroadcastServiceProvider` @@ -1062,7 +1077,7 @@ by adding a `$localisation` variable with the desired value in your enum; #### control-panel - switched to using Laravel's Http instead of Guzzle -- refactored services & fixed invalid response edge case bug +- refactored services & fixed invalid response edge case bug #### helpers - small refactor in `FactoryResolver` @@ -1080,7 +1095,7 @@ by adding a `$localisation` variable with the desired value in your enum; - refines export done notification #### upgrade -- added pre-migration option for the upgrade command; upgrades that run pre-migration +- added pre-migration option for the upgrade command; upgrades that run pre-migration are also visible in the status report - refactored the `MigratesStructure` contract - fixed missing `Priority` column in the status report @@ -1090,16 +1105,16 @@ are also visible in the status report As this new release cleaned up the `@enso-ui/ui` package and simplified icon and route registration, a bit of cleanup is also required in the local project. -Also, a new `php artisan enso:upgrade --before-migration` command is available that +Also, a new `php artisan enso:upgrade --before-migration` command is available that is meant be used to run upgrade commands **before** the `php artisan migrate` command, -which should help with complex upgrade scenarios. +which should help with complex upgrade scenarios. To upgrade: - within `client/.env` the following entry must be added: - `VUE_APP_PROFILE=bulma` - The `.env` file must also be available during the build stage, - so take that into account if using CI flows. + The `.env` file must also be available during the build stage, + so take that into account if using CI flows. - the `@core` alias has been renamed to `@ui`, so update all usages, including - local resources (pages, components) - the `client/.eslintrc.js` file @@ -1137,10 +1152,10 @@ To upgrade: - `"php artisan enso:upgrade:status"` - the `data-import` package has been made optional, if you still require it, add it to: - `composer.json` : `"laravel-enso/data-import": "^5.0",` - - `package.json`: `"@enso-ui/data-import": "^3.0",` + - `package.json`: `"@enso-ui/data-import": "^3.0",` - the `tasks` package has been made optional, if you added it & still require it, add it to: - `composer.json` : `"laravel-enso/tasks": "^1.0",` - - `package.json`: `"@enso-ui/tasks": "^2.0",` + - `package.json`: `"@enso-ui/tasks": "^2.0",` - remove the following files as they're no longer required: - `client/src/js/store.js` - `client/src/js/router.js` @@ -1200,7 +1215,7 @@ The limitation for the factory naming convention is that if you have two models Also, note that starting with this release we're no longer doing a yarn legacy build (only modern) so please take a look at `package.json` & `babel.config.js` and update if necessary. To upgrade: -- within `composer.json` +- within `composer.json` - update the versions for the following `require` packages ``` "fruitcake/laravel-cors": "^2.0", @@ -1236,7 +1251,7 @@ Remember: - use namespaces - convert to classes - rename the 'seeds' folder to 'seeders' -- update models with factories and add the new trait `HasFactory` +- update models with factories and add the new trait `HasFactory` - update tests to - use the new factories - refactor around the deprecated json methods @@ -1255,7 +1270,7 @@ This release includes many improvements, bug fixes and a few new features. #### data-import - improved date params usage - added the missing `vuex` dependency -- added the functionality to cancel ongoing or stuck imports +- added the functionality to cancel ongoing or stuck imports #### date (new) @@ -1284,7 +1299,7 @@ The package creates the structure and includes the functionality for working wit #### tables - uses the new `enso-ui/date` - added the date-picker dependency -- added ability to conditionally render row actions +- added ability to conditionally render row actions #### typeahead - added search label property for the search button @@ -1352,7 +1367,7 @@ The package creates the structure and includes the functionality for working wit - adds region upgrade - adds DataImport Upgrade - added xss-sanitizer -- removed the `Upgrade` command from `AppServiceProvider`. +- removed the `Upgrade` command from `AppServiceProvider`. Upgrades are now entirely handled by the `laravel-enso/upgrade` package - refactored namespace for existing upgrades to work with the new package - purged old upgrade classes @@ -1391,12 +1406,12 @@ Upgrades are now entirely handled by the `laravel-enso/upgrade` package #### tables - added default sort for all table queries - added `notVisible` attribute for hiding specific columns by default -- fixed export bug for nested columns when values don't exist +- fixed export bug for nested columns when values don't exist - fixed count when using group by - fixed entries counting when exporting excel in non-Enso environments - fixed when multiple filters exist for a field -- added new feature that supports conditional table row actions -therefore being able to further customize which actions apply to each row +- added new feature that supports conditional table row actions +therefore being able to further customize which actions apply to each row #### upgrade - implemented auto discovery of local and package upgrade classes when placed in app/Upgrades or src/Upgrades @@ -1441,7 +1456,7 @@ therefore being able to further customize which actions apply to each row #### webshop - improved internet explorer warning -- fixed company address deletion bug +- fixed company address deletion bug - added toastr message when address cannot be deleted - update orderConfirmation.blade.php - added missing authorizations @@ -1503,12 +1518,12 @@ therefore being able to further customize which actions apply to each row To upgrade: - run `composer update` -- run `yarn`, `yarn upgrade && yarn` to ensure you have the latest package versions and patches are applied. +- run `yarn`, `yarn upgrade && yarn` to ensure you have the latest package versions and patches are applied. If necessary, update your patch files. - `php artisan migrate` - `composer dump-autoload` -- run `php artisan enso:upgrade` to execute the upgrades -(you may also run`php artisan enso:upgrade:status` to view the upgrades' statuses) +- run `php artisan enso:upgrade` to execute the upgrades +(you may also run`php artisan enso:upgrade:status` to view the upgrades' statuses) - make sure permissions are properly configured for each role and then save/refresh the roles configuration files - update the Enso version to `4.2.0` in `config/enso/config.php` - in `composer.json`, in the `scripts.post-update-cmd` section add the following scripts: diff --git a/client/yarn.lock b/client/yarn.lock index a92a2a0c8..7d425318c 100644 --- a/client/yarn.lock +++ b/client/yarn.lock @@ -9,25 +9,25 @@ dependencies: "@babel/highlight" "^7.12.13" -"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.13.15", "@babel/compat-data@^7.13.8", "@babel/compat-data@^7.14.0": +"@babel/compat-data@^7.13.11", "@babel/compat-data@^7.13.15", "@babel/compat-data@^7.14.0": version "7.14.0" resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.14.0.tgz#a901128bce2ad02565df95e6ecbf195cf9465919" integrity sha512-vu9V3uMM/1o5Hl5OekMUowo3FqXLJSw+s+66nt0fSWVWTtmosdzn45JHOB3cPtZoe6CTBDzvSw0RdOY85Q37+Q== "@babel/core@^7.11.0": - version "7.14.0" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.0.tgz#47299ff3ec8d111b493f1a9d04bf88c04e728d88" - integrity sha512-8YqpRig5NmIHlMLw09zMlPTvUVMILjqCOtVgu+TVNWEBvy9b5I3RRyhqnrV4hjgEK7n8P9OqvkWJAFmEL6Wwfw== + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.14.2.tgz#54e45334ffc0172048e5c93ded36461d3ad4c417" + integrity sha512-OgC1mON+l4U4B4wiohJlQNUU3H73mpTyYY3j/c8U9dr9UagGGSm+WFpzjy/YLdoyjiG++c1kIDgxCo/mLwQJeQ== dependencies: "@babel/code-frame" "^7.12.13" - "@babel/generator" "^7.14.0" + "@babel/generator" "^7.14.2" "@babel/helper-compilation-targets" "^7.13.16" - "@babel/helper-module-transforms" "^7.14.0" + "@babel/helper-module-transforms" "^7.14.2" "@babel/helpers" "^7.14.0" - "@babel/parser" "^7.14.0" + "@babel/parser" "^7.14.2" "@babel/template" "^7.12.13" - "@babel/traverse" "^7.14.0" - "@babel/types" "^7.14.0" + "@babel/traverse" "^7.14.2" + "@babel/types" "^7.14.2" convert-source-map "^1.7.0" debug "^4.1.0" gensync "^1.0.0-beta.2" @@ -35,12 +35,12 @@ semver "^6.3.0" source-map "^0.5.0" -"@babel/generator@^7.14.0": - version "7.14.1" - resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.1.tgz#1f99331babd65700183628da186f36f63d615c93" - integrity sha512-TMGhsXMXCP/O1WtQmZjpEYDhCYC9vFhayWZPJSZCGkPJgUqX0rF0wwtrYvnzVxIjcF80tkUertXVk5cwqi5cAQ== +"@babel/generator@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.14.2.tgz#d5773e8b557d421fd6ce0d5efa5fd7fc22567c30" + integrity sha512-OnADYbKrffDVai5qcpkMxQ7caomHOoEwjkouqnN2QhydAjowFAZcsdecFIRUBdb+ZcruwYE4ythYmF1UBZU5xQ== dependencies: - "@babel/types" "^7.14.1" + "@babel/types" "^7.14.2" jsesc "^2.5.1" source-map "^0.5.0" @@ -59,7 +59,7 @@ "@babel/helper-explode-assignable-expression" "^7.12.13" "@babel/types" "^7.12.13" -"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16", "@babel/helper-compilation-targets@^7.13.8", "@babel/helper-compilation-targets@^7.9.6": +"@babel/helper-compilation-targets@^7.13.0", "@babel/helper-compilation-targets@^7.13.16", "@babel/helper-compilation-targets@^7.9.6": version "7.13.16" resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.13.16.tgz#6e91dccf15e3f43e5556dffe32d860109887563c" integrity sha512-3gmkYIrpqsLlieFwjkGgLaSHmhnvlAYzZLlYVjlW+QwI+1zE17kGxuJGmIqDQdYp56XdmGeD+Bswx0UTyG18xA== @@ -69,13 +69,13 @@ browserslist "^4.14.5" semver "^6.3.0" -"@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.13.11", "@babel/helper-create-class-features-plugin@^7.14.0": - version "7.14.1" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.1.tgz#1fe11b376f3c41650ad9fedc665b0068722ea76c" - integrity sha512-r8rsUahG4ywm0QpGcCrLaUSOuNAISR3IZCg4Fx05Ozq31aCUrQsTLH6KPxy0N5ULoQ4Sn9qjNdGNtbPWAC6hYg== +"@babel/helper-create-class-features-plugin@^7.13.0", "@babel/helper-create-class-features-plugin@^7.14.0", "@babel/helper-create-class-features-plugin@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.14.2.tgz#4e455b0329af29c2d3ad254b5dd5aed34595385d" + integrity sha512-6YctwVsmlkchxfGUogvVrrhzyD3grFJyluj5JgDlQrwfMLJSt5tdAzFZfPf4H2Xoi5YLcQ6BxfJlaOBHuctyIw== dependencies: "@babel/helper-annotate-as-pure" "^7.12.13" - "@babel/helper-function-name" "^7.12.13" + "@babel/helper-function-name" "^7.14.2" "@babel/helper-member-expression-to-functions" "^7.13.12" "@babel/helper-optimise-call-expression" "^7.12.13" "@babel/helper-replace-supers" "^7.13.12" @@ -110,14 +110,14 @@ dependencies: "@babel/types" "^7.13.0" -"@babel/helper-function-name@^7.12.13": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.12.13.tgz#93ad656db3c3c2232559fd7b2c3dbdcbe0eb377a" - integrity sha512-TZvmPn0UOqmvi5G4vvw0qZTpVptGkB1GL61R6lKvrSdIxGm5Pky7Q3fpKiIkQCAtRCBUwB0PaThlx9vebCDSwA== +"@babel/helper-function-name@^7.12.13", "@babel/helper-function-name@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.14.2.tgz#397688b590760b6ef7725b5f0860c82427ebaac2" + integrity sha512-NYZlkZRydxw+YT56IlhIcS8PAhb+FEUiOzuhFTfqDyPmzAhRge6ua0dQYT/Uh0t/EDHq05/i+e5M2d4XvjgarQ== dependencies: "@babel/helper-get-function-arity" "^7.12.13" "@babel/template" "^7.12.13" - "@babel/types" "^7.12.13" + "@babel/types" "^7.14.2" "@babel/helper-get-function-arity@^7.12.13": version "7.12.13" @@ -148,10 +148,10 @@ dependencies: "@babel/types" "^7.13.12" -"@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.14.0": - version "7.14.0" - resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.0.tgz#8fcf78be220156f22633ee204ea81f73f826a8ad" - integrity sha512-L40t9bxIuGOfpIGA3HNkJhU9qYrf4y5A5LUSw7rGMSn+pcG8dfJ0g6Zval6YJGd2nEjI7oP00fRdnhLKndx6bw== +"@babel/helper-module-transforms@^7.13.0", "@babel/helper-module-transforms@^7.14.0", "@babel/helper-module-transforms@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.14.2.tgz#ac1cc30ee47b945e3e0c4db12fa0c5389509dfe5" + integrity sha512-OznJUda/soKXv0XhpvzGWDnml4Qnwp16GN+D/kZIdLsWoHj05kyu8Rm5kXmMef+rVJZ0+4pSGLkeixdqNUATDA== dependencies: "@babel/helper-module-imports" "^7.13.12" "@babel/helper-replace-supers" "^7.13.12" @@ -159,8 +159,8 @@ "@babel/helper-split-export-declaration" "^7.12.13" "@babel/helper-validator-identifier" "^7.14.0" "@babel/template" "^7.12.13" - "@babel/traverse" "^7.14.0" - "@babel/types" "^7.14.0" + "@babel/traverse" "^7.14.2" + "@babel/types" "^7.14.2" "@babel/helper-optimise-call-expression@^7.12.13": version "7.12.13" @@ -183,7 +183,7 @@ "@babel/helper-wrap-function" "^7.13.0" "@babel/types" "^7.13.0" -"@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.0", "@babel/helper-replace-supers@^7.13.12": +"@babel/helper-replace-supers@^7.12.13", "@babel/helper-replace-supers@^7.13.12": version "7.13.12" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.13.12.tgz#6442f4c1ad912502481a564a7386de0c77ff3804" integrity sha512-Gz1eiX+4yDO8mT+heB94aLVNCL+rbuT2xy4YfyNqu8F+OI6vMvJK891qGBTqL9Uc8wxEvRW92Id6G7sDen3fFw== @@ -252,10 +252,10 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.12.13", "@babel/parser@^7.14.0", "@babel/parser@^7.7.0": - version "7.14.1" - resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.1.tgz#1bd644b5db3f5797c4479d89ec1817fe02b84c47" - integrity sha512-muUGEKu8E/ftMTPlNp+mc6zL3E9zKWmF5sDHZ5MSsoTP9Wyz64AhEf9kD08xYJ7w6Hdcu8H550ircnPyWSIF0Q== +"@babel/parser@^7.12.13", "@babel/parser@^7.14.2", "@babel/parser@^7.7.0": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.14.2.tgz#0c1680aa44ad4605b16cbdcc5c341a61bde9c746" + integrity sha512-IoVDIHpsgE/fu7eXBeRWt8zLbDrSvD7H1gpomOkPpBoEN8KCruCqSDdqo8dddwQQrui30KSvQBaMUOJiuFu6QQ== "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@^7.13.12": version "7.13.12" @@ -266,10 +266,10 @@ "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" "@babel/plugin-proposal-optional-chaining" "^7.13.12" -"@babel/plugin-proposal-async-generator-functions@^7.13.15": - version "7.13.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.13.15.tgz#80e549df273a3b3050431b148c892491df1bcc5b" - integrity sha512-VapibkWzFeoa6ubXy/NgV5U2U4MVnUlvnx6wo1XhlsaTrLYWE0UFpDQsVrmn22q5CzeloqJ8gEMHSKxuee6ZdA== +"@babel/plugin-proposal-async-generator-functions@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.14.2.tgz#3a2085abbf5d5f962d480dbc81347385ed62eb1e" + integrity sha512-b1AM4F6fwck4N8ItZ/AtC4FP/cqZqmKRQ4FaTDutwSYyjuhtvsGEMLK4N/ztV/ImP40BjIDyMgBQAeAMsQYVFQ== dependencies: "@babel/helper-plugin-utils" "^7.13.0" "@babel/helper-remap-async-to-generator" "^7.13.0" @@ -292,85 +292,85 @@ "@babel/plugin-syntax-class-static-block" "^7.12.13" "@babel/plugin-proposal-decorators@^7.8.3": - version "7.13.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.13.15.tgz#e91ccfef2dc24dd5bd5dcc9fc9e2557c684ecfb8" - integrity sha512-ibAMAqUm97yzi+LPgdr5Nqb9CMkeieGHvwPg1ywSGjZrZHQEGqE01HmOio8kxRpA/+VtOHouIVy2FMpBbtltjA== + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.14.2.tgz#e68c3c5e4a6a08834456568256fc3e71b93590cf" + integrity sha512-LauAqDd/VjQDtae58QgBcEOE42NNP+jB2OE+XeC3KBI/E+BhhRjtr5viCIrj1hmu1YvrguLipIPRJZmS5yUcFw== dependencies: - "@babel/helper-create-class-features-plugin" "^7.13.11" + "@babel/helper-create-class-features-plugin" "^7.14.2" "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-decorators" "^7.12.13" -"@babel/plugin-proposal-dynamic-import@^7.13.8": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.13.8.tgz#876a1f6966e1dec332e8c9451afda3bebcdf2e1d" - integrity sha512-ONWKj0H6+wIRCkZi9zSbZtE/r73uOhMVHh256ys0UzfM7I3d4n+spZNWjOnJv2gzopumP2Wxi186vI8N0Y2JyQ== +"@babel/plugin-proposal-dynamic-import@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.14.2.tgz#01ebabd7c381cff231fa43e302939a9de5be9d9f" + integrity sha512-oxVQZIWFh91vuNEMKltqNsKLFWkOIyJc95k2Gv9lWVyDfPUQGSSlbDEgWuJUU1afGE9WwlzpucMZ3yDRHIItkA== dependencies: "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-dynamic-import" "^7.8.3" -"@babel/plugin-proposal-export-namespace-from@^7.12.13": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.12.13.tgz#393be47a4acd03fa2af6e3cde9b06e33de1b446d" - integrity sha512-INAgtFo4OnLN3Y/j0VwAgw3HDXcDtX+C/erMvWzuV9v71r7urb6iyMXu7eM9IgLr1ElLlOkaHjJ0SbCmdOQ3Iw== +"@babel/plugin-proposal-export-namespace-from@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.14.2.tgz#62542f94aa9ce8f6dba79eec698af22112253791" + integrity sha512-sRxW3z3Zp3pFfLAgVEvzTFutTXax837oOatUIvSG9o5gRj9mKwm3br1Se5f4QalTQs9x4AzlA/HrCWbQIHASUQ== dependencies: - "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-export-namespace-from" "^7.8.3" -"@babel/plugin-proposal-json-strings@^7.13.8": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.13.8.tgz#bf1fb362547075afda3634ed31571c5901afef7b" - integrity sha512-w4zOPKUFPX1mgvTmL/fcEqy34hrQ1CRcGxdphBc6snDnnqJ47EZDIyop6IwXzAC8G916hsIuXB2ZMBCExC5k7Q== +"@babel/plugin-proposal-json-strings@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.14.2.tgz#830b4e2426a782e8b2878fbfe2cba85b70cbf98c" + integrity sha512-w2DtsfXBBJddJacXMBhElGEYqCZQqN99Se1qeYn8DVLB33owlrlLftIbMzn5nz1OITfDVknXF433tBrLEAOEjA== dependencies: "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-json-strings" "^7.8.3" -"@babel/plugin-proposal-logical-assignment-operators@^7.13.8": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.13.8.tgz#93fa78d63857c40ce3c8c3315220fd00bfbb4e1a" - integrity sha512-aul6znYB4N4HGweImqKn59Su9RS8lbUIqxtXTOcAGtNIDczoEFv+l1EhmX8rUBp3G1jMjKJm8m0jXVp63ZpS4A== +"@babel/plugin-proposal-logical-assignment-operators@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.14.2.tgz#222348c080a1678e0e74ea63fe76f275882d1fd7" + integrity sha512-1JAZtUrqYyGsS7IDmFeaem+/LJqujfLZ2weLR9ugB0ufUPjzf8cguyVT1g5im7f7RXxuLq1xUxEzvm68uYRtGg== dependencies: "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" -"@babel/plugin-proposal-nullish-coalescing-operator@^7.13.8": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.13.8.tgz#3730a31dafd3c10d8ccd10648ed80a2ac5472ef3" - integrity sha512-iePlDPBn//UhxExyS9KyeYU7RM9WScAG+D3Hhno0PLJebAEpDZMocbDe64eqynhNAnwz/vZoL/q/QB2T1OH39A== +"@babel/plugin-proposal-nullish-coalescing-operator@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.14.2.tgz#425b11dc62fc26939a2ab42cbba680bdf5734546" + integrity sha512-ebR0zU9OvI2N4qiAC38KIAK75KItpIPTpAtd2r4OZmMFeKbKJpUFLYP2EuDut82+BmYi8sz42B+TfTptJ9iG5Q== dependencies: "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" -"@babel/plugin-proposal-numeric-separator@^7.12.13": - version "7.12.13" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.12.13.tgz#bd9da3188e787b5120b4f9d465a8261ce67ed1db" - integrity sha512-O1jFia9R8BUCl3ZGB7eitaAPu62TXJRHn7rh+ojNERCFyqRwJMTmhz+tJ+k0CwI6CLjX/ee4qW74FSqlq9I35w== +"@babel/plugin-proposal-numeric-separator@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.14.2.tgz#82b4cc06571143faf50626104b335dd71baa4f9e" + integrity sha512-DcTQY9syxu9BpU3Uo94fjCB3LN9/hgPS8oUL7KrSW3bA2ePrKZZPJcc5y0hoJAM9dft3pGfErtEUvxXQcfLxUg== dependencies: - "@babel/helper-plugin-utils" "^7.12.13" + "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-numeric-separator" "^7.10.4" -"@babel/plugin-proposal-object-rest-spread@^7.13.8": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.13.8.tgz#5d210a4d727d6ce3b18f9de82cc99a3964eed60a" - integrity sha512-DhB2EuB1Ih7S3/IRX5AFVgZ16k3EzfRbq97CxAVI1KSYcW+lexV8VZb7G7L8zuPVSdQMRn0kiBpf/Yzu9ZKH0g== +"@babel/plugin-proposal-object-rest-spread@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.14.2.tgz#e17d418f81cc103fedd4ce037e181c8056225abc" + integrity sha512-hBIQFxwZi8GIp934+nj5uV31mqclC1aYDhctDu5khTi9PCCUOczyy0b34W0oE9U/eJXiqQaKyVsmjeagOaSlbw== dependencies: - "@babel/compat-data" "^7.13.8" - "@babel/helper-compilation-targets" "^7.13.8" + "@babel/compat-data" "^7.14.0" + "@babel/helper-compilation-targets" "^7.13.16" "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-object-rest-spread" "^7.8.3" - "@babel/plugin-transform-parameters" "^7.13.0" + "@babel/plugin-transform-parameters" "^7.14.2" -"@babel/plugin-proposal-optional-catch-binding@^7.13.8": - version "7.13.8" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.13.8.tgz#3ad6bd5901506ea996fc31bdcf3ccfa2bed71107" - integrity sha512-0wS/4DUF1CuTmGo+NiaHfHcVSeSLj5S3e6RivPTg/2k3wOv3jO35tZ6/ZWsQhQMvdgI7CwphjQa/ccarLymHVA== +"@babel/plugin-proposal-optional-catch-binding@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.14.2.tgz#150d4e58e525b16a9a1431bd5326c4eed870d717" + integrity sha512-XtkJsmJtBaUbOxZsNk0Fvrv8eiqgneug0A6aqLFZ4TSkar2L5dSXWcnUKHgmjJt49pyB/6ZHvkr3dPgl9MOWRQ== dependencies: "@babel/helper-plugin-utils" "^7.13.0" "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" -"@babel/plugin-proposal-optional-chaining@^7.13.12": - version "7.13.12" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.13.12.tgz#ba9feb601d422e0adea6760c2bd6bbb7bfec4866" - integrity sha512-fcEdKOkIB7Tf4IxrgEVeFC4zeJSTr78no9wTdBuZZbqF64kzllU0ybo2zrzm7gUQfxGhBgq4E39oRs8Zx/RMYQ== +"@babel/plugin-proposal-optional-chaining@^7.13.12", "@babel/plugin-proposal-optional-chaining@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.14.2.tgz#df8171a8b9c43ebf4c1dabe6311b432d83e1b34e" + integrity sha512-qQByMRPwMZJainfig10BoaDldx/+VDtNcrA7qdNaEOAj6VXud+gfrkA8j4CRAU5HjnWREXqIpSpH30qZX1xivA== dependencies: "@babel/helper-plugin-utils" "^7.13.0" "@babel/helper-skip-transparent-expression-wrappers" "^7.12.1" @@ -537,23 +537,23 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-block-scoping@^7.14.1": - version "7.14.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.1.tgz#ac1b3a8e3d8cbb31efc6b9be2f74eb9823b74ab2" - integrity sha512-2mQXd0zBrwfp0O1moWIhPpEeTKDvxyHcnma3JATVP1l+CctWBuot6OJG8LQ4DnBj4ZZPSmlb/fm4mu47EOAnVA== +"@babel/plugin-transform-block-scoping@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.14.2.tgz#761cb12ab5a88d640ad4af4aa81f820e6b5fdf5c" + integrity sha512-neZZcP19NugZZqNwMTH+KoBjx5WyvESPSIOQb4JHpfd+zPfqcH65RMu5xJju5+6q/Y2VzYrleQTr+b6METyyxg== dependencies: "@babel/helper-plugin-utils" "^7.13.0" -"@babel/plugin-transform-classes@^7.13.0": - version "7.13.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.13.0.tgz#0265155075c42918bf4d3a4053134176ad9b533b" - integrity sha512-9BtHCPUARyVH1oXGcSJD3YpsqRLROJx5ZNP6tN5vnk17N0SVf9WCtf8Nuh1CFmgByKKAIMstitKduoCmsaDK5g== +"@babel/plugin-transform-classes@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.14.2.tgz#3f1196c5709f064c252ad056207d87b7aeb2d03d" + integrity sha512-7oafAVcucHquA/VZCsXv/gmuiHeYd64UJyyTYU+MPfNu0KeNlxw06IeENBO8bJjXVbolu+j1MM5aKQtH1OMCNg== dependencies: "@babel/helper-annotate-as-pure" "^7.12.13" - "@babel/helper-function-name" "^7.12.13" + "@babel/helper-function-name" "^7.14.2" "@babel/helper-optimise-call-expression" "^7.12.13" "@babel/helper-plugin-utils" "^7.13.0" - "@babel/helper-replace-supers" "^7.13.0" + "@babel/helper-replace-supers" "^7.13.12" "@babel/helper-split-export-declaration" "^7.12.13" globals "^11.1.0" @@ -623,12 +623,12 @@ dependencies: "@babel/helper-plugin-utils" "^7.12.13" -"@babel/plugin-transform-modules-amd@^7.14.0": - version "7.14.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.0.tgz#589494b5b290ff76cf7f59c798011f6d77026553" - integrity sha512-CF4c5LX4LQ03LebQxJ5JZes2OYjzBuk1TdiF7cG7d5dK4lAdw9NZmaxq5K/mouUdNeqwz3TNjnW6v01UqUNgpQ== +"@babel/plugin-transform-modules-amd@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.14.2.tgz#6622806fe1a7c07a1388444222ef9535f2ca17b0" + integrity sha512-hPC6XBswt8P3G2D1tSV2HzdKvkqOpmbyoy+g73JG0qlF/qx2y3KaMmXb1fLrpmWGLZYA0ojCvaHdzFWjlmV+Pw== dependencies: - "@babel/helper-module-transforms" "^7.14.0" + "@babel/helper-module-transforms" "^7.14.2" "@babel/helper-plugin-utils" "^7.13.0" babel-plugin-dynamic-import-node "^2.3.3" @@ -683,10 +683,10 @@ "@babel/helper-plugin-utils" "^7.12.13" "@babel/helper-replace-supers" "^7.12.13" -"@babel/plugin-transform-parameters@^7.13.0": - version "7.13.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.13.0.tgz#8fa7603e3097f9c0b7ca1a4821bc2fb52e9e5007" - integrity sha512-Jt8k/h/mIwE2JFEOb3lURoY5C85ETcYPnbuAJ96zRBzh1XHtQZfs62ChZ6EP22QlC8c7Xqr9q+e1SU5qttwwjw== +"@babel/plugin-transform-parameters@^7.14.2": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.14.2.tgz#e4290f72e0e9e831000d066427c4667098decc31" + integrity sha512-NxoVmA3APNCC1JdMXkdYXuQS+EMdqy0vIwyDHeKHiJKRxmp1qGSdb0JLEIoPRhkx6H/8Qi3RJ3uqOCYw8giy9A== dependencies: "@babel/helper-plugin-utils" "^7.13.0" @@ -712,9 +712,9 @@ "@babel/helper-plugin-utils" "^7.12.13" "@babel/plugin-transform-runtime@^7.11.0": - version "7.13.15" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.13.15.tgz#2eddf585dd066b84102517e10a577f24f76a9cd7" - integrity sha512-d+ezl76gx6Jal08XngJUkXM4lFXK/5Ikl9Mh4HKDxSfGJXmZ9xG64XT2oivBzfxb/eQ62VfvoMkaCZUKJMVrBA== + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.14.2.tgz#4e24389bd680dd94ea1b871465d00112ae974425" + integrity sha512-LyA2AiPkaYzI7G5e2YI4NCasTfFe7mZvlupNprDOB7CdNUHb2DQC4uV6oeZ0396gOcicUzUCh0MShL6wiUgk+Q== dependencies: "@babel/helper-module-imports" "^7.13.12" "@babel/helper-plugin-utils" "^7.13.0" @@ -775,27 +775,27 @@ "@babel/helper-plugin-utils" "^7.12.13" "@babel/preset-env@^7.11.0": - version "7.14.1" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.1.tgz#b55914e2e68885ea03f69600b2d3537e54574a93" - integrity sha512-0M4yL1l7V4l+j/UHvxcdvNfLB9pPtIooHTbEhgD/6UGyh8Hy3Bm1Mj0buzjDXATCSz3JFibVdnoJZCrlUCanrQ== + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.14.2.tgz#e80612965da73579c84ad2f963c2359c71524ed5" + integrity sha512-7dD7lVT8GMrE73v4lvDEb85cgcQhdES91BSD7jS/xjC6QY8PnRhux35ac+GCpbiRhp8crexBvZZqnaL6VrY8TQ== dependencies: "@babel/compat-data" "^7.14.0" "@babel/helper-compilation-targets" "^7.13.16" "@babel/helper-plugin-utils" "^7.13.0" "@babel/helper-validator-option" "^7.12.17" "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining" "^7.13.12" - "@babel/plugin-proposal-async-generator-functions" "^7.13.15" + "@babel/plugin-proposal-async-generator-functions" "^7.14.2" "@babel/plugin-proposal-class-properties" "^7.13.0" "@babel/plugin-proposal-class-static-block" "^7.13.11" - "@babel/plugin-proposal-dynamic-import" "^7.13.8" - "@babel/plugin-proposal-export-namespace-from" "^7.12.13" - "@babel/plugin-proposal-json-strings" "^7.13.8" - "@babel/plugin-proposal-logical-assignment-operators" "^7.13.8" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.13.8" - "@babel/plugin-proposal-numeric-separator" "^7.12.13" - "@babel/plugin-proposal-object-rest-spread" "^7.13.8" - "@babel/plugin-proposal-optional-catch-binding" "^7.13.8" - "@babel/plugin-proposal-optional-chaining" "^7.13.12" + "@babel/plugin-proposal-dynamic-import" "^7.14.2" + "@babel/plugin-proposal-export-namespace-from" "^7.14.2" + "@babel/plugin-proposal-json-strings" "^7.14.2" + "@babel/plugin-proposal-logical-assignment-operators" "^7.14.2" + "@babel/plugin-proposal-nullish-coalescing-operator" "^7.14.2" + "@babel/plugin-proposal-numeric-separator" "^7.14.2" + "@babel/plugin-proposal-object-rest-spread" "^7.14.2" + "@babel/plugin-proposal-optional-catch-binding" "^7.14.2" + "@babel/plugin-proposal-optional-chaining" "^7.14.2" "@babel/plugin-proposal-private-methods" "^7.13.0" "@babel/plugin-proposal-private-property-in-object" "^7.14.0" "@babel/plugin-proposal-unicode-property-regex" "^7.12.13" @@ -816,8 +816,8 @@ "@babel/plugin-transform-arrow-functions" "^7.13.0" "@babel/plugin-transform-async-to-generator" "^7.13.0" "@babel/plugin-transform-block-scoped-functions" "^7.12.13" - "@babel/plugin-transform-block-scoping" "^7.14.1" - "@babel/plugin-transform-classes" "^7.13.0" + "@babel/plugin-transform-block-scoping" "^7.14.2" + "@babel/plugin-transform-classes" "^7.14.2" "@babel/plugin-transform-computed-properties" "^7.13.0" "@babel/plugin-transform-destructuring" "^7.13.17" "@babel/plugin-transform-dotall-regex" "^7.12.13" @@ -827,14 +827,14 @@ "@babel/plugin-transform-function-name" "^7.12.13" "@babel/plugin-transform-literals" "^7.12.13" "@babel/plugin-transform-member-expression-literals" "^7.12.13" - "@babel/plugin-transform-modules-amd" "^7.14.0" + "@babel/plugin-transform-modules-amd" "^7.14.2" "@babel/plugin-transform-modules-commonjs" "^7.14.0" "@babel/plugin-transform-modules-systemjs" "^7.13.8" "@babel/plugin-transform-modules-umd" "^7.14.0" "@babel/plugin-transform-named-capturing-groups-regex" "^7.12.13" "@babel/plugin-transform-new-target" "^7.12.13" "@babel/plugin-transform-object-super" "^7.12.13" - "@babel/plugin-transform-parameters" "^7.13.0" + "@babel/plugin-transform-parameters" "^7.14.2" "@babel/plugin-transform-property-literals" "^7.12.13" "@babel/plugin-transform-regenerator" "^7.13.15" "@babel/plugin-transform-reserved-words" "^7.12.13" @@ -846,7 +846,7 @@ "@babel/plugin-transform-unicode-escapes" "^7.12.13" "@babel/plugin-transform-unicode-regex" "^7.12.13" "@babel/preset-modules" "^0.1.4" - "@babel/types" "^7.14.1" + "@babel/types" "^7.14.2" babel-plugin-polyfill-corejs2 "^0.2.0" babel-plugin-polyfill-corejs3 "^0.2.0" babel-plugin-polyfill-regenerator "^0.2.0" @@ -880,24 +880,24 @@ "@babel/parser" "^7.12.13" "@babel/types" "^7.12.13" -"@babel/traverse@^7.0.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.15", "@babel/traverse@^7.14.0", "@babel/traverse@^7.7.0": - version "7.14.0" - resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.0.tgz#cea0dc8ae7e2b1dec65f512f39f3483e8cc95aef" - integrity sha512-dZ/a371EE5XNhTHomvtuLTUyx6UEoJmYX+DT5zBCQN3McHemsuIaKKYqsc/fs26BEkHs/lBZy0J571LP5z9kQA== +"@babel/traverse@^7.0.0", "@babel/traverse@^7.13.0", "@babel/traverse@^7.13.15", "@babel/traverse@^7.14.0", "@babel/traverse@^7.14.2", "@babel/traverse@^7.7.0": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.14.2.tgz#9201a8d912723a831c2679c7ebbf2fe1416d765b" + integrity sha512-TsdRgvBFHMyHOOzcP9S6QU0QQtjxlRpEYOy3mcCO5RgmC305ki42aSAmfZEMSSYBla2oZ9BMqYlncBaKmD/7iA== dependencies: "@babel/code-frame" "^7.12.13" - "@babel/generator" "^7.14.0" - "@babel/helper-function-name" "^7.12.13" + "@babel/generator" "^7.14.2" + "@babel/helper-function-name" "^7.14.2" "@babel/helper-split-export-declaration" "^7.12.13" - "@babel/parser" "^7.14.0" - "@babel/types" "^7.14.0" + "@babel/parser" "^7.14.2" + "@babel/types" "^7.14.2" debug "^4.1.0" globals "^11.1.0" -"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.16", "@babel/types@^7.14.0", "@babel/types@^7.14.1", "@babel/types@^7.4.4", "@babel/types@^7.7.0": - version "7.14.1" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.1.tgz#095bd12f1c08ab63eff6e8f7745fa7c9cc15a9db" - integrity sha512-S13Qe85fzLs3gYRUnrpyeIrBJIMYv33qSTg1qoBwiG6nPKwUWAD9odSzWhEedpwOIzSEI6gbdQIWEMiCI42iBA== +"@babel/types@^7.0.0", "@babel/types@^7.12.1", "@babel/types@^7.12.13", "@babel/types@^7.13.0", "@babel/types@^7.13.12", "@babel/types@^7.13.16", "@babel/types@^7.14.0", "@babel/types@^7.14.2", "@babel/types@^7.4.4", "@babel/types@^7.7.0": + version "7.14.2" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.14.2.tgz#4208ae003107ef8a057ea8333e56eb64d2f6a2c3" + integrity sha512-SdjAG/3DikRHpUOjxZgnkbR11xUlyDMUFJdvnIgZEE16mqmY0BINMmc4//JMJglEmn6i7sq6p+mGrFWyZ98EEw== dependencies: "@babel/helper-validator-identifier" "^7.14.0" to-fast-properties "^2.0.0" @@ -2164,9 +2164,9 @@ integrity sha512-fZQQafSREFyuZcdWFAExYjBiCL7AUCdgsk80iO0q4yihYYdcIiH28CcuPTGFgLOCC8RlW49GSQxdHwZP+I7CNg== "@types/node@*": - version "15.0.2" - resolved "https://registry.yarnpkg.com/@types/node/-/node-15.0.2.tgz#51e9c0920d1b45936ea04341aa3e2e58d339fb67" - integrity sha512-p68+a+KoxpoB47015IeYZYRrdqMUcpbK8re/zpFB8Ld46LHC1lPEbp3EXgkEhAYEcPvjJF6ZO+869SQ0aH1dcA== + version "15.0.3" + resolved "https://registry.yarnpkg.com/@types/node/-/node-15.0.3.tgz#ee09fcaac513576474c327da5818d421b98db88a" + integrity sha512-/WbxFeBU+0F79z9RdEOXH4CsDga+ibi5M8uEYr91u3CkT/pdWcV8MCook+4wDPnZBexRdwWS+PiVZ2xJviAzcQ== "@types/normalize-package-data@^2.4.0": version "2.4.0" @@ -9140,9 +9140,9 @@ postcss-selector-parser@^3.0.0: uniq "^1.0.1" postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: - version "6.0.5" - resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.5.tgz#042d74e137db83e6f294712096cb413f5aa612c4" - integrity sha512-aFYPoYmXbZ1V6HZaSvat08M97A8HqO6Pjz+PiNpw/DhuRrC72XWAdp3hL6wusDCN31sSmcZyMGa2hZEuX+Xfhg== + version "6.0.6" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz#2c5bba8174ac2f6981ab631a42ab0ee54af332ea" + integrity sha512-9LXrvaaX3+mcv5xkg5kFwqSzSH1JIObIx51PrndZwlmznwXRfxMddDvo9gve3gVR8ZTKgoFDdWkbRFmEhT4PMg== dependencies: cssesc "^3.0.0" util-deprecate "^1.0.2" @@ -9910,9 +9910,9 @@ sass-loader@^8.0.0: semver "^6.3.0" sass@^1.22.12: - version "1.32.12" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.12.tgz#a2a47ad0f1c168222db5206444a30c12457abb9f" - integrity sha512-zmXn03k3hN0KaiVTjohgkg98C3UowhL1/VSGdj4/VAAiMKGQOE80PFPxFP2Kyq0OUskPKcY5lImkhBKEHlypJA== + version "1.32.13" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.32.13.tgz#8d29c849e625a415bce71609c7cf95e15f74ed00" + integrity sha512-dEgI9nShraqP7cXQH+lEXVf73WOPCse0QlFzSD8k+1TcOxCMwVXfQlr0jtoluZysQOyJGnfr21dLvYKDJq8HkA== dependencies: chokidar ">=3.0.0 <4.0.0" diff --git a/composer.lock b/composer.lock index d86b2a4cc..d78005cf1 100644 --- a/composer.lock +++ b/composer.lock @@ -3640,16 +3640,16 @@ }, { "name": "laravel-enso/localisation", - "version": "4.3.63", + "version": "4.3.65", "source": { "type": "git", "url": "https://github.com/laravel-enso/localisation.git", - "reference": "e0eea8f97fad0ef2bdff6f579dbb4976f26ce107" + "reference": "eac997eeb409f722ac5c62245e0589333fb91cc9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel-enso/localisation/zipball/e0eea8f97fad0ef2bdff6f579dbb4976f26ce107", - "reference": "e0eea8f97fad0ef2bdff6f579dbb4976f26ce107", + "url": "https://api.github.com/repos/laravel-enso/localisation/zipball/eac997eeb409f722ac5c62245e0589333fb91cc9", + "reference": "eac997eeb409f722ac5c62245e0589333fb91cc9", "shasum": "" }, "require": { @@ -3697,9 +3697,9 @@ ], "support": { "issues": "https://github.com/laravel-enso/localisation/issues", - "source": "https://github.com/laravel-enso/localisation/tree/4.3.63" + "source": "https://github.com/laravel-enso/localisation/tree/4.3.65" }, - "time": "2021-05-10T12:56:09+00:00" + "time": "2021-05-13T11:03:27+00:00" }, { "name": "laravel-enso/logs", @@ -4802,16 +4802,16 @@ }, { "name": "laravel/framework", - "version": "v8.40.0", + "version": "v8.41.0", "source": { "type": "git", "url": "https://github.com/laravel/framework.git", - "reference": "a654897ad7f97aea9d7ef292803939798c4a02a4" + "reference": "05417155d886df8710e55c84e12622b52d83c47c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/a654897ad7f97aea9d7ef292803939798c4a02a4", - "reference": "a654897ad7f97aea9d7ef292803939798c4a02a4", + "url": "https://api.github.com/repos/laravel/framework/zipball/05417155d886df8710e55c84e12622b52d83c47c", + "reference": "05417155d886df8710e55c84e12622b52d83c47c", "shasum": "" }, "require": { @@ -4919,7 +4919,7 @@ "phpunit/phpunit": "Required to use assertions and run tests (^8.5.8|^9.3.3).", "predis/predis": "Required to use the predis connector (^1.1.2).", "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).", - "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0).", + "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0|^5.0|^6.0).", "symfony/cache": "Required to PSR-6 cache bridge (^5.1.4).", "symfony/filesystem": "Required to enable support for relative symbolic links (^5.1.4).", "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0).", @@ -4966,7 +4966,7 @@ "issues": "https://github.com/laravel/framework/issues", "source": "https://github.com/laravel/framework" }, - "time": "2021-04-28T14:38:56+00:00" + "time": "2021-05-11T14:00:02+00:00" }, { "name": "laravel/horizon", @@ -5047,16 +5047,16 @@ }, { "name": "laravel/sanctum", - "version": "v2.10.0", + "version": "v2.11.0", "source": { "type": "git", "url": "https://github.com/laravel/sanctum.git", - "reference": "a08cfee365c6b6df3e91c8f43b92f7163ffc8a94" + "reference": "3ed8f60dafef026acc21733366a08746a7bd176e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/sanctum/zipball/a08cfee365c6b6df3e91c8f43b92f7163ffc8a94", - "reference": "a08cfee365c6b6df3e91c8f43b92f7163ffc8a94", + "url": "https://api.github.com/repos/laravel/sanctum/zipball/3ed8f60dafef026acc21733366a08746a7bd176e", + "reference": "3ed8f60dafef026acc21733366a08746a7bd176e", "shasum": "" }, "require": { @@ -5107,7 +5107,7 @@ "issues": "https://github.com/laravel/sanctum/issues", "source": "https://github.com/laravel/sanctum" }, - "time": "2021-04-20T16:20:46+00:00" + "time": "2021-05-11T21:03:57+00:00" }, { "name": "laravel/telescope", @@ -5370,16 +5370,16 @@ }, { "name": "league/commonmark", - "version": "1.6.1", + "version": "1.6.2", "source": { "type": "git", "url": "https://github.com/thephpleague/commonmark.git", - "reference": "2651c497f005de305c7ba3f232cbd87b8c00ee8c" + "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/2651c497f005de305c7ba3f232cbd87b8c00ee8c", - "reference": "2651c497f005de305c7ba3f232cbd87b8c00ee8c", + "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/7d70d2f19c84bcc16275ea47edabee24747352eb", + "reference": "7d70d2f19c84bcc16275ea47edabee24747352eb", "shasum": "" }, "require": { @@ -5467,7 +5467,7 @@ "type": "tidelift" } ], - "time": "2021-05-08T16:08:00+00:00" + "time": "2021-05-12T11:39:41+00:00" }, { "name": "league/flysystem", @@ -5780,16 +5780,16 @@ }, { "name": "nesbot/carbon", - "version": "2.47.0", + "version": "2.48.0", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "606262fd8888b75317ba9461825a24fc34001e1e" + "reference": "d3c447f21072766cddec3522f9468a5849a76147" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/606262fd8888b75317ba9461825a24fc34001e1e", - "reference": "606262fd8888b75317ba9461825a24fc34001e1e", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/d3c447f21072766cddec3522f9468a5849a76147", + "reference": "d3c447f21072766cddec3522f9468a5849a76147", "shasum": "" }, "require": { @@ -5869,7 +5869,7 @@ "type": "tidelift" } ], - "time": "2021-04-13T21:54:02+00:00" + "time": "2021-05-07T10:08:30+00:00" }, { "name": "nikic/php-parser", @@ -7733,16 +7733,16 @@ }, { "name": "symfony/console", - "version": "v5.2.7", + "version": "v5.2.8", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "90374b8ed059325b49a29b55b3f8bb4062c87629" + "reference": "864568fdc0208b3eba3638b6000b69d2386e6768" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/90374b8ed059325b49a29b55b3f8bb4062c87629", - "reference": "90374b8ed059325b49a29b55b3f8bb4062c87629", + "url": "https://api.github.com/repos/symfony/console/zipball/864568fdc0208b3eba3638b6000b69d2386e6768", + "reference": "864568fdc0208b3eba3638b6000b69d2386e6768", "shasum": "" }, "require": { @@ -7810,7 +7810,7 @@ "terminal" ], "support": { - "source": "https://github.com/symfony/console/tree/v5.2.7" + "source": "https://github.com/symfony/console/tree/v5.2.8" }, "funding": [ { @@ -7826,7 +7826,7 @@ "type": "tidelift" } ], - "time": "2021-04-19T14:07:32+00:00" + "time": "2021-05-11T15:45:21+00:00" }, { "name": "symfony/css-selector", @@ -7962,16 +7962,16 @@ }, { "name": "symfony/error-handler", - "version": "v5.2.7", + "version": "v5.2.8", "source": { "type": "git", "url": "https://github.com/symfony/error-handler.git", - "reference": "ea3ddbf67615e883ca7c33a4de61213789846782" + "reference": "1416bc16317a8188aabde251afef7618bf4687ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/error-handler/zipball/ea3ddbf67615e883ca7c33a4de61213789846782", - "reference": "ea3ddbf67615e883ca7c33a4de61213789846782", + "url": "https://api.github.com/repos/symfony/error-handler/zipball/1416bc16317a8188aabde251afef7618bf4687ac", + "reference": "1416bc16317a8188aabde251afef7618bf4687ac", "shasum": "" }, "require": { @@ -8011,7 +8011,7 @@ "description": "Provides tools to manage errors and ease debugging PHP code", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/error-handler/tree/v5.2.7" + "source": "https://github.com/symfony/error-handler/tree/v5.2.8" }, "funding": [ { @@ -8027,7 +8027,7 @@ "type": "tidelift" } ], - "time": "2021-04-07T15:57:33+00:00" + "time": "2021-05-07T13:42:21+00:00" }, { "name": "symfony/event-dispatcher", @@ -8195,16 +8195,16 @@ }, { "name": "symfony/finder", - "version": "v5.2.4", + "version": "v5.2.8", "source": { "type": "git", "url": "https://github.com/symfony/finder.git", - "reference": "0d639a0943822626290d169965804f79400e6a04" + "reference": "eccb8be70d7a6a2230d05f6ecede40f3fdd9e252" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/0d639a0943822626290d169965804f79400e6a04", - "reference": "0d639a0943822626290d169965804f79400e6a04", + "url": "https://api.github.com/repos/symfony/finder/zipball/eccb8be70d7a6a2230d05f6ecede40f3fdd9e252", + "reference": "eccb8be70d7a6a2230d05f6ecede40f3fdd9e252", "shasum": "" }, "require": { @@ -8236,7 +8236,7 @@ "description": "Finds files and directories via an intuitive fluent interface", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/finder/tree/v5.2.4" + "source": "https://github.com/symfony/finder/tree/v5.2.8" }, "funding": [ { @@ -8252,20 +8252,20 @@ "type": "tidelift" } ], - "time": "2021-02-15T18:55:04+00:00" + "time": "2021-05-10T14:39:23+00:00" }, { "name": "symfony/http-client", - "version": "v5.2.7", + "version": "v5.2.8", "source": { "type": "git", "url": "https://github.com/symfony/http-client.git", - "reference": "cdaf3df771d3ea9b05696c9e91281ffd056aff66" + "reference": "a2baf9c3c5b25e04740cece0e429f0a0013002f2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-client/zipball/cdaf3df771d3ea9b05696c9e91281ffd056aff66", - "reference": "cdaf3df771d3ea9b05696c9e91281ffd056aff66", + "url": "https://api.github.com/repos/symfony/http-client/zipball/a2baf9c3c5b25e04740cece0e429f0a0013002f2", + "reference": "a2baf9c3c5b25e04740cece0e429f0a0013002f2", "shasum": "" }, "require": { @@ -8322,7 +8322,7 @@ "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-client/tree/v5.2.7" + "source": "https://github.com/symfony/http-client/tree/v5.2.8" }, "funding": [ { @@ -8338,7 +8338,7 @@ "type": "tidelift" } ], - "time": "2021-04-07T16:27:53+00:00" + "time": "2021-05-10T14:39:23+00:00" }, { "name": "symfony/http-client-contracts", @@ -8420,16 +8420,16 @@ }, { "name": "symfony/http-foundation", - "version": "v5.2.7", + "version": "v5.2.8", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "a416487a73bb9c9d120e9ba3a60547f4a3fb7a1f" + "reference": "e8fbbab7c4a71592985019477532629cb2e142dc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/a416487a73bb9c9d120e9ba3a60547f4a3fb7a1f", - "reference": "a416487a73bb9c9d120e9ba3a60547f4a3fb7a1f", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e8fbbab7c4a71592985019477532629cb2e142dc", + "reference": "e8fbbab7c4a71592985019477532629cb2e142dc", "shasum": "" }, "require": { @@ -8473,7 +8473,7 @@ "description": "Defines an object-oriented layer for the HTTP specification", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-foundation/tree/v5.2.7" + "source": "https://github.com/symfony/http-foundation/tree/v5.2.8" }, "funding": [ { @@ -8489,20 +8489,20 @@ "type": "tidelift" } ], - "time": "2021-05-01T13:46:24+00:00" + "time": "2021-05-07T13:41:16+00:00" }, { "name": "symfony/http-kernel", - "version": "v5.2.7", + "version": "v5.2.8", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "1e9f6879f070f718e0055fbac232a56f67b8b6bd" + "reference": "c3cb71ee7e2d3eae5fe1001f81780d6a49b37937" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/1e9f6879f070f718e0055fbac232a56f67b8b6bd", - "reference": "1e9f6879f070f718e0055fbac232a56f67b8b6bd", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/c3cb71ee7e2d3eae5fe1001f81780d6a49b37937", + "reference": "c3cb71ee7e2d3eae5fe1001f81780d6a49b37937", "shasum": "" }, "require": { @@ -8585,7 +8585,7 @@ "description": "Provides a structured process for converting a Request into a Response", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/http-kernel/tree/v5.2.7" + "source": "https://github.com/symfony/http-kernel/tree/v5.2.8" }, "funding": [ { @@ -8601,7 +8601,7 @@ "type": "tidelift" } ], - "time": "2021-05-01T14:53:15+00:00" + "time": "2021-05-12T13:27:53+00:00" }, { "name": "symfony/mime", @@ -9795,16 +9795,16 @@ }, { "name": "symfony/string", - "version": "v5.2.6", + "version": "v5.2.8", "source": { "type": "git", "url": "https://github.com/symfony/string.git", - "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572" + "reference": "01b35eb64cac8467c3f94cd0ce2d0d376bb7d1db" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/string/zipball/ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572", - "reference": "ad0bd91bce2054103f5eaa18ebeba8d3bc2a0572", + "url": "https://api.github.com/repos/symfony/string/zipball/01b35eb64cac8467c3f94cd0ce2d0d376bb7d1db", + "reference": "01b35eb64cac8467c3f94cd0ce2d0d376bb7d1db", "shasum": "" }, "require": { @@ -9858,7 +9858,7 @@ "utf8" ], "support": { - "source": "https://github.com/symfony/string/tree/v5.2.6" + "source": "https://github.com/symfony/string/tree/v5.2.8" }, "funding": [ { @@ -9874,20 +9874,20 @@ "type": "tidelift" } ], - "time": "2021-03-17T17:12:15+00:00" + "time": "2021-05-10T14:56:10+00:00" }, { "name": "symfony/translation", - "version": "v5.2.7", + "version": "v5.2.8", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "e37ece5242564bceea54d709eafc948377ec9749" + "reference": "445caa74a5986f1cc9dd91a2975ef68fa7cb2068" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/e37ece5242564bceea54d709eafc948377ec9749", - "reference": "e37ece5242564bceea54d709eafc948377ec9749", + "url": "https://api.github.com/repos/symfony/translation/zipball/445caa74a5986f1cc9dd91a2975ef68fa7cb2068", + "reference": "445caa74a5986f1cc9dd91a2975ef68fa7cb2068", "shasum": "" }, "require": { @@ -9951,7 +9951,7 @@ "description": "Provides tools to internationalize your application", "homepage": "https://symfony.com", "support": { - "source": "https://github.com/symfony/translation/tree/v5.2.7" + "source": "https://github.com/symfony/translation/tree/v5.2.8" }, "funding": [ { @@ -9967,7 +9967,7 @@ "type": "tidelift" } ], - "time": "2021-04-01T08:15:21+00:00" + "time": "2021-05-07T13:41:16+00:00" }, { "name": "symfony/translation-contracts", @@ -10049,16 +10049,16 @@ }, { "name": "symfony/var-dumper", - "version": "v5.2.7", + "version": "v5.2.8", "source": { "type": "git", "url": "https://github.com/symfony/var-dumper.git", - "reference": "27cb9f7cfa3853c736425c7233a8f68814b19636" + "reference": "d693200a73fae179d27f8f1b16b4faf3e8569eba" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/27cb9f7cfa3853c736425c7233a8f68814b19636", - "reference": "27cb9f7cfa3853c736425c7233a8f68814b19636", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/d693200a73fae179d27f8f1b16b4faf3e8569eba", + "reference": "d693200a73fae179d27f8f1b16b4faf3e8569eba", "shasum": "" }, "require": { @@ -10117,7 +10117,7 @@ "dump" ], "support": { - "source": "https://github.com/symfony/var-dumper/tree/v5.2.7" + "source": "https://github.com/symfony/var-dumper/tree/v5.2.8" }, "funding": [ { @@ -10133,7 +10133,7 @@ "type": "tidelift" } ], - "time": "2021-04-19T14:07:32+00:00" + "time": "2021-05-07T13:42:21+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", diff --git a/config/enso/config.php b/config/enso/config.php index 5167b6706..417e78727 100644 --- a/config/enso/config.php +++ b/config/enso/config.php @@ -1,7 +1,7 @@ '4.7.0', + 'version' => '4.7.1', 'ownerCompanyId' => (int) env('OWNER_COMPANY_ID', 1), 'showQuote' => (bool) env('SHOW_QUOTE', true), 'defaultRole' => 'admin', diff --git a/resources/lang/ar.json b/resources/lang/ar.json index 289bf03de..f919bdf8b 100644 --- a/resources/lang/ar.json +++ b/resources/lang/ar.json @@ -1 +1 @@ -{":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/resources/lang/ar/auth.php b/resources/lang/ar/auth.php index 79b927b9f..7b62c9a24 100644 --- a/resources/lang/ar/auth.php +++ b/resources/lang/ar/auth.php @@ -1,17 +1,18 @@ 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.', +return [ + 'failed' => 'بيانات الاعتماد هذه غير متطابقة مع البيانات المسجلة لدينا.', + 'password' => 'كلمة المرور المستخدمة غير صحيحة.', 'throttle' => 'عدد كبير جدا من محاولات الدخول. يرجى المحاولة مرة أخرى بعد :seconds ثانية.', ]; diff --git a/resources/lang/ar/pagination.php b/resources/lang/ar/pagination.php index 2e204a684..9244cf030 100644 --- a/resources/lang/ar/pagination.php +++ b/resources/lang/ar/pagination.php @@ -1,17 +1,17 @@ 'التالي »', 'previous' => '« السابق', - 'next' => 'التالي »', ]; diff --git a/resources/lang/ar/passwords.php b/resources/lang/ar/passwords.php index 383b69499..8af406436 100644 --- a/resources/lang/ar/passwords.php +++ b/resources/lang/ar/passwords.php @@ -1,21 +1,21 @@ 'يجب أن لا يقل طول كلمة المرور عن ستة أحرف، كما يجب أن تتطابق مع حقل التأكيد', - 'reset' => 'تمت إعادة تعيين كلمة المرور!', - 'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني!', + 'reset' => 'تمت إعادة تعيين كلمة المرور!', + 'sent' => 'تم إرسال تفاصيل استعادة كلمة المرور الخاصة بك إلى بريدك الإلكتروني!', 'throttled' => 'الرجاء الانتظار قبل إعادة المحاولة.', - 'token' => 'رمز استعادة كلمة المرور الذي أدخلته غير صحيح.', - 'user' => 'لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني.', + 'token' => 'رمز استعادة كلمة المرور الذي أدخلته غير صحيح.', + 'user' => 'لم يتم العثور على أيّ حسابٍ بهذا العنوان الإلكتروني.', ]; diff --git a/resources/lang/ar/validation-inline.php b/resources/lang/ar/validation-inline.php new file mode 100644 index 000000000..76829016e --- /dev/null +++ b/resources/lang/ar/validation-inline.php @@ -0,0 +1,131 @@ + 'يجب قبول هذا الحقل.', + 'active_url' => 'لا يُمثّل رابطًا صحيحًا.', + 'after' => 'يجب أن يكون تاريخًا لاحقًا للتاريخ :date.', + 'after_or_equal' => 'يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.', + 'alpha' => 'يجب أن لا يحتوي سوى على حروف.', + 'alpha_dash' => 'يجب أن لا يحتوي سوى على حروف، أرقام ومطّات.', + 'alpha_num' => 'يجب أن يحتوي على حروفٍ وأرقامٍ فقط.', + 'array' => 'يجب أن يكون مصفوفة.', + 'attached' => 'هذا الحقل تم إرفاقه بالفعل.', + 'before' => 'يجب أن يكون تاريخًا سابقًا للتاريخ :date.', + 'before_or_equal' => 'يجب أن يكون تاريخا سابقا أو مطابقا للتاريخ :date.', + 'between' => [ + 'array' => 'يجب أن يحتوي على عدد من العناصر بين :min و :max.', + 'file' => 'يجب أن يكون حجم الملف بين :min و :max كيلوبايت.', + 'numeric' => 'يجب أن تكون القيمة بين :min و :max.', + 'string' => 'يجب أن يكون عدد حروف النّص بين :min و :max.', + ], + 'boolean' => 'يجب أن تكون قيمة هذا الحقل إما true أو false .', + 'confirmed' => 'التأكيد غير متطابق.', + 'date' => 'هذا ليس تاريخًا صحيحًا.', + 'date_equals' => 'يجب أن يكون تاريخاً مطابقاً للتاريخ :date.', + 'date_format' => 'لا يتوافق مع الشكل :format.', + 'different' => 'يجب أن تكون القيمة مختلفة عن :other.', + 'digits' => 'يجب أن يحتوي على :digits رقمًا/أرقام.', + 'digits_between' => 'يجب أن يكون بين :min و :max رقمًا/أرقام .', + 'dimensions' => 'الصورة تحتوي على أبعاد غير صالحة.', + 'distinct' => 'هذا الحقل يحمل قيمة مُكرّرة.', + 'email' => 'يجب أن يكون عنوان بريد إلكتروني صحيح البُنية.', + 'ends_with' => 'يجب أن ينتهي بأحد القيم التالية: :values', + 'exists' => 'القيمة المحددة غير صالحة.', + 'file' => 'المحتوى يجب أن يكون ملفا.', + 'filled' => 'هذا الحقل إجباري.', + 'gt' => [ + 'array' => 'يجب أن يحتوي على أكثر من :value عناصر/عنصر.', + 'file' => 'يجب أن يكون حجم الملف أكبر من :value كيلوبايت.', + 'numeric' => 'يجب أن تكون القيمة أكبر من :value.', + 'string' => 'يجب أن يكون طول النّص أكثر من :value حروفٍ/حرفًا.', + ], + 'gte' => [ + 'array' => 'يجب أن يحتوي على الأقل على :value عُنصرًا/عناصر.', + 'file' => 'يجب أن يكون حجم الملف على الأقل :value كيلوبايت.', + 'numeric' => 'يجب أن تكون القيمة مساوية أو أكبر من :value.', + 'string' => 'يجب أن يكون طول النص على الأقل :value حروفٍ/حرفًا.', + ], + 'image' => 'يجب أن تكون صورةً.', + 'in' => 'القيمة المختارة غير صالحة.', + 'in_array' => 'هذه القيمة غير موجودة في :other.', + 'integer' => 'يجب أن يكون عددًا صحيحًا.', + 'ip' => 'يجب أن يكون عنوان IP صحيحًا.', + 'ipv4' => 'يجب أن يكون عنوان IPv4 صحيحًا.', + 'ipv6' => 'يجب أن يكون عنوان IPv6 صحيحًا.', + 'json' => 'يجب أن يكون نصًا من نوع JSON.', + 'lt' => [ + 'array' => 'يجب أن يحتوي على أقل من :value عناصر/عنصر.', + 'file' => 'يجب أن يكون حجم الملف أصغر من :value كيلوبايت.', + 'numeric' => 'يجب أن تكون القيمة أصغر من :value.', + 'string' => 'يجب أن يكون طول النّص أقل من :value حروفٍ/حرفًا.', + ], + 'lte' => [ + 'array' => 'يجب أن لا يحتوي على أكثر من :value عناصر/عنصر.', + 'file' => 'يجب أن لا يتجاوز حجم الملف :value كيلوبايت.', + 'numeric' => 'يجب أن تكون القيمة مساوية أو أصغر من :value.', + 'string' => 'يجب أن لا يتجاوز طول النّص :value حروفٍ/حرفًا.', + ], + 'max' => [ + 'array' => 'يجب أن لا يحتوي على أكثر من :max عناصر/عنصر.', + 'file' => 'يجب أن لا يتجاوز حجم الملف :max كيلوبايت.', + 'numeric' => 'يجب أن تكون القيمة مساوية أو أصغر من :max.', + 'string' => 'يجب أن لا يتجاوز طول النّص :max حروفٍ/حرفًا.', + ], + 'mimes' => 'يجب أن يكون ملفًا من نوع : :values.', + 'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.', + 'min' => [ + 'array' => 'يجب أن يحتوي على الأقل على :min عُنصرًا/عناصر.', + 'file' => 'يجب أن يكون حجم الملف على الأقل :min كيلوبايت.', + 'numeric' => 'يجب أن تكون القيمة مساوية أو أكبر من :min.', + 'string' => 'يجب أن يكون طول النص على الأقل :min حروفٍ/حرفًا.', + ], + 'multiple_of' => 'يجب أن تكون القيمة من مضاعفات :value', + 'not_in' => 'العنصر المحدد غير صالح.', + 'not_regex' => 'صيغة غير صالحة.', + 'numeric' => 'يجب أن يكون رقمًا.', + 'password' => 'كلمة المرور غير صحيحة.', + 'present' => 'يجب توفر هذا الحقل.', + 'prohibited' => 'هذا الحقل محظور.', + 'prohibited_if' => 'هذا الحقل محظور إذا كان :other هو :value.', + 'prohibited_unless' => 'هذا الحقل محظور ما لم يكن :other ضمن :values.', + 'regex' => 'الصيغة غير صحيحة.', + 'relatable' => 'هذا الحقل قد لا يكون مرتبطا بالمصدر المحدد.', + 'required' => 'هذا الحقل مطلوب.', + 'required_if' => 'هذا الحقل مطلوب في حال ما إذا كان :other يساوي :value.', + 'required_unless' => 'هذا الحقل مطلوب في حال ما لم يكن :other يساوي :values.', + 'required_with' => 'هذا الحقل مطلوب إذا توفّر :values.', + 'required_with_all' => 'هذا الحقل مطلوب إذا توفّر :values.', + 'required_without' => 'هذا الحقل مطلوب إذا لم يتوفّر :values.', + 'required_without_all' => 'هذا الحقل مطلوب إذا لم يتوفّر :values.', + 'same' => 'يجب أن يتطابق هذا الحقل مع :other.', + 'size' => [ + 'array' => 'يجب أن يحتوي على :size عنصرٍ/عناصر بالضبط.', + 'file' => 'يجب أن يكون حجم الملف :size كيلوبايت.', + 'numeric' => 'يجب أن تكون القيمة مساوية لـ :size.', + 'string' => 'يجب أن يحتوي النص على :size حروفٍ/حرفًا بالضبط.', + ], + 'starts_with' => 'يجب أن يبدأ بأحد القيم التالية: :values', + 'string' => 'يجب أن يكون نصًا.', + 'timezone' => 'يجب أن يكون نطاقًا زمنيًا صحيحًا.', + 'unique' => 'هذه القيمة مُستخدمة من قبل.', + 'uploaded' => 'فشل في عملية التحميل.', + 'url' => 'الصيغة غير صحيحة.', + 'uuid' => 'يجب أن يكون بصيغة UUID سليمة.', + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + 'attributes' => [], +]; diff --git a/resources/lang/ar/validation.php b/resources/lang/ar/validation.php index 11c36a543..abca3daee 100644 --- a/resources/lang/ar/validation.php +++ b/resources/lang/ar/validation.php @@ -1,179 +1,161 @@ 'يجب قبول :attribute.', - 'active_url' => ':attribute لا يُمثّل رابطًا صحيحًا.', - 'after' => 'يجب على :attribute أن يكون تاريخًا لاحقًا للتاريخ :date.', - 'after_or_equal' => ':attribute يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.', - 'alpha' => 'يجب أن لا يحتوي :attribute سوى على حروف.', - 'alpha_dash' => 'يجب أن لا يحتوي :attribute سوى على حروف، أرقام ومطّات.', - 'alpha_num' => 'يجب أن يحتوي :attribute على حروفٍ وأرقامٍ فقط.', - 'array' => 'يجب أن يكون :attribute ًمصفوفة.', - 'before' => 'يجب على :attribute أن يكون تاريخًا سابقًا للتاريخ :date.', - 'before_or_equal' => ':attribute يجب أن يكون تاريخا سابقا أو مطابقا للتاريخ :date.', - 'between' => [ +return [ + 'accepted' => 'يجب قبول :attribute.', + 'active_url' => ':attribute لا يُمثّل رابطًا صحيحًا.', + 'after' => 'يجب على :attribute أن يكون تاريخًا لاحقًا للتاريخ :date.', + 'after_or_equal' => ':attribute يجب أن يكون تاريخاً لاحقاً أو مطابقاً للتاريخ :date.', + 'alpha' => 'يجب أن لا يحتوي :attribute سوى على حروف.', + 'alpha_dash' => 'يجب أن لا يحتوي :attribute سوى على حروف، أرقام ومطّات.', + 'alpha_num' => 'يجب أن يحتوي :attribute على حروفٍ وأرقامٍ فقط.', + 'array' => 'يجب أن يكون :attribute ًمصفوفة.', + 'attached' => ':attribute تم إرفاقه بالفعل.', + 'before' => 'يجب على :attribute أن يكون تاريخًا سابقًا للتاريخ :date.', + 'before_or_equal' => ':attribute يجب أن يكون تاريخا سابقا أو مطابقا للتاريخ :date.', + 'between' => [ + 'array' => 'يجب أن يحتوي :attribute على عدد من العناصر بين :min و :max.', + 'file' => 'يجب أن يكون حجم الملف :attribute بين :min و :max كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute بين :min و :max.', - 'file' => 'يجب أن يكون حجم الملف :attribute بين :min و :max كيلوبايت.', - 'string' => 'يجب أن يكون عدد حروف النّص :attribute بين :min و :max.', - 'array' => 'يجب أن يحتوي :attribute على عدد من العناصر بين :min و :max.', + 'string' => 'يجب أن يكون عدد حروف النّص :attribute بين :min و :max.', ], - 'boolean' => 'يجب أن تكون قيمة :attribute إما true أو false .', - 'confirmed' => 'حقل التأكيد غير مُطابق للحقل :attribute.', - 'date' => ':attribute ليس تاريخًا صحيحًا.', - 'date_equals' => 'يجب أن يكون :attribute مطابقاً للتاريخ :date.', - 'date_format' => 'لا يتوافق :attribute مع الشكل :format.', - 'different' => 'يجب أن يكون الحقلان :attribute و :other مُختلفين.', - 'digits' => 'يجب أن يحتوي :attribute على :digits رقمًا/أرقام.', - 'digits_between' => 'يجب أن يحتوي :attribute بين :min و :max رقمًا/أرقام .', - 'dimensions' => 'الـ :attribute يحتوي على أبعاد صورة غير صالحة.', - 'distinct' => 'للحقل :attribute قيمة مُكرّرة.', - 'email' => 'يجب أن يكون :attribute عنوان بريد إلكتروني صحيح البُنية.', - 'ends_with' => 'يجب أن ينتهي :attribute بأحد القيم التالية: :values', - 'exists' => 'القيمة المحددة :attribute غير موجودة.', - 'file' => 'الـ :attribute يجب أن يكون ملفا.', - 'filled' => ':attribute إجباري.', - 'gt' => [ + 'boolean' => 'يجب أن تكون قيمة :attribute إما true أو false .', + 'confirmed' => 'حقل التأكيد غير مُطابق للحقل :attribute.', + 'date' => ':attribute ليس تاريخًا صحيحًا.', + 'date_equals' => 'يجب أن يكون :attribute مطابقاً للتاريخ :date.', + 'date_format' => 'لا يتوافق :attribute مع الشكل :format.', + 'different' => 'يجب أن يكون الحقلان :attribute و :other مُختلفين.', + 'digits' => 'يجب أن يحتوي :attribute على :digits رقمًا/أرقام.', + 'digits_between' => 'يجب أن يحتوي :attribute بين :min و :max رقمًا/أرقام .', + 'dimensions' => 'الـ :attribute يحتوي على أبعاد صورة غير صالحة.', + 'distinct' => 'للحقل :attribute قيمة مُكرّرة.', + 'email' => 'يجب أن يكون :attribute عنوان بريد إلكتروني صحيح البُنية.', + 'ends_with' => 'يجب أن ينتهي :attribute بأحد القيم التالية: :values', + 'exists' => 'القيمة المحددة :attribute غير موجودة.', + 'file' => 'الـ :attribute يجب أن يكون ملفا.', + 'filled' => ':attribute إجباري.', + 'gt' => [ + 'array' => 'يجب أن يحتوي :attribute على أكثر من :value عناصر/عنصر.', + 'file' => 'يجب أن يكون حجم الملف :attribute أكبر من :value كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute أكبر من :value.', - 'file' => 'يجب أن يكون حجم الملف :attribute أكبر من :value كيلوبايت.', - 'string' => 'يجب أن يكون طول النّص :attribute أكثر من :value حروفٍ/حرفًا.', - 'array' => 'يجب أن يحتوي :attribute على أكثر من :value عناصر/عنصر.', + 'string' => 'يجب أن يكون طول النّص :attribute أكثر من :value حروفٍ/حرفًا.', ], - 'gte' => [ + 'gte' => [ + 'array' => 'يجب أن يحتوي :attribute على الأقل على :value عُنصرًا/عناصر.', + 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :value كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر من :value.', - 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :value كيلوبايت.', - 'string' => 'يجب أن يكون طول النص :attribute على الأقل :value حروفٍ/حرفًا.', - 'array' => 'يجب أن يحتوي :attribute على الأقل على :value عُنصرًا/عناصر.', + 'string' => 'يجب أن يكون طول النص :attribute على الأقل :value حروفٍ/حرفًا.', ], - 'image' => 'يجب أن يكون :attribute صورةً.', - 'in' => ':attribute غير موجود.', - 'in_array' => ':attribute غير موجود في :other.', - 'integer' => 'يجب أن يكون :attribute عددًا صحيحًا.', - 'ip' => 'يجب أن يكون :attribute عنوان IP صحيحًا.', - 'ipv4' => 'يجب أن يكون :attribute عنوان IPv4 صحيحًا.', - 'ipv6' => 'يجب أن يكون :attribute عنوان IPv6 صحيحًا.', - 'json' => 'يجب أن يكون :attribute نصًا من نوع JSON.', - 'lt' => [ + 'image' => 'يجب أن يكون :attribute صورةً.', + 'in' => ':attribute غير موجود.', + 'in_array' => ':attribute غير موجود في :other.', + 'integer' => 'يجب أن يكون :attribute عددًا صحيحًا.', + 'ip' => 'يجب أن يكون :attribute عنوان IP صحيحًا.', + 'ipv4' => 'يجب أن يكون :attribute عنوان IPv4 صحيحًا.', + 'ipv6' => 'يجب أن يكون :attribute عنوان IPv6 صحيحًا.', + 'json' => 'يجب أن يكون :attribute نصًا من نوع JSON.', + 'lt' => [ + 'array' => 'يجب أن يحتوي :attribute على أقل من :value عناصر/عنصر.', + 'file' => 'يجب أن يكون حجم الملف :attribute أصغر من :value كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute أصغر من :value.', - 'file' => 'يجب أن يكون حجم الملف :attribute أصغر من :value كيلوبايت.', - 'string' => 'يجب أن يكون طول النّص :attribute أقل من :value حروفٍ/حرفًا.', - 'array' => 'يجب أن يحتوي :attribute على أقل من :value عناصر/عنصر.', + 'string' => 'يجب أن يكون طول النّص :attribute أقل من :value حروفٍ/حرفًا.', ], - 'lte' => [ + 'lte' => [ + 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :value عناصر/عنصر.', + 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :value كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر من :value.', - 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :value كيلوبايت.', - 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :value حروفٍ/حرفًا.', - 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :value عناصر/عنصر.', + 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :value حروفٍ/حرفًا.', ], - 'max' => [ + 'max' => [ + 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :max عناصر/عنصر.', + 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :max كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أصغر من :max.', - 'file' => 'يجب أن لا يتجاوز حجم الملف :attribute :max كيلوبايت.', - 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :max حروفٍ/حرفًا.', - 'array' => 'يجب أن لا يحتوي :attribute على أكثر من :max عناصر/عنصر.', + 'string' => 'يجب أن لا يتجاوز طول النّص :attribute :max حروفٍ/حرفًا.', ], - 'mimes' => 'يجب أن يكون ملفًا من نوع : :values.', - 'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.', - 'min' => [ + 'mimes' => 'يجب أن يكون ملفًا من نوع : :values.', + 'mimetypes' => 'يجب أن يكون ملفًا من نوع : :values.', + 'min' => [ + 'array' => 'يجب أن يحتوي :attribute على الأقل على :min عُنصرًا/عناصر.', + 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :min كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية أو أكبر من :min.', - 'file' => 'يجب أن يكون حجم الملف :attribute على الأقل :min كيلوبايت.', - 'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفًا.', - 'array' => 'يجب أن يحتوي :attribute على الأقل على :min عُنصرًا/عناصر.', + 'string' => 'يجب أن يكون طول النص :attribute على الأقل :min حروفٍ/حرفًا.', ], - 'not_in' => 'العنصر :attribute غير صحيح.', - 'not_regex' => 'صيغة :attribute غير صحيحة.', - 'numeric' => 'يجب على :attribute أن يكون رقمًا.', - 'password' => 'كلمة المرور غير صحيحة.', - 'present' => 'يجب تقديم :attribute.', - 'regex' => 'صيغة :attribute .غير صحيحة.', - 'required' => ':attribute مطلوب.', - 'required_if' => ':attribute مطلوب في حال ما إذا كان :other يساوي :value.', - 'required_unless' => ':attribute مطلوب في حال ما لم يكن :other يساوي :values.', - 'required_with' => ':attribute مطلوب إذا توفّر :values.', - 'required_with_all' => ':attribute مطلوب إذا توفّر :values.', + 'multiple_of' => ':attribute يجب أن يكون من مضاعفات :value', + 'not_in' => 'العنصر :attribute غير صحيح.', + 'not_regex' => 'صيغة :attribute غير صحيحة.', + 'numeric' => 'يجب على :attribute أن يكون رقمًا.', + 'password' => 'كلمة المرور غير صحيحة.', + 'present' => 'يجب تقديم :attribute.', + 'prohibited' => ':attribute محظور.', + 'prohibited_if' => ':attribute محظور إذا كان :other هو :value.', + 'prohibited_unless' => ':attribute محظور ما لم يكن :other ضمن :values.', + 'regex' => 'صيغة :attribute .غير صحيحة.', + 'relatable' => ':attribute قد لا يكون مرتبطا بالمصدر المحدد.', + 'required' => ':attribute مطلوب.', + 'required_if' => ':attribute مطلوب في حال ما إذا كان :other يساوي :value.', + 'required_unless' => ':attribute مطلوب في حال ما لم يكن :other يساوي :values.', + 'required_with' => ':attribute مطلوب إذا توفّر :values.', + 'required_with_all' => ':attribute مطلوب إذا توفّر :values.', 'required_without' => ':attribute مطلوب إذا لم يتوفّر :values.', 'required_without_all' => ':attribute مطلوب إذا لم يتوفّر :values.', - 'same' => 'يجب أن يتطابق :attribute مع :other.', - 'size' => [ + 'same' => 'يجب أن يتطابق :attribute مع :other.', + 'size' => [ + 'array' => 'يجب أن يحتوي :attribute على :size عنصرٍ/عناصر بالضبط.', + 'file' => 'يجب أن يكون حجم الملف :attribute :size كيلوبايت.', 'numeric' => 'يجب أن تكون قيمة :attribute مساوية لـ :size.', - 'file' => 'يجب أن يكون حجم الملف :attribute :size كيلوبايت.', - 'string' => 'يجب أن يحتوي النص :attribute على :size حروفٍ/حرفًا بالضبط.', - 'array' => 'يجب أن يحتوي :attribute على :size عنصرٍ/عناصر بالضبط.', + 'string' => 'يجب أن يحتوي النص :attribute على :size حروفٍ/حرفًا بالضبط.', ], - 'starts_with' => 'يجب أن يبدأ :attribute بأحد القيم التالية: :values', - 'string' => 'يجب أن يكون :attribute نصًا.', - 'timezone' => 'يجب أن يكون :attribute نطاقًا زمنيًا صحيحًا.', - 'unique' => 'قيمة :attribute مُستخدمة من قبل.', - 'uploaded' => 'فشل في تحميل الـ :attribute.', - 'url' => 'صيغة الرابط :attribute غير صحيحة.', - 'uuid' => ':attribute يجب أن يكون بصيغة UUID سليمة.', - - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - - 'custom' => [ + 'starts_with' => 'يجب أن يبدأ :attribute بأحد القيم التالية: :values', + 'string' => 'يجب أن يكون :attribute نصًا.', + 'timezone' => 'يجب أن يكون :attribute نطاقًا زمنيًا صحيحًا.', + 'unique' => 'قيمة :attribute مُستخدمة من قبل.', + 'uploaded' => 'فشل في تحميل الـ :attribute.', + 'url' => 'صيغة الرابط :attribute غير صحيحة.', + 'uuid' => ':attribute يجب أن يكون بصيغة UUID سليمة.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - - 'attributes' => [ - 'name' => 'الاسم', - 'username' => 'اسم المُستخدم', - 'email' => 'البريد الالكتروني', - 'first_name' => 'الاسم الأول', - 'last_name' => 'اسم العائلة', - 'password' => 'كلمة المرور', + 'attributes' => [ + 'address' => 'العنوان', + 'age' => 'العمر', + 'available' => 'مُتاح', + 'city' => 'المدينة', + 'content' => 'المُحتوى', + 'country' => 'الدولة', + 'date' => 'التاريخ', + 'day' => 'اليوم', + 'description' => 'الوصف', + 'email' => 'البريد الالكتروني', + 'excerpt' => 'المُلخص', + 'first_name' => 'الاسم الأول', + 'gender' => 'النوع', + 'hour' => 'ساعة', + 'last_name' => 'اسم العائلة', + 'minute' => 'دقيقة', + 'mobile' => 'الجوال', + 'month' => 'الشهر', + 'name' => 'الاسم', + 'password' => 'كلمة المرور', 'password_confirmation' => 'تأكيد كلمة المرور', - 'city' => 'المدينة', - 'country' => 'الدولة', - 'address' => 'عنوان السكن', - 'phone' => 'الهاتف', - 'mobile' => 'الجوال', - 'age' => 'العمر', - 'sex' => 'الجنس', - 'gender' => 'النوع', - 'day' => 'اليوم', - 'month' => 'الشهر', - 'year' => 'السنة', - 'hour' => 'ساعة', - 'minute' => 'دقيقة', - 'second' => 'ثانية', - 'title' => 'العنوان', - 'content' => 'المُحتوى', - 'description' => 'الوصف', - 'excerpt' => 'المُلخص', - 'date' => 'التاريخ', - 'time' => 'الوقت', - 'available' => 'مُتاح', - 'size' => 'الحجم', + 'phone' => 'الهاتف', + 'second' => 'ثانية', + 'sex' => 'الجنس', + 'size' => 'الحجم', + 'time' => 'الوقت', + 'title' => 'العنوان', + 'username' => 'اسم المُستخدم', + 'year' => 'السنة', ], ]; diff --git a/resources/lang/br.json b/resources/lang/br.json index 289bf03de..f919bdf8b 100644 --- a/resources/lang/br.json +++ b/resources/lang/br.json @@ -1 +1 @@ -{":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/resources/lang/br/validation.php b/resources/lang/br/validation.php index 5c61e2fb2..5cb39b22a 100644 --- a/resources/lang/br/validation.php +++ b/resources/lang/br/validation.php @@ -42,17 +42,17 @@ 'exists' => ':attribute selecionado é inválido.', 'file' => ':attribute deve ser um arquivo.', 'filled' => 'Campo :attribute é requerido.', - 'gt' => [ + 'gt' => [ 'numeric' => 'The :attribute must be greater than :value.', - 'file' => 'The :attribute must be greater than :value kilobytes.', - 'string' => 'The :attribute must be greater than :value characters.', - 'array' => 'The :attribute must have more than :value items.', + 'file' => 'The :attribute must be greater than :value kilobytes.', + 'string' => 'The :attribute must be greater than :value characters.', + 'array' => 'The :attribute must have more than :value items.', ], 'gte' => [ 'numeric' => 'The :attribute must be greater than or equal :value.', - 'file' => 'The :attribute must be greater than or equal :value kilobytes.', - 'string' => 'The :attribute must be greater than or equal :value characters.', - 'array' => 'The :attribute must have :value items or more.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', + 'string' => 'The :attribute must be greater than or equal :value characters.', + 'array' => 'The :attribute must have :value items or more.', ], 'image' => 'Campo :attribute deve ser uma imagem.', 'in' => ':attribute selecionado é inválido.', @@ -62,17 +62,17 @@ 'ipv4' => ':attribute deve ser um endereço de IPv4 válido.', 'ipv6' => ':attribute deve ser um endereço de IPv6 válido.', 'json' => ':attribute deve ser uma string JSON válida.', - 'lt' => [ + 'lt' => [ 'numeric' => 'The :attribute must be less than :value.', - 'file' => 'The :attribute must be less than :value kilobytes.', - 'string' => 'The :attribute must be less than :value characters.', - 'array' => 'The :attribute must have less than :value items.', + 'file' => 'The :attribute must be less than :value kilobytes.', + 'string' => 'The :attribute must be less than :value characters.', + 'array' => 'The :attribute must have less than :value items.', ], 'lte' => [ 'numeric' => 'The :attribute must be less than or equal :value.', - 'file' => 'The :attribute must be less than or equal :value kilobytes.', - 'string' => 'The :attribute must be less than or equal :value characters.', - 'array' => 'The :attribute must not have more than :value items.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', + 'string' => 'The :attribute must be less than or equal :value characters.', + 'array' => 'The :attribute must not have more than :value items.', ], 'max' => [ 'numeric' => ':attribute pode não ser maior que :max.', @@ -89,7 +89,7 @@ 'array' => ':attribute deve ter no mínimo :min itens.', ], 'not_in' => 'The selected :attribute is invalid.', - 'not_regex' => 'The :attribute format is invalid.', + 'not_regex' => 'The :attribute format is invalid.', 'numeric' => ':attribute deve ser um número.', 'present' => 'Campo :attribute deve estar presente.', 'regex' => 'Formato do :attribute é invalid.', @@ -108,12 +108,12 @@ 'array' => ':attribute deve conter :size itens.', ], 'starts_with' => 'The :attribute must start with one of the following: :values', - 'string' => ':attribute deve ser uma string.', - 'timezone' => ':attribute deve estar em uma zona válida.', - 'unique' => ':attribute já foi escolhido.', - 'uploaded' => ':attribute falhou no envio.', - 'url' => 'Formato do :attribute é inválido.', - 'uuid' => 'The :attribute must be a valid UUID.', + 'string' => ':attribute deve ser uma string.', + 'timezone' => ':attribute deve estar em uma zona válida.', + 'unique' => ':attribute já foi escolhido.', + 'uploaded' => ':attribute falhou no envio.', + 'url' => 'Formato do :attribute é inválido.', + 'uuid' => 'The :attribute must be a valid UUID.', /* |-------------------------------------------------------------------------- diff --git a/resources/lang/de.json b/resources/lang/de.json index 289bf03de..f919bdf8b 100644 --- a/resources/lang/de.json +++ b/resources/lang/de.json @@ -1 +1 @@ -{":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/resources/lang/de/auth.php b/resources/lang/de/auth.php index 24d74c853..26860b5b7 100644 --- a/resources/lang/de/auth.php +++ b/resources/lang/de/auth.php @@ -1,17 +1,18 @@ 'Diese Kombination aus Zugangsdaten wurde nicht in unserer Datenbank gefunden.', + 'password' => 'Das eingegebene Passwort ist nicht korrekt.', 'throttle' => 'Zu viele Loginversuche. Versuchen Sie es bitte in :seconds Sekunden nochmal.', ]; diff --git a/resources/lang/de/pagination.php b/resources/lang/de/pagination.php index b28162684..0fbc2a8c8 100644 --- a/resources/lang/de/pagination.php +++ b/resources/lang/de/pagination.php @@ -1,17 +1,17 @@ '« Zurück', +return [ 'next' => 'Weiter »', + 'previous' => '« Zurück', ]; diff --git a/resources/lang/de/passwords.php b/resources/lang/de/passwords.php index 160ef95b0..429ee9d97 100644 --- a/resources/lang/de/passwords.php +++ b/resources/lang/de/passwords.php @@ -1,21 +1,20 @@ 'Passwörter müssen mindestens 6 Zeichen lang sein und korrekt bestätigt werden.', - 'reset' => 'Das Passwort wurde zurückgesetzt!', - 'sent' => 'Passworterinnerung wurde gesendet!', +return [ + 'reset' => 'Das Passwort wurde zurückgesetzt!', + 'sent' => 'Passworterinnerung wurde gesendet!', 'throttled' => 'Bitte warten Sie, bevor Sie es erneut versuchen.', - 'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.', - 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.', + 'token' => 'Der Passwort-Wiederherstellungs-Schlüssel ist ungültig oder abgelaufen.', + 'user' => 'Es konnte leider kein Nutzer mit dieser E-Mail-Adresse gefunden werden.', ]; diff --git a/resources/lang/de/validation-inline.php b/resources/lang/de/validation-inline.php new file mode 100644 index 000000000..7874ef945 --- /dev/null +++ b/resources/lang/de/validation-inline.php @@ -0,0 +1,131 @@ + 'Dieses Feld muss akzeptiert werden.', + 'active_url' => 'Das ist keine gültige Internet-Adresse.', + 'after' => 'Das muss ein Datum nach dem :date sein.', + 'after_or_equal' => 'Das muss ein Datum nach dem :date oder gleich dem :date sein.', + 'alpha' => 'Der Inhalt darf nur aus Buchstaben bestehen.', + 'alpha_dash' => 'Der Inhalt darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.', + 'alpha_num' => 'Der Inhalt darf nur aus Buchstaben und Zahlen bestehen.', + 'array' => 'Dieses Feld muss ein Array sein.', + 'attached' => 'Dieses Feld ist bereits angehängt.', + 'before' => 'Das muss ein Datum vor dem :date sein.', + 'before_or_equal' => 'Das muss ein Datum vor dem :date oder gleich dem :date sein.', + 'between' => [ + 'array' => 'Dieser Inhalt muss zwischen :min & :max Elemente haben.', + 'file' => 'Diese Datei muss zwischen :min & :max Kilobytes groß sein.', + 'numeric' => 'Dieser Wert muss zwischen :min & :max liegen.', + 'string' => 'Diese Zeichenkette muss zwischen :min & :max Zeichen lang sein.', + ], + 'boolean' => 'Dieses Feld muss entweder \'true\' oder \'false\' sein.', + 'confirmed' => 'Die Bestätigung stimmt nicht überein.', + 'date' => 'Das ist kein gültiges Datum.', + 'date_equals' => 'Das Datum muss identisch zu :date sein.', + 'date_format' => 'Das Datum entspricht nicht dem gültigen Format für :format.', + 'different' => 'Das muss sich von :other unterscheiden.', + 'digits' => 'Das muss :digits Stellen haben.', + 'digits_between' => 'Das muss zwischen :min und :max Stellen haben.', + 'dimensions' => 'Das Bild hat ungültige Abmessungen.', + 'distinct' => 'Dieser Wert ist bereits vorhanden.', + 'email' => 'Das muss eine gültige E-Mail-Adresse sein.', + 'ends_with' => 'Der Inhalt muss eine der folgenden Endungen aufweisen: :values', + 'exists' => 'Der gewählte Wert ist ungültig.', + 'file' => 'Der Inhalt muss eine Datei sein.', + 'filled' => 'Dieses Feld muss ausgefüllt sein.', + 'gt' => [ + 'array' => 'Der Inhalt muss mehr als :value Elemente haben.', + 'file' => 'Die Datei muss größer als :value Kilobytes sein.', + 'numeric' => 'Der Wert muss größer als :value sein.', + 'string' => 'Die Zeichenkette muss länger als :value Zeichen sein.', + ], + 'gte' => [ + 'array' => 'Der Inhalt muss mindestens :value Elemente haben.', + 'file' => 'Die Datei muss größer oder gleich :value Kilobytes sein.', + 'numeric' => 'Der Wert muss größer oder gleich :value sein.', + 'string' => 'Die Zeichenkette muss mindestens :value Zeichen lang sein.', + ], + 'image' => 'Das muss ein Bild sein.', + 'in' => 'Der gewählte Wert ist ungültig.', + 'in_array' => 'Der gewählte Wert kommt nicht in :other vor.', + 'integer' => 'Das muss eine ganze Zahl sein.', + 'ip' => 'Das muss eine gültige IP-Adresse sein.', + 'ipv4' => 'Das muss eine gültige IPv4-Adresse sein.', + 'ipv6' => 'Das muss eine gültige IPv6-Adresse sein.', + 'json' => 'Das muss ein gültiger JSON-String sein.', + 'lt' => [ + 'array' => 'Der Inhalt muss weniger als :value Elemente haben.', + 'file' => 'Die Datei muss kleiner als :value Kilobytes sein.', + 'numeric' => 'Der Wert muss kleiner als :value sein.', + 'string' => 'Die Zeichenkette muss kürzer als :value Zeichen sein.', + ], + 'lte' => [ + 'array' => 'Der Inhalt darf maximal :value Elemente haben.', + 'file' => 'Die Datei muss kleiner oder gleich :value Kilobytes sein.', + 'numeric' => 'Der Wert muss kleiner oder gleich :value sein.', + 'string' => 'Die Zeichenkette darf maximal :value Zeichen lang sein.', + ], + 'max' => [ + 'array' => 'Der Inhalt darf maximal :max Elemente haben.', + 'file' => 'Die Datei darf maximal :max Kilobytes groß sein.', + 'numeric' => 'Der Wert darf maximal :max sein.', + 'string' => 'Die Zeichenkette darf maximal :max Zeichen haben.', + ], + 'mimes' => 'Das muss den Dateityp :values haben.', + 'mimetypes' => 'Das muss den Dateityp :values haben.', + 'min' => [ + 'array' => 'Der Inhalt muss mindestens :min Elemente haben.', + 'file' => 'Die Datei muss mindestens :min Kilobytes groß sein.', + 'numeric' => 'Der Wert muss mindestens :min sein.', + 'string' => 'Die Zeichenkette muss mindestens :min Zeichen lang sein.', + ], + 'multiple_of' => 'Der Wert muss ein Vielfaches von :value sein.', + 'not_in' => 'Der gewählte Wert ist ungültig.', + 'not_regex' => 'Dieses Format ist ungültig.', + 'numeric' => 'Das muss eine Zahl sein.', + 'password' => 'Das Passwort ist falsch.', + 'present' => 'Dieses Feld muss vorhanden sein.', + 'prohibited' => 'Dieses Feld ist unzulässig.', + 'prohibited_if' => 'Dieses Feld ist unzulässig, wenn :other :value ist.', + 'prohibited_unless' => 'Dieses Feld ist unzulässig, wenn :other nicht :values ist.', + 'regex' => 'Dieses Format ist ungültig.', + 'relatable' => 'Das kann nicht mit dieser Ressource verbunden werden.', + 'required' => 'Dieses Feld muss ausgefüllt werden.', + 'required_if' => 'Dieses Feld muss ausgefüllt werden, wenn :other den Wert :value hat.', + 'required_unless' => 'Dieses Feld muss ausgefüllt werden, wenn :other nicht den Wert :values hat.', + 'required_with' => 'Dieses Feld muss ausgefüllt werden, wenn :values ausgefüllt wurde.', + 'required_with_all' => 'Dieses Feld muss ausgefüllt werden, wenn :values ausgefüllt wurde.', + 'required_without' => 'Dieses Feld muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.', + 'required_without_all' => 'Dieses Feld muss ausgefüllt werden, wenn keines der Felder :values ausgefüllt wurde.', + 'same' => 'Der Wert von diesem Feld und muss mit demjenigen von :other übereinstimmen.', + 'size' => [ + 'array' => 'Der Inhalt muss genau :size Elemente haben.', + 'file' => 'Die Datei muss :size Kilobyte groß sein.', + 'numeric' => 'Der Wert muss gleich :size sein.', + 'string' => 'Die Zeichenkette muss :size Zeichen lang sein.', + ], + 'starts_with' => 'Der Inhalt muss einen der folgenden Anfänge aufweisen: :values', + 'string' => 'Das muss ein String sein.', + 'timezone' => 'Das muss eine gültige Zeitzone sein.', + 'unique' => 'Das ist bereits vergeben.', + 'uploaded' => 'Das konnte nicht hochgeladen werden.', + 'url' => 'Das muss eine URL sein.', + 'uuid' => 'Das muss eine UUID sein.', + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + 'attributes' => [], +]; diff --git a/resources/lang/de/validation.php b/resources/lang/de/validation.php index a0fcdea01..1af6afcdc 100644 --- a/resources/lang/de/validation.php +++ b/resources/lang/de/validation.php @@ -1,179 +1,162 @@ ':attribute muss akzeptiert werden.', - 'active_url' => ':attribute ist keine gültige Internet-Adresse.', - 'after' => ':attribute muss ein Datum nach dem :date sein.', - 'after_or_equal' => ':attribute muss ein Datum nach dem :date oder gleich dem :date sein.', - 'alpha' => ':attribute darf nur aus Buchstaben bestehen.', - 'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.', - 'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.', - 'array' => ':attribute muss ein Array sein.', - 'before' => ':attribute muss ein Datum vor dem :date sein.', - 'before_or_equal' => ':attribute muss ein Datum vor dem :date oder gleich dem :date sein.', - 'between' => [ +return [ + 'accepted' => ':attribute muss akzeptiert werden.', + 'active_url' => ':attribute ist keine gültige Internet-Adresse.', + 'after' => ':attribute muss ein Datum nach dem :date sein.', + 'after_or_equal' => ':attribute muss ein Datum nach dem :date oder gleich dem :date sein.', + 'alpha' => ':attribute darf nur aus Buchstaben bestehen.', + 'alpha_dash' => ':attribute darf nur aus Buchstaben, Zahlen, Binde- und Unterstrichen bestehen.', + 'alpha_num' => ':attribute darf nur aus Buchstaben und Zahlen bestehen.', + 'array' => ':attribute muss ein Array sein.', + 'attached' => ':attribute ist bereits angehängt.', + 'before' => ':attribute muss ein Datum vor dem :date sein.', + 'before_or_equal' => ':attribute muss ein Datum vor dem :date oder gleich dem :date sein.', + 'between' => [ + 'array' => ':attribute muss zwischen :min & :max Elemente haben.', + 'file' => ':attribute muss zwischen :min & :max Kilobytes groß sein.', 'numeric' => ':attribute muss zwischen :min & :max liegen.', - 'file' => ':attribute muss zwischen :min & :max Kilobytes groß sein.', - 'string' => ':attribute muss zwischen :min & :max Zeichen lang sein.', - 'array' => ':attribute muss zwischen :min & :max Elemente haben.', + 'string' => ':attribute muss zwischen :min & :max Zeichen lang sein.', ], - 'boolean' => ":attribute muss entweder 'true' oder 'false' sein.", - 'confirmed' => ':attribute stimmt nicht mit der Bestätigung überein.', - 'date' => ':attribute muss ein gültiges Datum sein.', - 'date_equals' => ':attribute muss ein Datum gleich :date sein.', - 'date_format' => ':attribute entspricht nicht dem gültigen Format für :format.', - 'different' => ':attribute und :other müssen sich unterscheiden.', - 'digits' => ':attribute muss :digits Stellen haben.', - 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.', - 'dimensions' => ':attribute hat ungültige Bildabmessungen.', - 'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.', - 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.', - 'ends_with' => ':attribute muss eine der folgenden Endungen aufweisen: :values', - 'exists' => 'Der gewählte Wert für :attribute ist ungültig.', - 'file' => ':attribute muss eine Datei sein.', - 'filled' => ':attribute muss ausgefüllt sein.', - 'gt' => [ + 'boolean' => ':attribute muss entweder \'true\' oder \'false\' sein.', + 'confirmed' => ':attribute stimmt nicht mit der Bestätigung überein.', + 'date' => ':attribute muss ein gültiges Datum sein.', + 'date_equals' => ':attribute muss ein Datum gleich :date sein.', + 'date_format' => ':attribute entspricht nicht dem gültigen Format für :format.', + 'different' => ':attribute und :other müssen sich unterscheiden.', + 'digits' => ':attribute muss :digits Stellen haben.', + 'digits_between' => ':attribute muss zwischen :min und :max Stellen haben.', + 'dimensions' => ':attribute hat ungültige Bildabmessungen.', + 'distinct' => ':attribute beinhaltet einen bereits vorhandenen Wert.', + 'email' => ':attribute muss eine gültige E-Mail-Adresse sein.', + 'ends_with' => ':attribute muss eine der folgenden Endungen aufweisen: :values', + 'exists' => 'Der gewählte Wert für :attribute ist ungültig.', + 'file' => ':attribute muss eine Datei sein.', + 'filled' => ':attribute muss ausgefüllt sein.', + 'gt' => [ + 'array' => ':attribute muss mehr als :value Elemente haben.', + 'file' => ':attribute muss größer als :value Kilobytes sein.', 'numeric' => ':attribute muss größer als :value sein.', - 'file' => ':attribute muss größer als :value Kilobytes sein.', - 'string' => ':attribute muss länger als :value Zeichen sein.', - 'array' => ':attribute muss mehr als :value Elemente haben.', + 'string' => ':attribute muss länger als :value Zeichen sein.', ], - 'gte' => [ + 'gte' => [ + 'array' => ':attribute muss mindestens :value Elemente haben.', + 'file' => ':attribute muss größer oder gleich :value Kilobytes sein.', 'numeric' => ':attribute muss größer oder gleich :value sein.', - 'file' => ':attribute muss größer oder gleich :value Kilobytes sein.', - 'string' => ':attribute muss mindestens :value Zeichen lang sein.', - 'array' => ':attribute muss mindestens :value Elemente haben.', + 'string' => ':attribute muss mindestens :value Zeichen lang sein.', ], - 'image' => ':attribute muss ein Bild sein.', - 'in' => 'Der gewählte Wert für :attribute ist ungültig.', - 'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.', - 'integer' => ':attribute muss eine ganze Zahl sein.', - 'ip' => ':attribute muss eine gültige IP-Adresse sein.', - 'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.', - 'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.', - 'json' => ':attribute muss ein gültiger JSON-String sein.', - 'lt' => [ + 'image' => ':attribute muss ein Bild sein.', + 'in' => 'Der gewählte Wert für :attribute ist ungültig.', + 'in_array' => 'Der gewählte Wert für :attribute kommt nicht in :other vor.', + 'integer' => ':attribute muss eine ganze Zahl sein.', + 'ip' => ':attribute muss eine gültige IP-Adresse sein.', + 'ipv4' => ':attribute muss eine gültige IPv4-Adresse sein.', + 'ipv6' => ':attribute muss eine gültige IPv6-Adresse sein.', + 'json' => ':attribute muss ein gültiger JSON-String sein.', + 'lt' => [ + 'array' => ':attribute muss weniger als :value Elemente haben.', + 'file' => ':attribute muss kleiner als :value Kilobytes sein.', 'numeric' => ':attribute muss kleiner als :value sein.', - 'file' => ':attribute muss kleiner als :value Kilobytes sein.', - 'string' => ':attribute muss kürzer als :value Zeichen sein.', - 'array' => ':attribute muss weniger als :value Elemente haben.', + 'string' => ':attribute muss kürzer als :value Zeichen sein.', ], - 'lte' => [ + 'lte' => [ + 'array' => ':attribute darf maximal :value Elemente haben.', + 'file' => ':attribute muss kleiner oder gleich :value Kilobytes sein.', 'numeric' => ':attribute muss kleiner oder gleich :value sein.', - 'file' => ':attribute muss kleiner oder gleich :value Kilobytes sein.', - 'string' => ':attribute darf maximal :value Zeichen lang sein.', - 'array' => ':attribute darf maximal :value Elemente haben.', + 'string' => ':attribute darf maximal :value Zeichen lang sein.', ], - 'max' => [ + 'max' => [ + 'array' => ':attribute darf maximal :max Elemente haben.', + 'file' => ':attribute darf maximal :max Kilobytes groß sein.', 'numeric' => ':attribute darf maximal :max sein.', - 'file' => ':attribute darf maximal :max Kilobytes groß sein.', - 'string' => ':attribute darf maximal :max Zeichen haben.', - 'array' => ':attribute darf maximal :max Elemente haben.', + 'string' => ':attribute darf maximal :max Zeichen haben.', ], - 'mimes' => ':attribute muss den Dateityp :values haben.', - 'mimetypes' => ':attribute muss den Dateityp :values haben.', - 'min' => [ + 'mimes' => ':attribute muss den Dateityp :values haben.', + 'mimetypes' => ':attribute muss den Dateityp :values haben.', + 'min' => [ + 'array' => ':attribute muss mindestens :min Elemente haben.', + 'file' => ':attribute muss mindestens :min Kilobytes groß sein.', 'numeric' => ':attribute muss mindestens :min sein.', - 'file' => ':attribute muss mindestens :min Kilobytes groß sein.', - 'string' => ':attribute muss mindestens :min Zeichen lang sein.', - 'array' => ':attribute muss mindestens :min Elemente haben.', + 'string' => ':attribute muss mindestens :min Zeichen lang sein.', ], - 'not_in' => 'Der gewählte Wert für :attribute ist ungültig.', - 'not_regex' => ':attribute hat ein ungültiges Format.', - 'numeric' => ':attribute muss eine Zahl sein.', - 'password' => 'Das Passwort ist falsch.', - 'present' => ':attribute muss vorhanden sein.', - 'regex' => ':attribute Format ist ungültig.', - 'required' => ':attribute muss ausgefüllt werden.', - 'required_if' => ':attribute muss ausgefüllt werden, wenn :other den Wert :value hat.', - 'required_unless' => ':attribute muss ausgefüllt werden, wenn :other nicht den Wert :values hat.', - 'required_with' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', - 'required_with_all' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', - 'required_without' => ':attribute muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.', + 'multiple_of' => ':attribute muss ein Vielfaches von :value sein.', + 'not_in' => 'Der gewählte Wert für :attribute ist ungültig.', + 'not_regex' => ':attribute hat ein ungültiges Format.', + 'numeric' => ':attribute muss eine Zahl sein.', + 'password' => 'Das Passwort ist falsch.', + 'present' => ':attribute muss vorhanden sein.', + 'prohibited' => ':attribute ist unzulässig.', + 'prohibited_if' => ':attribute ist unzulässig, wenn :other :value ist.', + 'prohibited_unless' => ':attribute ist unzulässig, wenn :other nicht :values ist.', + 'regex' => ':attribute Format ist ungültig.', + 'relatable' => ':attribute kann nicht mit dieser Ressource verbunden werden.', + 'required' => ':attribute muss ausgefüllt werden.', + 'required_if' => ':attribute muss ausgefüllt werden, wenn :other den Wert :value hat.', + 'required_unless' => ':attribute muss ausgefüllt werden, wenn :other nicht den Wert :values hat.', + 'required_with' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', + 'required_with_all' => ':attribute muss ausgefüllt werden, wenn :values ausgefüllt wurde.', + 'required_without' => ':attribute muss ausgefüllt werden, wenn :values nicht ausgefüllt wurde.', 'required_without_all' => ':attribute muss ausgefüllt werden, wenn keines der Felder :values ausgefüllt wurde.', - 'same' => ':attribute und :other müssen übereinstimmen.', - 'size' => [ + 'same' => ':attribute und :other müssen übereinstimmen.', + 'size' => [ + 'array' => ':attribute muss genau :size Elemente haben.', + 'file' => ':attribute muss :size Kilobyte groß sein.', 'numeric' => ':attribute muss gleich :size sein.', - 'file' => ':attribute muss :size Kilobyte groß sein.', - 'string' => ':attribute muss :size Zeichen lang sein.', - 'array' => ':attribute muss genau :size Elemente haben.', + 'string' => ':attribute muss :size Zeichen lang sein.', ], - 'starts_with' => ':attribute muss mit einem der folgenden Anfänge aufweisen: :values', - 'string' => ':attribute muss ein String sein.', - 'timezone' => ':attribute muss eine gültige Zeitzone sein.', - 'unique' => ':attribute ist bereits vergeben.', - 'uploaded' => ':attribute konnte nicht hochgeladen werden.', - 'url' => ':attribute muss eine URL sein.', - 'uuid' => ':attribute muss ein UUID sein.', - - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - - 'custom' => [ + 'starts_with' => ':attribute muss mit einem der folgenden Anfänge aufweisen: :values', + 'string' => ':attribute muss ein String sein.', + 'timezone' => ':attribute muss eine gültige Zeitzone sein.', + 'unique' => ':attribute ist bereits vergeben.', + 'uploaded' => ':attribute konnte nicht hochgeladen werden.', + 'url' => ':attribute muss eine URL sein.', + 'uuid' => ':attribute muss ein UUID sein.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - - 'attributes' => [ - 'name' => 'Name', - 'username' => 'Benutzername', - 'email' => 'E-Mail Adresse', - 'first_name' => 'Vorname', - 'last_name' => 'Nachname', - 'password' => 'Passwort', + 'attributes' => [ + 'address' => 'Adresse', + 'age' => 'Alter', + 'available' => 'verfügbar', + 'city' => 'Stadt', + 'content' => 'Inhalt', + 'country' => 'Land', + 'current_password' => 'Derzeitiges Passwort', + 'date' => 'Datum', + 'day' => 'Tag', + 'description' => 'Beschreibung', + 'email' => 'E-Mail Adresse', + 'excerpt' => 'Auszug', + 'first_name' => 'Vorname', + 'gender' => 'Geschlecht', + 'hour' => 'Stunde', + 'last_name' => 'Nachname', + 'minute' => 'Minute', + 'mobile' => 'Handynummer', + 'month' => 'Monat', + 'name' => 'Name', + 'password' => 'Passwort', 'password_confirmation' => 'Passwort Bestätigung', - 'city' => 'Stadt', - 'country' => 'Land', - 'address' => 'Adresse', - 'phone' => 'Telefonnummer', - 'mobile' => 'Handynummer', - 'age' => 'Alter', - 'sex' => 'Geschlecht', - 'gender' => 'Geschlecht', - 'day' => 'Tag', - 'month' => 'Monat', - 'year' => 'Jahr', - 'hour' => 'Stunde', - 'minute' => 'Minute', - 'second' => 'Sekunde', - 'title' => 'Titel', - 'content' => 'Inhalt', - 'description' => 'Beschreibung', - 'excerpt' => 'Auszug', - 'date' => 'Datum', - 'time' => 'Uhrzeit', - 'available' => 'verfügbar', - 'size' => 'Größe', + 'phone' => 'Telefonnummer', + 'second' => 'Sekunde', + 'sex' => 'Geschlecht', + 'size' => 'Größe', + 'time' => 'Uhrzeit', + 'title' => 'Titel', + 'username' => 'Benutzername', + 'year' => 'Jahr', ], ]; diff --git a/resources/lang/en/auth.php b/resources/lang/en/auth.php index e5506df29..6598e2c06 100644 --- a/resources/lang/en/auth.php +++ b/resources/lang/en/auth.php @@ -14,6 +14,7 @@ */ 'failed' => 'These credentials do not match our records.', + 'password' => 'The provided password is incorrect.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', ]; diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index a65914f9d..49e3388bc 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -17,9 +17,9 @@ 'active_url' => 'The :attribute is not a valid URL.', 'after' => 'The :attribute must be a date after :date.', 'after_or_equal' => 'The :attribute must be a date after or equal to :date.', - 'alpha' => 'The :attribute may only contain letters.', - 'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', - 'alpha_num' => 'The :attribute may only contain letters and numbers.', + 'alpha' => 'The :attribute must only contain letters.', + 'alpha_dash' => 'The :attribute must only contain letters, numbers, dashes and underscores.', + 'alpha_num' => 'The :attribute must only contain letters and numbers.', 'array' => 'The :attribute must be an array.', 'before' => 'The :attribute must be a date before :date.', 'before_or_equal' => 'The :attribute must be a date before or equal to :date.', @@ -77,10 +77,10 @@ 'array' => 'The :attribute must not have more than :value items.', ], 'max' => [ - 'numeric' => 'The :attribute may not be greater than :max.', - 'file' => 'The :attribute may not be greater than :max kilobytes.', - 'string' => 'The :attribute may not be greater than :max characters.', - 'array' => 'The :attribute may not have more than :max items.', + 'numeric' => 'The :attribute must not be greater than :max.', + 'file' => 'The :attribute must not be greater than :max kilobytes.', + 'string' => 'The :attribute must not be greater than :max characters.', + 'array' => 'The :attribute must not have more than :max items.', ], 'mimes' => 'The :attribute must be a file of type: :values.', 'mimetypes' => 'The :attribute must be a file of type: :values.', @@ -90,6 +90,7 @@ 'string' => 'The :attribute must be at least :min characters.', 'array' => 'The :attribute must have at least :min items.', ], + 'multiple_of' => 'The :attribute must be a multiple of :value.', 'not_in' => 'The selected :attribute is invalid.', 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'The :attribute must be a number.', @@ -103,6 +104,9 @@ 'required_with_all' => 'The :attribute field is required when :values are present.', 'required_without' => 'The :attribute field is required when :values is not present.', 'required_without_all' => 'The :attribute field is required when none of :values are present.', + 'prohibited' => 'The :attribute field is prohibited.', + 'prohibited_if' => 'The :attribute field is prohibited when :other is :value.', + 'prohibited_unless' => 'The :attribute field is prohibited unless :other is in :values.', 'same' => 'The :attribute and :other must match.', 'size' => [ 'numeric' => 'The :attribute must be :size.', diff --git a/resources/lang/es.json b/resources/lang/es.json index c69a69624..57f79d8da 100644 --- a/resources/lang/es.json +++ b/resources/lang/es.json @@ -1 +1 @@ -{":days Days Returns":null,"Street line 1":null,"Street line 2":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"A new account was created: :name":null,":days Days Returns":null,"Street line 1":null,"Street line 2":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/resources/lang/es/auth.php b/resources/lang/es/auth.php index 12884497d..b84524757 100644 --- a/resources/lang/es/auth.php +++ b/resources/lang/es/auth.php @@ -1,17 +1,18 @@ 'Estas credenciales no coinciden con nuestros registros.', +return [ + 'failed' => 'Estas credenciales no coinciden con nuestros registros.', + 'password' => 'La contraseña ingresada no es correcta.', 'throttle' => 'Demasiados intentos de acceso. Por favor intente nuevamente en :seconds segundos.', ]; diff --git a/resources/lang/es/pagination.php b/resources/lang/es/pagination.php index 51862f2eb..d8f0d1940 100644 --- a/resources/lang/es/pagination.php +++ b/resources/lang/es/pagination.php @@ -1,17 +1,17 @@ 'Siguiente »', 'previous' => '« Anterior', - 'next' => 'Siguiente »', ]; diff --git a/resources/lang/es/passwords.php b/resources/lang/es/passwords.php index 4c6e8232c..7745e6465 100644 --- a/resources/lang/es/passwords.php +++ b/resources/lang/es/passwords.php @@ -1,21 +1,20 @@ 'Las contraseñas deben tener al menos 6 caracteres y coincidir con la confirmación.', - 'reset' => '¡Tu contraseña ha sido restablecida!', - 'sent' => '¡Te hemos enviado por correo el enlace para restablecer tu contraseña!', - 'throttled' => 'Por favor espera antes de intentar de nuevo.', - 'token' => 'El token de recuperación de contraseña es inválido.', - 'user' => 'No podemos encontrar ningún usuario con ese correo electrónico.', +return [ + 'reset' => '¡Su contraseña ha sido restablecida!', + 'sent' => '¡Le hemos enviado por correo electrónico el enlace para restablecer su contraseña!', + 'throttled' => 'Por favor espere antes de intentar de nuevo.', + 'token' => 'El token de restablecimiento de contraseña es inválido.', + 'user' => 'No encontramos ningún usuario con ese correo electrónico.', ]; diff --git a/resources/lang/es/validation-inline.php b/resources/lang/es/validation-inline.php new file mode 100644 index 000000000..bd3ca8c99 --- /dev/null +++ b/resources/lang/es/validation-inline.php @@ -0,0 +1,131 @@ + 'Este campo debe ser aceptado.', + 'active_url' => 'Esta no es una URL válida.', + 'after' => 'Debe ser una fecha después de :date.', + 'after_or_equal' => 'Debe ser una fecha después o igual a :date.', + 'alpha' => 'Este campo solo puede contener letras.', + 'alpha_dash' => 'Este campo solo puede contener letras, números, guiones y guiones bajos.', + 'alpha_num' => 'Este campo solo puede contener letras y números.', + 'array' => 'Este campo debe ser un array (colección).', + 'attached' => 'Este campo ya se adjuntó.', + 'before' => 'Debe ser una fecha antes de :date.', + 'before_or_equal' => 'Debe ser una fecha anterior o igual a :date.', + 'between' => [ + 'array' => 'El contenido debe tener entre :min y :max elementos.', + 'file' => 'Este archivo debe ser entre :min y :max kilobytes.', + 'numeric' => 'Este valor debe ser entre :min y :max.', + 'string' => 'El texto debe ser entre :min y :max caracteres.', + ], + 'boolean' => 'El campo debe ser verdadero o falso.', + 'confirmed' => 'La confirmación no coincide.', + 'date' => 'Esta no es una fecha válida.', + 'date_equals' => 'El campo debe ser una fecha igual a :date.', + 'date_format' => 'El campo no corresponde al formato :format.', + 'different' => 'Este valor deben ser diferente de :other.', + 'digits' => 'Debe tener :digits dígitos.', + 'digits_between' => 'Debe tener entre :min y :max dígitos.', + 'dimensions' => 'Las dimensiones de esta imagen son inválidas.', + 'distinct' => 'El campo tiene un valor duplicado.', + 'email' => 'No es un correo válido.', + 'ends_with' => 'Debe finalizar con uno de los siguientes valores: :values.', + 'exists' => 'El valor seleccionado es inválido.', + 'file' => 'El campo debe ser un archivo.', + 'filled' => 'Este campo debe tener un valor.', + 'gt' => [ + 'array' => 'El contenido debe tener mas de :value elementos.', + 'file' => 'El archivo debe ser mayor que :value kilobytes.', + 'numeric' => 'El valor del campo debe ser mayor que :value.', + 'string' => 'El texto debe ser mayor de :value caracteres.', + ], + 'gte' => [ + 'array' => 'El contenido debe tener :value elementos o más.', + 'file' => 'El tamaño del archivo debe ser mayor o igual que :value kilobytes.', + 'numeric' => 'El valor debe ser mayor o igual que :value.', + 'string' => 'El texto debe ser mayor o igual de :value caracteres.', + ], + 'image' => 'Esta debe ser una imagen.', + 'in' => 'El valor seleccionado es inválido.', + 'in_array' => 'Este valor no existe en :other.', + 'integer' => 'Esto debe ser un entero.', + 'ip' => 'Debe ser una dirección IP válida.', + 'ipv4' => 'Debe ser una dirección IPv4 válida.', + 'ipv6' => 'Debe ser una dirección IPv6 válida.', + 'json' => 'Debe ser un texto válido en JSON.', + 'lt' => [ + 'array' => 'El contenido debe tener menor de :value elementos.', + 'file' => 'El tamaño del archivo debe ser menor a :value kilobytes.', + 'numeric' => 'El valor debe ser menor que :value.', + 'string' => 'El texto debe ser menor de :value caracteres.', + ], + 'lte' => [ + 'array' => 'El contenido no debe tener más de :value elementos.', + 'file' => 'El tamaño del archivo debe ser menor o igual que :value kilobytes.', + 'numeric' => 'El valor debe ser menor o igual que :value.', + 'string' => 'El texto debe ser menor o igual de :value caracteres.', + ], + 'max' => [ + 'array' => 'El contenido no debe tener más de :max elementos.', + 'file' => 'El tamaño del archivo no debe ser mayor a :max kilobytes.', + 'numeric' => 'El valor no debe ser mayor de :max.', + 'string' => 'El texto no debe ser mayor a :max caracteres.', + ], + 'mimes' => 'Debe ser un archivo de tipo: :values.', + 'mimetypes' => 'Debe ser un archivo de tipo: :values.', + 'min' => [ + 'array' => 'El contenido debe tener al menos :min elementos.', + 'file' => 'El tamaño del archivo debe ser al menos de :min kilobytes.', + 'numeric' => 'El valor debe ser al menos de :min.', + 'string' => 'El texto debe ser al menos de :min caracteres.', + ], + 'multiple_of' => 'Este valor debe ser múltiplo de :value', + 'not_in' => 'El valor seleccionado es inválido.', + 'not_regex' => 'Este formato es inválido.', + 'numeric' => 'Debe ser un número.', + 'password' => 'La contraseña es incorrecta.', + 'present' => 'Este campo debe estar presente.', + 'prohibited' => 'Este campo está prohibido', + 'prohibited_if' => 'Este campo está prohibido cuando :other es :value.', + 'prohibited_unless' => 'Este campo está prohibido a menos que :other sea :values.', + 'regex' => 'Este formato es inválido.', + 'relatable' => 'Este campo no se puede asociar con este recurso.', + 'required' => 'Este campo es requerido.', + 'required_if' => 'Este campo es requerido cuando :other es :value.', + 'required_unless' => 'Este campo es requerido a menos que :other esté en :values.', + 'required_with' => 'Este campo es requerido cuando :values está presente.', + 'required_with_all' => 'Este campo es requerido cuando :values están presentes.', + 'required_without' => 'Este campo es requerido cuando :values no está presente.', + 'required_without_all' => 'Este campo es requerido cuando ninguno de :values están presentes.', + 'same' => 'El valor de este campo debe ser igual a :other.', + 'size' => [ + 'array' => 'El contenido debe tener :size elementos.', + 'file' => 'El tamaño del archivo debe ser de :size kilobytes.', + 'numeric' => 'El valor debe ser :size.', + 'string' => 'El texto debe ser de :size caracteres.', + ], + 'starts_with' => 'Debe comenzar con alguno de los siguientes valores: :values.', + 'string' => 'Debe ser un texto.', + 'timezone' => 'Debe ser de una zona horaria válida.', + 'unique' => 'Este campo ya ha sido tomado.', + 'uploaded' => 'Falló al subir.', + 'url' => 'Este formato es inválido.', + 'uuid' => 'Debe ser un UUID válido.', + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + 'attributes' => [], +]; diff --git a/resources/lang/es/validation.php b/resources/lang/es/validation.php index 8fef162d9..61c76257c 100644 --- a/resources/lang/es/validation.php +++ b/resources/lang/es/validation.php @@ -1,185 +1,169 @@ ':attribute debe ser aceptado.', - 'active_url' => ':attribute no es una URL válida.', - 'after' => ':attribute debe ser una fecha posterior a :date.', - 'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.', - 'alpha' => ':attribute sólo debe contener letras.', - 'alpha_dash' => ':attribute sólo debe contener letras, números, guiones y guiones bajos.', - 'alpha_num' => ':attribute sólo debe contener letras y números.', - 'array' => ':attribute debe ser un conjunto.', - 'before' => ':attribute debe ser una fecha anterior a :date.', - 'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.', - 'between' => [ +return [ + 'accepted' => ':attribute debe ser aceptado.', + 'active_url' => ':attribute no es una URL válida.', + 'after' => ':attribute debe ser una fecha posterior a :date.', + 'after_or_equal' => ':attribute debe ser una fecha posterior o igual a :date.', + 'alpha' => ':attribute sólo debe contener letras.', + 'alpha_dash' => ':attribute sólo debe contener letras, números, guiones y guiones bajos.', + 'alpha_num' => ':attribute sólo debe contener letras y números.', + 'array' => ':attribute debe ser un conjunto.', + 'attached' => 'Este :attribute ya se adjuntó.', + 'before' => ':attribute debe ser una fecha anterior a :date.', + 'before_or_equal' => ':attribute debe ser una fecha anterior o igual a :date.', + 'between' => [ + 'array' => ':attribute tiene que tener entre :min - :max elementos.', + 'file' => ':attribute debe pesar entre :min - :max kilobytes.', 'numeric' => ':attribute tiene que estar entre :min - :max.', - 'file' => ':attribute debe pesar entre :min - :max kilobytes.', - 'string' => ':attribute tiene que tener entre :min - :max caracteres.', - 'array' => ':attribute tiene que tener entre :min - :max elementos.', + 'string' => ':attribute tiene que tener entre :min - :max caracteres.', ], - 'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.', - 'confirmed' => 'La confirmación de :attribute no coincide.', - 'date' => ':attribute no es una fecha válida.', - 'date_equals' => ':attribute debe ser una fecha igual a :date.', - 'date_format' => ':attribute no corresponde al formato :format.', - 'different' => ':attribute y :other deben ser diferentes.', - 'digits' => ':attribute debe tener :digits dígitos.', - 'digits_between' => ':attribute debe tener entre :min y :max dígitos.', - 'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.', - 'distinct' => 'El campo :attribute contiene un valor duplicado.', - 'email' => ':attribute no es un correo válido.', - 'ends_with' => 'El campo :attribute debe finalizar con uno de los siguientes valores: :values', - 'exists' => ':attribute es inválido.', - 'file' => 'El campo :attribute debe ser un archivo.', - 'filled' => 'El campo :attribute es obligatorio.', - 'gt' => [ + 'boolean' => 'El campo :attribute debe tener un valor verdadero o falso.', + 'confirmed' => 'La confirmación de :attribute no coincide.', + 'date' => ':attribute no es una fecha válida.', + 'date_equals' => ':attribute debe ser una fecha igual a :date.', + 'date_format' => ':attribute no corresponde al formato :format.', + 'different' => ':attribute y :other deben ser diferentes.', + 'digits' => ':attribute debe tener :digits dígitos.', + 'digits_between' => ':attribute debe tener entre :min y :max dígitos.', + 'dimensions' => 'Las dimensiones de la imagen :attribute no son válidas.', + 'distinct' => 'El campo :attribute contiene un valor duplicado.', + 'email' => ':attribute no es un correo válido.', + 'ends_with' => 'El campo :attribute debe finalizar con uno de los siguientes valores: :values', + 'exists' => ':attribute es inválido.', + 'file' => 'El campo :attribute debe ser un archivo.', + 'filled' => 'El campo :attribute es obligatorio.', + 'gt' => [ + 'array' => 'El campo :attribute debe tener más de :value elementos.', + 'file' => 'El campo :attribute debe tener más de :value kilobytes.', 'numeric' => 'El campo :attribute debe ser mayor que :value.', - 'file' => 'El campo :attribute debe tener más de :value kilobytes.', - 'string' => 'El campo :attribute debe tener más de :value caracteres.', - 'array' => 'El campo :attribute debe tener más de :value elementos.', + 'string' => 'El campo :attribute debe tener más de :value caracteres.', ], - 'gte' => [ + 'gte' => [ + 'array' => 'El campo :attribute debe tener como mínimo :value elementos.', + 'file' => 'El campo :attribute debe tener como mínimo :value kilobytes.', 'numeric' => 'El campo :attribute debe ser como mínimo :value.', - 'file' => 'El campo :attribute debe tener como mínimo :value kilobytes.', - 'string' => 'El campo :attribute debe tener como mínimo :value caracteres.', - 'array' => 'El campo :attribute debe tener como mínimo :value elementos.', + 'string' => 'El campo :attribute debe tener como mínimo :value caracteres.', ], - 'image' => ':attribute debe ser una imagen.', - 'in' => ':attribute es inválido.', - 'in_array' => 'El campo :attribute no existe en :other.', - 'integer' => ':attribute debe ser un número entero.', - 'ip' => ':attribute debe ser una dirección IP válida.', - 'ipv4' => ':attribute debe ser un dirección IPv4 válida.', - 'ipv6' => ':attribute debe ser un dirección IPv6 válida.', - 'json' => 'El campo :attribute debe ser una cadena JSON válida.', - 'lt' => [ + 'image' => ':attribute debe ser una imagen.', + 'in' => ':attribute es inválido.', + 'in_array' => 'El campo :attribute no existe en :other.', + 'integer' => ':attribute debe ser un número entero.', + 'ip' => ':attribute debe ser una dirección IP válida.', + 'ipv4' => ':attribute debe ser una dirección IPv4 válida.', + 'ipv6' => ':attribute debe ser una dirección IPv6 válida.', + 'json' => 'El campo :attribute debe ser una cadena JSON válida.', + 'lt' => [ + 'array' => 'El campo :attribute debe tener menos de :value elementos.', + 'file' => 'El campo :attribute debe tener menos de :value kilobytes.', 'numeric' => 'El campo :attribute debe ser menor que :value.', - 'file' => 'El campo :attribute debe tener menos de :value kilobytes.', - 'string' => 'El campo :attribute debe tener menos de :value caracteres.', - 'array' => 'El campo :attribute debe tener menos de :value elementos.', + 'string' => 'El campo :attribute debe tener menos de :value caracteres.', ], - 'lte' => [ + 'lte' => [ + 'array' => 'El campo :attribute debe tener como máximo :value elementos.', + 'file' => 'El campo :attribute debe tener como máximo :value kilobytes.', 'numeric' => 'El campo :attribute debe ser como máximo :value.', - 'file' => 'El campo :attribute debe tener como máximo :value kilobytes.', - 'string' => 'El campo :attribute debe tener como máximo :value caracteres.', - 'array' => 'El campo :attribute debe tener como máximo :value elementos.', + 'string' => 'El campo :attribute debe tener como máximo :value caracteres.', ], - 'max' => [ + 'max' => [ + 'array' => ':attribute no debe tener más de :max elementos.', + 'file' => ':attribute no debe ser mayor que :max kilobytes.', 'numeric' => ':attribute no debe ser mayor que :max.', - 'file' => ':attribute no debe ser mayor que :max kilobytes.', - 'string' => ':attribute no debe ser mayor que :max caracteres.', - 'array' => ':attribute no debe tener más de :max elementos.', + 'string' => ':attribute no debe ser mayor que :max caracteres.', ], - 'mimes' => ':attribute debe ser un archivo con formato: :values.', - 'mimetypes' => ':attribute debe ser un archivo con formato: :values.', - 'min' => [ + 'mimes' => ':attribute debe ser un archivo con formato: :values.', + 'mimetypes' => ':attribute debe ser un archivo con formato: :values.', + 'min' => [ + 'array' => ':attribute debe tener al menos :min elementos.', + 'file' => 'El tamaño de :attribute debe ser de al menos :min kilobytes.', 'numeric' => 'El tamaño de :attribute debe ser de al menos :min.', - 'file' => 'El tamaño de :attribute debe ser de al menos :min kilobytes.', - 'string' => ':attribute debe contener al menos :min caracteres.', - 'array' => ':attribute debe tener al menos :min elementos.', + 'string' => ':attribute debe contener al menos :min caracteres.', ], - 'not_in' => ':attribute es inválido.', - 'not_regex' => 'El formato del campo :attribute no es válido.', - 'numeric' => ':attribute debe ser numérico.', - 'password' => 'La contraseña es incorrecta.', - 'present' => 'El campo :attribute debe estar presente.', - 'regex' => 'El formato de :attribute es inválido.', - 'required' => 'El campo :attribute es obligatorio.', - 'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.', - 'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.', - 'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.', - 'required_with_all' => 'El campo :attribute es obligatorio cuando :values están presentes.', - 'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.', + 'multiple_of' => 'El campo :attribute debe ser múltiplo de :value', + 'not_in' => ':attribute es inválido.', + 'not_regex' => 'El formato del campo :attribute no es válido.', + 'numeric' => ':attribute debe ser numérico.', + 'password' => 'La contraseña es incorrecta.', + 'present' => 'El campo :attribute debe estar presente.', + 'prohibited' => 'El campo :attribute está prohibido.', + 'prohibited_if' => 'El campo :attribute está prohibido cuando :other es :value.', + 'prohibited_unless' => 'El campo :attribute está prohibido a menos que :other sea :values.', + 'regex' => 'El formato de :attribute es inválido.', + 'relatable' => 'Este :attribute no se puede asociar con este recurso', + 'required' => 'El campo :attribute es obligatorio.', + 'required_if' => 'El campo :attribute es obligatorio cuando :other es :value.', + 'required_unless' => 'El campo :attribute es obligatorio a menos que :other esté en :values.', + 'required_with' => 'El campo :attribute es obligatorio cuando :values está presente.', + 'required_with_all' => 'El campo :attribute es obligatorio cuando :values están presentes.', + 'required_without' => 'El campo :attribute es obligatorio cuando :values no está presente.', 'required_without_all' => 'El campo :attribute es obligatorio cuando ninguno de :values está presente.', - 'same' => ':attribute y :other deben coincidir.', - 'size' => [ + 'same' => ':attribute y :other deben coincidir.', + 'size' => [ + 'array' => ':attribute debe contener :size elementos.', + 'file' => 'El tamaño de :attribute debe ser :size kilobytes.', 'numeric' => 'El tamaño de :attribute debe ser :size.', - 'file' => 'El tamaño de :attribute debe ser :size kilobytes.', - 'string' => ':attribute debe contener :size caracteres.', - 'array' => ':attribute debe contener :size elementos.', + 'string' => ':attribute debe contener :size caracteres.', ], - 'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values', - 'string' => 'El campo :attribute debe ser una cadena de caracteres.', - 'timezone' => 'El :attribute debe ser una zona válida.', - 'unique' => 'El campo :attribute ya ha sido registrado.', - 'uploaded' => 'Subir :attribute ha fallado.', - 'url' => 'El formato :attribute es inválido.', - 'uuid' => 'El campo :attribute debe ser un UUID válido.', - - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - - 'custom' => [ + 'starts_with' => 'El campo :attribute debe comenzar con uno de los siguientes valores: :values', + 'string' => 'El campo :attribute debe ser una cadena de caracteres.', + 'timezone' => 'El :attribute debe ser una zona válida.', + 'unique' => 'El campo :attribute ya ha sido registrado.', + 'uploaded' => 'Subir :attribute ha fallado.', + 'url' => 'El formato :attribute es inválido.', + 'uuid' => 'El campo :attribute debe ser un UUID válido.', + 'custom' => [ + 'email' => [ + 'unique' => 'El :attribute ya ha sido registrado.', + ], 'password' => [ 'min' => 'La :attribute debe contener más de :min caracteres', ], - 'email' => [ - 'unique' => 'El :attribute ya ha sido registrado.', - ], ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - - 'attributes' => [ - 'address' => 'dirección', - 'age' => 'edad', - 'body' => 'contenido', - 'city' => 'ciudad', - 'content' => 'contenido', - 'country' => 'país', - 'date' => 'fecha', - 'day' => 'día', - 'description' => 'descripción', - 'email' => 'correo electrónico', - 'excerpt' => 'extracto', - 'first_name' => 'nombre', - 'gender' => 'género', - 'hour' => 'hora', - 'last_name' => 'apellido', - 'message' => 'mensaje', - 'minute' => 'minuto', - 'mobile' => 'móvil', - 'month' => 'mes', - 'name' => 'nombre', - 'password' => 'contraseña', + 'attributes' => [ + 'address' => 'dirección', + 'age' => 'edad', + 'body' => 'contenido', + 'city' => 'ciudad', + 'content' => 'contenido', + 'country' => 'país', + 'current_password' => 'contraseña actual', + 'date' => 'fecha', + 'day' => 'día', + 'description' => 'descripción', + 'email' => 'correo electrónico', + 'excerpt' => 'extracto', + 'first_name' => 'nombre', + 'gender' => 'género', + 'hour' => 'hora', + 'last_name' => 'apellido', + 'message' => 'mensaje', + 'minute' => 'minuto', + 'mobile' => 'móvil', + 'month' => 'mes', + 'name' => 'nombre', + 'password' => 'contraseña', 'password_confirmation' => 'confirmación de la contraseña', - 'phone' => 'teléfono', - 'price' => 'precio', - 'second' => 'segundo', - 'sex' => 'sexo', - 'subject' => 'asunto', - 'terms' => 'términos', - 'time' => 'hora', - 'title' => 'título', - 'username' => 'usuario', - 'year' => 'año', + 'phone' => 'teléfono', + 'price' => 'precio', + 'role' => 'rol', + 'second' => 'segundo', + 'sex' => 'sexo', + 'subject' => 'asunto', + 'terms' => 'términos', + 'time' => 'hora', + 'title' => 'título', + 'username' => 'usuario', + 'year' => 'año', ], ]; diff --git a/resources/lang/fr.json b/resources/lang/fr.json index 289bf03de..f919bdf8b 100644 --- a/resources/lang/fr.json +++ b/resources/lang/fr.json @@ -1 +1 @@ -{":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/resources/lang/fr/auth.php b/resources/lang/fr/auth.php index e07c234d7..e808c61b4 100644 --- a/resources/lang/fr/auth.php +++ b/resources/lang/fr/auth.php @@ -1,17 +1,18 @@ 'Ces identifiants ne correspondent pas à nos enregistrements', +return [ + 'failed' => 'Ces identifiants ne correspondent pas à nos enregistrements.', + 'password' => 'Le mot de passe fourni est incorrect.', 'throttle' => 'Tentatives de connexion trop nombreuses. Veuillez essayer de nouveau dans :seconds secondes.', ]; diff --git a/resources/lang/fr/pagination.php b/resources/lang/fr/pagination.php index 85e0d87c8..efa11ec19 100644 --- a/resources/lang/fr/pagination.php +++ b/resources/lang/fr/pagination.php @@ -1,17 +1,17 @@ 'Suivant »', 'previous' => '« Précédent', - 'next' => 'Suivant »', ]; diff --git a/resources/lang/fr/passwords.php b/resources/lang/fr/passwords.php index 5e9190264..dd0681866 100644 --- a/resources/lang/fr/passwords.php +++ b/resources/lang/fr/passwords.php @@ -1,20 +1,20 @@ 'Les mots de passe doivent être identiques et être composés d\'au moins 6 caractères.', - 'reset' => 'Votre mot de passe a été réinitialisé !', - 'sent' => 'Nous vous avons envoyé par email le lien de réinitialisation du mot de passe !', + 'reset' => 'Votre mot de passe a été réinitialisé !', + 'sent' => 'Nous vous avons envoyé par email le lien de réinitialisation du mot de passe !', 'throttled' => 'Veuillez patienter avant de réessayer.', - 'token' => "Ce jeton de réinitialisation du mot de passe n'est pas valide.", - 'user' => "Aucun utilisateur n'a été trouvé avec cette adresse email.", + 'token' => 'Ce jeton de réinitialisation du mot de passe n\'est pas valide.', + 'user' => 'Aucun utilisateur n\'a été trouvé avec cette adresse email.', ]; diff --git a/resources/lang/fr/validation-inline.php b/resources/lang/fr/validation-inline.php new file mode 100644 index 000000000..a06110a71 --- /dev/null +++ b/resources/lang/fr/validation-inline.php @@ -0,0 +1,131 @@ + 'Ce champ doit être accepté.', + 'active_url' => 'Ce n\'est pas une URL valide', + 'after' => 'La date doit être postérieure au :date.', + 'after_or_equal' => 'La date doit être postérieure ou égale au :date.', + 'alpha' => 'Ce champ doit contenir uniquement des lettres', + 'alpha_dash' => 'Ce champ doit contenir uniquement des lettres, des chiffres et des tirets.', + 'alpha_num' => 'Ce champ doit contenir uniquement des chiffres et des lettres.', + 'array' => 'Ce champ doit être un tableau.', + 'attached' => 'Ce champ est déjà attaché.', + 'before' => 'Ce champ doit être une date antérieure au :date.', + 'before_or_equal' => 'Ce champ doit être une date antérieure ou égale au :date.', + 'between' => [ + 'array' => 'Le tableau doit contenir entre :min et :max éléments.', + 'file' => 'La taille du fichier doit être comprise entre :min et :max kilo-octets.', + 'numeric' => 'La valeur doit être comprise entre :min et :max.', + 'string' => 'Le texte doit contenir entre :min et :max caractères.', + ], + 'boolean' => 'Ce champ doit être vrai ou faux.', + 'confirmed' => 'Le champ de confirmation ne correspond pas.', + 'date' => 'Ce n\'est pas une date valide.', + 'date_equals' => 'La date doit être égale à :date.', + 'date_format' => 'Ce champ ne correspond pas au format :format.', + 'different' => 'Cette valeur doit être différente de :other.', + 'digits' => 'Ce champ doit contenir :digits chiffres.', + 'digits_between' => 'Ce champ doit contenir entre :min et :max chiffres.', + 'dimensions' => 'La taille de l\'image n\'est pas conforme.', + 'distinct' => 'Ce champ a une valeur en double.', + 'email' => 'Ce champ doit être une adresse email valide.', + 'ends_with' => 'Ce champ doit se terminer par une des valeurs suivantes : :values', + 'exists' => 'Ce champ sélectionné est invalide.', + 'file' => 'Ce champ doit être un fichier.', + 'filled' => 'Ce champ doit avoir une valeur.', + 'gt' => [ + 'array' => 'Le tableau doit contenir plus de :value éléments.', + 'file' => 'La taille du fichier doit être supérieure à :value kilo-octets.', + 'numeric' => 'La valeur doit être supérieure à :value.', + 'string' => 'Le texte doit contenir plus de :value caractères.', + ], + 'gte' => [ + 'array' => 'Le tableau doit contenir au moins :value éléments.', + 'file' => 'La taille du fichier doit être supérieure ou égale à :value kilo-octets.', + 'numeric' => 'La valeur doit être supérieure ou égale à :value.', + 'string' => 'Le texte doit contenir au moins :value caractères.', + ], + 'image' => 'Ce champ doit être une image.', + 'in' => 'Ce champ est invalide.', + 'in_array' => 'Ce champ n\'existe pas dans :other.', + 'integer' => 'Ce champ doit être un entier.', + 'ip' => 'Ce champ doit être une adresse IP valide.', + 'ipv4' => 'Ce champ doit être une adresse IPv4 valide.', + 'ipv6' => 'Ce champ doit être une adresse IPv6 valide.', + 'json' => 'Ce champ doit être un document JSON valide.', + 'lt' => [ + 'array' => 'Le tableau doit contenir moins de :value éléments.', + 'file' => 'La taille du fichier doit être inférieure à :value kilo-octets.', + 'numeric' => 'La valeur doit être inférieure à :value.', + 'string' => 'Le texte doit contenir moins de :value caractères.', + ], + 'lte' => [ + 'array' => 'Le tableau doit contenir au plus :value éléments.', + 'file' => 'La taille du fichier doit être inférieure ou égale à :value kilo-octets.', + 'numeric' => 'La valeur doit être inférieure ou égale à :value.', + 'string' => 'Le texte doit contenir au plus :value caractères.', + ], + 'max' => [ + 'array' => 'Le tableau ne peut contenir plus de :max éléments.', + 'file' => 'La taille du fichier ne peut pas dépasser :max kilo-octets.', + 'numeric' => 'La valeur ne peut être supérieure à :max.', + 'string' => 'Le texte ne peut contenir plus de :max caractères.', + ], + 'mimes' => 'Le fichier doit être de type : :values.', + 'mimetypes' => 'Le fichier doit être de type : :values.', + 'min' => [ + 'array' => 'Le tableau doit contenir au moins :min éléments.', + 'file' => 'La taille du fichier doit être supérieure à :min kilo-octets.', + 'numeric' => 'La valeur doit être supérieure ou égale à :min.', + 'string' => 'Le texte doit contenir au moins :min caractères.', + ], + 'multiple_of' => 'La valeur doit être un multiple de :value', + 'not_in' => 'Le champ sélectionné n\'est pas valide.', + 'not_regex' => 'Le format du champ n\'est pas valide.', + 'numeric' => 'Ce champ doit contenir un nombre.', + 'password' => 'Le mot de passe est incorrect', + 'present' => 'Ce champ doit être présent.', + 'prohibited' => 'Ce champ est interdit', + 'prohibited_if' => 'Ce champ est interdit quand :other a la valeur :value.', + 'prohibited_unless' => 'Ce champ est interdit à moins que :other ait l\'une des valeurs :values.', + 'regex' => 'Le format du champ est invalide.', + 'relatable' => 'Ce champ n\'est sans doute pas associé avec cette donnée.', + 'required' => 'Ce champ est obligatoire.', + 'required_if' => 'Ce champ est obligatoire quand la valeur de :other est :value.', + 'required_unless' => 'Ce champ est obligatoire sauf si :other est :values.', + 'required_with' => 'Ce champ est obligatoire quand :values est présent.', + 'required_with_all' => 'Ce champ est obligatoire quand :values sont présents.', + 'required_without' => 'Ce champ est obligatoire quand :values n\'est pas présent.', + 'required_without_all' => 'Ce champ est requis quand aucun de :values n\'est présent.', + 'same' => 'Ce champ doit être identique à :other.', + 'size' => [ + 'array' => 'Le tableau doit contenir :size éléments.', + 'file' => 'La taille du fichier doit être de :size kilo-octets.', + 'numeric' => 'La valeur doit être :size.', + 'string' => 'Le texte doit contenir :size caractères.', + ], + 'starts_with' => 'Ce champ doit commencer avec une des valeurs suivantes : :values', + 'string' => 'Ce champ doit être une chaîne de caractères.', + 'timezone' => 'Ce champ doit être un fuseau horaire valide.', + 'unique' => 'La valeur est déjà utilisée.', + 'uploaded' => 'Le fichier n\'a pu être téléversé.', + 'url' => 'Le format de l\'URL n\'est pas valide.', + 'uuid' => 'Ce champ doit être un UUID valide', + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + 'attributes' => [], +]; diff --git a/resources/lang/fr/validation.php b/resources/lang/fr/validation.php index aa56b822a..5940e43ac 100644 --- a/resources/lang/fr/validation.php +++ b/resources/lang/fr/validation.php @@ -1,179 +1,162 @@ 'Le champ :attribute doit être accepté.', - 'active_url' => "Le champ :attribute n'est pas une URL valide.", - 'after' => 'Le champ :attribute doit être une date postérieure au :date.', - 'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale au :date.', - 'alpha' => 'Le champ :attribute doit contenir uniquement des lettres.', - 'alpha_dash' => 'Le champ :attribute doit contenir uniquement des lettres, des chiffres et des tirets.', - 'alpha_num' => 'Le champ :attribute doit contenir uniquement des chiffres et des lettres.', - 'array' => 'Le champ :attribute doit être un tableau.', - 'before' => 'Le champ :attribute doit être une date antérieure au :date.', - 'before_or_equal' => 'Le champ :attribute doit être une date antérieure ou égale au :date.', - 'between' => [ +return [ + 'accepted' => 'Le champ :attribute doit être accepté.', + 'active_url' => 'Le champ :attribute n\'est pas une URL valide.', + 'after' => 'Le champ :attribute doit être une date postérieure au :date.', + 'after_or_equal' => 'Le champ :attribute doit être une date postérieure ou égale au :date.', + 'alpha' => 'Le champ :attribute doit contenir uniquement des lettres.', + 'alpha_dash' => 'Le champ :attribute doit contenir uniquement des lettres, des chiffres et des tirets.', + 'alpha_num' => 'Le champ :attribute doit contenir uniquement des chiffres et des lettres.', + 'array' => 'Le champ :attribute doit être un tableau.', + 'attached' => ':attribute est déjà attaché(e).', + 'before' => 'Le champ :attribute doit être une date antérieure au :date.', + 'before_or_equal' => 'Le champ :attribute doit être une date antérieure ou égale au :date.', + 'between' => [ + 'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.', + 'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.', 'numeric' => 'La valeur de :attribute doit être comprise entre :min et :max.', - 'file' => 'La taille du fichier de :attribute doit être comprise entre :min et :max kilo-octets.', - 'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.', - 'array' => 'Le tableau :attribute doit contenir entre :min et :max éléments.', + 'string' => 'Le texte :attribute doit contenir entre :min et :max caractères.', ], - 'boolean' => 'Le champ :attribute doit être vrai ou faux.', - 'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.', - 'date' => "Le champ :attribute n'est pas une date valide.", - 'date_equals' => 'Le champ :attribute doit être une date égale à :date.', - 'date_format' => 'Le champ :attribute ne correspond pas au format :format.', - 'different' => 'Les champs :attribute et :other doivent être différents.', - 'digits' => 'Le champ :attribute doit contenir :digits chiffres.', - 'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.', - 'dimensions' => "La taille de l'image :attribute n'est pas conforme.", - 'distinct' => 'Le champ :attribute a une valeur en double.', - 'email' => 'Le champ :attribute doit être une adresse email valide.', - 'ends_with' => 'Le champ :attribute doit se terminer par une des valeurs suivantes : :values', - 'exists' => 'Le champ :attribute sélectionné est invalide.', - 'file' => 'Le champ :attribute doit être un fichier.', - 'filled' => 'Le champ :attribute doit avoir une valeur.', - 'gt' => [ + 'boolean' => 'Le champ :attribute doit être vrai ou faux.', + 'confirmed' => 'Le champ de confirmation :attribute ne correspond pas.', + 'date' => 'Le champ :attribute n\'est pas une date valide.', + 'date_equals' => 'Le champ :attribute doit être une date égale à :date.', + 'date_format' => 'Le champ :attribute ne correspond pas au format :format.', + 'different' => 'Les champs :attribute et :other doivent être différents.', + 'digits' => 'Le champ :attribute doit contenir :digits chiffres.', + 'digits_between' => 'Le champ :attribute doit contenir entre :min et :max chiffres.', + 'dimensions' => 'La taille de l\'image :attribute n\'est pas conforme.', + 'distinct' => 'Le champ :attribute a une valeur en double.', + 'email' => 'Le champ :attribute doit être une adresse email valide.', + 'ends_with' => 'Le champ :attribute doit se terminer par une des valeurs suivantes : :values', + 'exists' => 'Le champ :attribute sélectionné est invalide.', + 'file' => 'Le champ :attribute doit être un fichier.', + 'filled' => 'Le champ :attribute doit avoir une valeur.', + 'gt' => [ + 'array' => 'Le tableau :attribute doit contenir plus de :value éléments.', + 'file' => 'La taille du fichier de :attribute doit être supérieure à :value kilo-octets.', 'numeric' => 'La valeur de :attribute doit être supérieure à :value.', - 'file' => 'La taille du fichier de :attribute doit être supérieure à :value kilo-octets.', - 'string' => 'Le texte :attribute doit contenir plus de :value caractères.', - 'array' => 'Le tableau :attribute doit contenir plus de :value éléments.', + 'string' => 'Le texte :attribute doit contenir plus de :value caractères.', ], - 'gte' => [ + 'gte' => [ + 'array' => 'Le tableau :attribute doit contenir au moins :value éléments.', + 'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :value kilo-octets.', 'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :value.', - 'file' => 'La taille du fichier de :attribute doit être supérieure ou égale à :value kilo-octets.', - 'string' => 'Le texte :attribute doit contenir au moins :value caractères.', - 'array' => 'Le tableau :attribute doit contenir au moins :value éléments.', + 'string' => 'Le texte :attribute doit contenir au moins :value caractères.', ], - 'image' => 'Le champ :attribute doit être une image.', - 'in' => 'Le champ :attribute est invalide.', - 'in_array' => "Le champ :attribute n'existe pas dans :other.", - 'integer' => 'Le champ :attribute doit être un entier.', - 'ip' => 'Le champ :attribute doit être une adresse IP valide.', - 'ipv4' => 'Le champ :attribute doit être une adresse IPv4 valide.', - 'ipv6' => 'Le champ :attribute doit être une adresse IPv6 valide.', - 'json' => 'Le champ :attribute doit être un document JSON valide.', - 'lt' => [ + 'image' => 'Le champ :attribute doit être une image.', + 'in' => 'Le champ :attribute est invalide.', + 'in_array' => 'Le champ :attribute n\'existe pas dans :other.', + 'integer' => 'Le champ :attribute doit être un entier.', + 'ip' => 'Le champ :attribute doit être une adresse IP valide.', + 'ipv4' => 'Le champ :attribute doit être une adresse IPv4 valide.', + 'ipv6' => 'Le champ :attribute doit être une adresse IPv6 valide.', + 'json' => 'Le champ :attribute doit être un document JSON valide.', + 'lt' => [ + 'array' => 'Le tableau :attribute doit contenir moins de :value éléments.', + 'file' => 'La taille du fichier de :attribute doit être inférieure à :value kilo-octets.', 'numeric' => 'La valeur de :attribute doit être inférieure à :value.', - 'file' => 'La taille du fichier de :attribute doit être inférieure à :value kilo-octets.', - 'string' => 'Le texte :attribute doit contenir moins de :value caractères.', - 'array' => 'Le tableau :attribute doit contenir moins de :value éléments.', + 'string' => 'Le texte :attribute doit contenir moins de :value caractères.', ], - 'lte' => [ + 'lte' => [ + 'array' => 'Le tableau :attribute doit contenir au plus :value éléments.', + 'file' => 'La taille du fichier de :attribute doit être inférieure ou égale à :value kilo-octets.', 'numeric' => 'La valeur de :attribute doit être inférieure ou égale à :value.', - 'file' => 'La taille du fichier de :attribute doit être inférieure ou égale à :value kilo-octets.', - 'string' => 'Le texte :attribute doit contenir au plus :value caractères.', - 'array' => 'Le tableau :attribute doit contenir au plus :value éléments.', + 'string' => 'Le texte :attribute doit contenir au plus :value caractères.', ], - 'max' => [ + 'max' => [ + 'array' => 'Le tableau :attribute ne peut contenir plus de :max éléments.', + 'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.', 'numeric' => 'La valeur de :attribute ne peut être supérieure à :max.', - 'file' => 'La taille du fichier de :attribute ne peut pas dépasser :max kilo-octets.', - 'string' => 'Le texte de :attribute ne peut contenir plus de :max caractères.', - 'array' => 'Le tableau :attribute ne peut contenir plus de :max éléments.', + 'string' => 'Le texte de :attribute ne peut contenir plus de :max caractères.', ], - 'mimes' => 'Le champ :attribute doit être un fichier de type : :values.', - 'mimetypes' => 'Le champ :attribute doit être un fichier de type : :values.', - 'min' => [ + 'mimes' => 'Le champ :attribute doit être un fichier de type : :values.', + 'mimetypes' => 'Le champ :attribute doit être un fichier de type : :values.', + 'min' => [ + 'array' => 'Le tableau :attribute doit contenir au moins :min éléments.', + 'file' => 'La taille du fichier de :attribute doit être supérieure à :min kilo-octets.', 'numeric' => 'La valeur de :attribute doit être supérieure ou égale à :min.', - 'file' => 'La taille du fichier de :attribute doit être supérieure à :min kilo-octets.', - 'string' => 'Le texte :attribute doit contenir au moins :min caractères.', - 'array' => 'Le tableau :attribute doit contenir au moins :min éléments.', + 'string' => 'Le texte :attribute doit contenir au moins :min caractères.', ], - 'not_in' => "Le champ :attribute sélectionné n'est pas valide.", - 'not_regex' => "Le format du champ :attribute n'est pas valide.", - 'numeric' => 'Le champ :attribute doit contenir un nombre.', - 'password' => 'Le mot de passe est incorrect', - 'present' => 'Le champ :attribute doit être présent.', - 'regex' => 'Le format du champ :attribute est invalide.', - 'required' => 'Le champ :attribute est obligatoire.', - 'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.', - 'required_unless' => 'Le champ :attribute est obligatoire sauf si :other est :values.', - 'required_with' => 'Le champ :attribute est obligatoire quand :values est présent.', - 'required_with_all' => 'Le champ :attribute est obligatoire quand :values sont présents.', - 'required_without' => "Le champ :attribute est obligatoire quand :values n'est pas présent.", - 'required_without_all' => "Le champ :attribute est requis quand aucun de :values n'est présent.", - 'same' => 'Les champs :attribute et :other doivent être identiques.', - 'size' => [ + 'multiple_of' => 'La valeur de :attribute doit être un multiple de :value', + 'not_in' => 'Le champ :attribute sélectionné n\'est pas valide.', + 'not_regex' => 'Le format du champ :attribute n\'est pas valide.', + 'numeric' => 'Le champ :attribute doit contenir un nombre.', + 'password' => 'Le mot de passe est incorrect', + 'present' => 'Le champ :attribute doit être présent.', + 'prohibited' => 'Le champ :attribute est interdit.', + 'prohibited_if' => 'Le champ :attribute est interdit quand :other a la valeur :value.', + 'prohibited_unless' => 'Le champ :attribute est interdit à moins que :other est l\'une des valeurs :values.', + 'regex' => 'Le format du champ :attribute est invalide.', + 'relatable' => ':attribute n\'est sans doute pas associé(e) avec cette donnée.', + 'required' => 'Le champ :attribute est obligatoire.', + 'required_if' => 'Le champ :attribute est obligatoire quand la valeur de :other est :value.', + 'required_unless' => 'Le champ :attribute est obligatoire sauf si :other est :values.', + 'required_with' => 'Le champ :attribute est obligatoire quand :values est présent.', + 'required_with_all' => 'Le champ :attribute est obligatoire quand :values sont présents.', + 'required_without' => 'Le champ :attribute est obligatoire quand :values n\'est pas présent.', + 'required_without_all' => 'Le champ :attribute est requis quand aucun de :values n\'est présent.', + 'same' => 'Les champs :attribute et :other doivent être identiques.', + 'size' => [ + 'array' => 'Le tableau :attribute doit contenir :size éléments.', + 'file' => 'La taille du fichier de :attribute doit être de :size kilo-octets.', 'numeric' => 'La valeur de :attribute doit être :size.', - 'file' => 'La taille du fichier de :attribute doit être de :size kilo-octets.', - 'string' => 'Le texte de :attribute doit contenir :size caractères.', - 'array' => 'Le tableau :attribute doit contenir :size éléments.', + 'string' => 'Le texte de :attribute doit contenir :size caractères.', ], - 'starts_with' => 'Le champ :attribute doit commencer avec une des valeurs suivantes : :values', - 'string' => 'Le champ :attribute doit être une chaîne de caractères.', - 'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.', - 'unique' => 'La valeur du champ :attribute est déjà utilisée.', - 'uploaded' => "Le fichier du champ :attribute n'a pu être téléversé.", - 'url' => "Le format de l'URL de :attribute n'est pas valide.", - 'uuid' => 'Le champ :attribute doit être un UUID valide', - - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - - 'custom' => [ + 'starts_with' => 'Le champ :attribute doit commencer avec une des valeurs suivantes : :values', + 'string' => 'Le champ :attribute doit être une chaîne de caractères.', + 'timezone' => 'Le champ :attribute doit être un fuseau horaire valide.', + 'unique' => 'La valeur du champ :attribute est déjà utilisée.', + 'uploaded' => 'Le fichier du champ :attribute n\'a pu être téléversé.', + 'url' => 'Le format de l\'URL de :attribute n\'est pas valide.', + 'uuid' => 'Le champ :attribute doit être un UUID valide', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - - 'attributes' => [ - 'name' => 'nom', - 'username' => "nom d'utilisateur", - 'email' => 'adresse email', - 'first_name' => 'prénom', - 'last_name' => 'nom', - 'password' => 'mot de passe', + 'attributes' => [ + 'address' => 'adresse', + 'age' => 'âge', + 'available' => 'disponible', + 'city' => 'ville', + 'content' => 'contenu', + 'country' => 'pays', + 'current_password' => 'mot de passe actuel', + 'date' => 'date', + 'day' => 'jour', + 'description' => 'description', + 'email' => 'adresse email', + 'excerpt' => 'extrait', + 'first_name' => 'prénom', + 'gender' => 'genre', + 'hour' => 'heure', + 'last_name' => 'nom', + 'minute' => 'minute', + 'mobile' => 'portable', + 'month' => 'mois', + 'name' => 'nom', + 'password' => 'mot de passe', 'password_confirmation' => 'confirmation du mot de passe', - 'city' => 'ville', - 'country' => 'pays', - 'address' => 'adresse', - 'phone' => 'téléphone', - 'mobile' => 'portable', - 'age' => 'âge', - 'sex' => 'sexe', - 'gender' => 'genre', - 'day' => 'jour', - 'month' => 'mois', - 'year' => 'année', - 'hour' => 'heure', - 'minute' => 'minute', - 'second' => 'seconde', - 'title' => 'titre', - 'content' => 'contenu', - 'description' => 'description', - 'excerpt' => 'extrait', - 'date' => 'date', - 'time' => 'heure', - 'available' => 'disponible', - 'size' => 'taille', + 'phone' => 'téléphone', + 'second' => 'seconde', + 'sex' => 'sexe', + 'size' => 'taille', + 'time' => 'heure', + 'title' => 'titre', + 'username' => 'nom d\'utilisateur', + 'year' => 'année', ], ]; diff --git a/resources/lang/hu.json b/resources/lang/hu.json index 289bf03de..f919bdf8b 100644 --- a/resources/lang/hu.json +++ b/resources/lang/hu.json @@ -1 +1 @@ -{":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/resources/lang/hu/auth.php b/resources/lang/hu/auth.php index 9896ef1fc..83df448be 100644 --- a/resources/lang/hu/auth.php +++ b/resources/lang/hu/auth.php @@ -1,17 +1,18 @@ 'Rossz email-jelszó páros.', + 'password' => 'A megadott jelszó helytelen.', 'throttle' => 'Túl sok próbálkozás. Kérjük próbálja újra :seconds másodperc múlva.', ]; diff --git a/resources/lang/hu/pagination.php b/resources/lang/hu/pagination.php index 36390e77d..f0e5ef5a4 100644 --- a/resources/lang/hu/pagination.php +++ b/resources/lang/hu/pagination.php @@ -1,17 +1,17 @@ '« Előző', +return [ 'next' => 'Következő »', + 'previous' => '« Előző', ]; diff --git a/resources/lang/hu/passwords.php b/resources/lang/hu/passwords.php index 50a21a28a..d4245c0d7 100644 --- a/resources/lang/hu/passwords.php +++ b/resources/lang/hu/passwords.php @@ -1,21 +1,20 @@ 'A jelszónak minimum 6 karakter hosszúnak kell lennie és a megerősítéssel egyeznie kell.', - 'reset' => 'Az új jelszó beállítva!', - 'sent' => 'Jelszó-emlékeztető elküldve!', +return [ + 'reset' => 'Az új jelszó beállítva!', + 'sent' => 'Jelszó-emlékeztető elküldve!', 'throttled' => 'Kérjük várjon, mielőtt újra megpróbálná.', - 'token' => 'Ez az új jelszó generálásához tartozó token érvénytelen.', - 'user' => 'Nem található felhasználó a megadott email címmel.', + 'token' => 'Ez az új jelszó generálásához tartozó token érvénytelen.', + 'user' => 'Nem található felhasználó a megadott email címmel.', ]; diff --git a/resources/lang/hu/validation-inline.php b/resources/lang/hu/validation-inline.php new file mode 100644 index 000000000..21228b086 --- /dev/null +++ b/resources/lang/hu/validation-inline.php @@ -0,0 +1,131 @@ + 'Ezt a mezőt el kell fogadni.', + 'active_url' => 'Ez nem érvényes URL.', + 'after' => 'Ez egy dátum :date után.', + 'after_or_equal' => 'Ennek :date után vagy azzal megegyező dátumnak kell lennie.', + 'alpha' => 'Ez a mező csak betűket tartalmazhat.', + 'alpha_dash' => 'Ez a mező csak betűket, számokat, kötőjeleket és aláhúzásokat tartalmazhat.', + 'alpha_num' => 'Ez a mező csak betűket és számokat tartalmazhat.', + 'array' => 'Ennek a mezőnek tömbnek kell lennie.', + 'attached' => 'Ez a mező már csatolva van.', + 'before' => 'Ez egy dátum :date előtt.', + 'before_or_equal' => 'Ennek :date előtti vagy azzal egyenlő dátumnak kell lennie.', + 'between' => [ + 'array' => 'This content must have between :min and :max items.', + 'file' => 'This file must be between :min and :max kilobytes.', + 'numeric' => 'This value must be between :min and :max.', + 'string' => 'This string must be between :min and :max characters.', + ], + 'boolean' => 'Ennek a mezőnek igaznak vagy hamisnak kell lennie.', + 'confirmed' => 'A megerősítés nem egyezik.', + 'date' => 'Ez nem érvényes dátum.', + 'date_equals' => 'Ennek :date-nak kell lennie.', + 'date_format' => 'Ez nem felel meg az :format formátumnak.', + 'different' => 'Ennek az értéknek különböznie kell :other-től.', + 'digits' => 'Ennek :digits számjegynek kell lennie.', + 'digits_between' => 'Ennek :min és :max között kell lennie.', + 'dimensions' => 'Ez a kép érvénytelen méretekkel rendelkezik.', + 'distinct' => 'Ez a mező ismétlődő értékkel rendelkezik.', + 'email' => 'Ennek érvényes e-mail címnek kell lennie.', + 'ends_with' => 'Ennek az alábbiak egyikével kell végződnie: :values.', + 'exists' => 'A kiválasztott érték érvénytelen.', + 'file' => 'A tartalomnak fájlnak kell lennie.', + 'filled' => 'Ennek a mezőnek kell legyen értéke.', + 'gt' => [ + 'array' => 'The content must have more than :value items.', + 'file' => 'The file size must be greater than :value kilobytes.', + 'numeric' => 'The value must be greater than :value.', + 'string' => 'The string must be greater than :value characters.', + ], + 'gte' => [ + 'array' => 'The content must have :value items or more.', + 'file' => 'The file size must be greater than or equal :value kilobytes.', + 'numeric' => 'The value must be greater than or equal :value.', + 'string' => 'The string must be greater than or equal :value characters.', + ], + 'image' => 'Ez egy kép lehet.', + 'in' => 'A kiválasztott érték érvénytelen.', + 'in_array' => 'Ez az érték nem létezik :other-ban.', + 'integer' => 'Ennek egész számnak kell lennie.', + 'ip' => 'Ennek érvényes IP-címnek kell lennie.', + 'ipv4' => 'Ennek érvényes IPv4 címnek kell lennie.', + 'ipv6' => 'Ennek érvényes IPv6 címnek kell lennie.', + 'json' => 'Ez egy érvényes JSON karakterlánc lehet.', + 'lt' => [ + 'array' => 'The content must have less than :value items.', + 'file' => 'The file size must be less than :value kilobytes.', + 'numeric' => 'The value must be less than :value.', + 'string' => 'The string must be less than :value characters.', + ], + 'lte' => [ + 'array' => 'The content must not have more than :value items.', + 'file' => 'The file size must be less than or equal :value kilobytes.', + 'numeric' => 'The value must be less than or equal :value.', + 'string' => 'The string must be less than or equal :value characters.', + ], + 'max' => [ + 'array' => 'The content may not have more than :max items.', + 'file' => 'The file size may not be greater than :max kilobytes.', + 'numeric' => 'The value may not be greater than :max.', + 'string' => 'The string may not be greater than :max characters.', + ], + 'mimes' => 'Ennek a következő típusú fájlnak kell lennie: :values.', + 'mimetypes' => 'Ennek :values típusú fájlnak kell lennie.', + 'min' => [ + 'array' => 'The value must have at least :min items.', + 'file' => 'The file size must be at least :min kilobytes.', + 'numeric' => 'The value must be at least :min.', + 'string' => 'The string must be at least :min characters.', + ], + 'multiple_of' => 'Az értéknek :value többszörösének kell lennie', + 'not_in' => 'A kiválasztott érték érvénytelen.', + 'not_regex' => 'Ez a formátum érvénytelen.', + 'numeric' => 'Ez egy szám lehet.', + 'password' => 'A jelszó helytelen.', + 'present' => 'Ennek a mezőnek jelen kell lennie.', + 'prohibited' => 'Ez a mező tilos.', + 'prohibited_if' => 'Ez a mező tilos, ha :other jelentése :value.', + 'prohibited_unless' => 'Ez a mező tilos, kivéve, ha a :other :values-ben van.', + 'regex' => 'Ez a formátum érvénytelen.', + 'relatable' => 'Lehet, hogy ez a mező nem kapcsolódik ehhez az erőforráshoz.', + 'required' => 'Ez a mező szükséges.', + 'required_if' => 'Erre a mezőre akkor van szükség, ha a :other :value.', + 'required_unless' => 'Erre a mezőre csak akkor van szükség, ha a :other :values-ban van.', + 'required_with' => 'Ez a mező akkor szükséges, ha :values van jelen.', + 'required_with_all' => 'Ez a mező akkor szükséges, ha :values van jelen.', + 'required_without' => 'Ez a mező akkor szükséges, ha :values nincs jelen.', + 'required_without_all' => 'Erre a mezőre akkor van szükség, ha egyik :values sincs jelen.', + 'same' => 'A mező értékének meg kell egyeznie az :other-es értékkel.', + 'size' => [ + 'array' => 'The content must contain :size items.', + 'file' => 'The file size must be :size kilobytes.', + 'numeric' => 'The value must be :size.', + 'string' => 'The string must be :size characters.', + ], + 'starts_with' => 'Ennek az alábbiak egyikével kell kezdődnie: :values.', + 'string' => 'Ez biztos egy string.', + 'timezone' => 'Ennek érvényes zónának kell lennie.', + 'unique' => 'Ezt már elvitték.', + 'uploaded' => 'Ez nem sikerült feltölteni.', + 'url' => 'Ez a formátum érvénytelen.', + 'uuid' => 'Ennek érvényes UUID-nak kell lennie.', + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + 'attributes' => [], +]; diff --git a/resources/lang/hu/validation.php b/resources/lang/hu/validation.php index 10ac8c28c..4688fd5fb 100644 --- a/resources/lang/hu/validation.php +++ b/resources/lang/hu/validation.php @@ -1,152 +1,134 @@ 'A(z) :attribute el kell legyen fogadva!', - 'active_url' => 'A(z) :attribute nem érvényes url!', - 'after' => 'A(z) :attribute :date utáni dátum kell, hogy legyen!', - 'after_or_equal' => 'A(z) :attribute nem lehet korábbi dátum, mint :date!', - 'alpha' => 'A(z) :attribute kizárólag betűket tartalmazhat!', - 'alpha_dash' => 'A(z) :attribute kizárólag betűket, számokat és kötőjeleket tartalmazhat!', - 'alpha_num' => 'A(z) :attribute kizárólag betűket és számokat tartalmazhat!', - 'array' => 'A(z) :attribute egy tömb kell, hogy legyen!', - 'before' => 'A(z) :attribute :date előtti dátum kell, hogy legyen!', - 'before_or_equal' => 'A(z) :attribute nem lehet későbbi dátum, mint :date!', - 'between' => [ +return [ + 'accepted' => 'A(z) :attribute el kell legyen fogadva!', + 'active_url' => 'A(z) :attribute nem érvényes url!', + 'after' => 'A(z) :attribute :date utáni dátum kell, hogy legyen!', + 'after_or_equal' => 'A(z) :attribute nem lehet korábbi dátum, mint :date!', + 'alpha' => 'A(z) :attribute kizárólag betűket tartalmazhat!', + 'alpha_dash' => 'A(z) :attribute kizárólag betűket, számokat és kötőjeleket tartalmazhat!', + 'alpha_num' => 'A(z) :attribute kizárólag betűket és számokat tartalmazhat!', + 'array' => 'A(z) :attribute egy tömb kell, hogy legyen!', + 'attached' => 'Ezt a :attribute-at már csatolták.', + 'before' => 'A(z) :attribute :date előtti dátum kell, hogy legyen!', + 'before_or_equal' => 'A(z) :attribute nem lehet későbbi dátum, mint :date!', + 'between' => [ + 'array' => 'A(z) :attribute :min - :max közötti elemet kell, hogy tartalmazzon!', + 'file' => 'A(z) :attribute mérete :min és :max kilobájt között kell, hogy legyen!', 'numeric' => 'A(z) :attribute :min és :max közötti szám kell, hogy legyen!', - 'file' => 'A(z) :attribute mérete :min és :max kilobájt között kell, hogy legyen!', - 'string' => 'A(z) :attribute hossza :min és :max karakter között kell, hogy legyen!', - 'array' => 'A(z) :attribute :min - :max közötti elemet kell, hogy tartalmazzon!', + 'string' => 'A(z) :attribute hossza :min és :max karakter között kell, hogy legyen!', ], - 'boolean' => 'A(z) :attribute mező csak true vagy false értéket kaphat!', - 'confirmed' => 'A(z) :attribute nem egyezik a megerősítéssel.', - 'date' => 'A(z) :attribute nem érvényes dátum.', - 'date_equals' => ':attribute meg kell egyezzen a következővel: :date.', - 'date_format' => 'A(z) :attribute nem egyezik az alábbi dátum formátummal :format!', - 'different' => 'A(z) :attribute és :other értékei különbözőek kell, hogy legyenek!', - 'digits' => 'A(z) :attribute :digits számjegyű kell, hogy legyen!', - 'digits_between' => 'A(z) :attribute értéke :min és :max közötti számjegy lehet!', - 'dimensions' => 'A(z) :attribute felbontása nem megfelelő.', - 'distinct' => 'A(z) :attribute értékének egyedinek kell lennie!', - 'email' => 'A(z) :attribute nem érvényes email formátum.', - 'ends_with' => 'A(z) :attribute a következővel kell végződjön: :values', - 'exists' => 'A(z) :attribute már létezik.', - 'file' => 'A(z) :attribute fájl kell, hogy legyen!', - 'filled' => 'A(z) :attribute megadása kötelező!', - 'gt' => [ + 'boolean' => 'A(z) :attribute mező csak true vagy false értéket kaphat!', + 'confirmed' => 'A(z) :attribute nem egyezik a megerősítéssel.', + 'date' => 'A(z) :attribute nem érvényes dátum.', + 'date_equals' => ':attribute meg kell egyezzen a következővel: :date.', + 'date_format' => 'A(z) :attribute nem egyezik az alábbi dátum formátummal :format!', + 'different' => 'A(z) :attribute és :other értékei különbözőek kell, hogy legyenek!', + 'digits' => 'A(z) :attribute :digits számjegyű kell, hogy legyen!', + 'digits_between' => 'A(z) :attribute értéke :min és :max közötti számjegy lehet!', + 'dimensions' => 'A(z) :attribute felbontása nem megfelelő.', + 'distinct' => 'A(z) :attribute értékének egyedinek kell lennie!', + 'email' => 'A(z) :attribute nem érvényes email formátum.', + 'ends_with' => 'A(z) :attribute a következővel kell végződjön: :values', + 'exists' => 'A kiválasztott :attribute érvénytelen.', + 'file' => 'A(z) :attribute fájl kell, hogy legyen!', + 'filled' => 'A(z) :attribute megadása kötelező!', + 'gt' => [ + 'array' => 'A(z) :attribute több, mint :value elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete nagyobb kell, hogy legyen, mint :value kilobájt.', 'numeric' => 'A(z) :attribute nagyobb kell, hogy legyen, mint :value!', - 'file' => 'A(z) :attribute mérete nagyobb kell, hogy legyen, mint :value kilobájt.', - 'string' => 'A(z) :attribute hosszabb kell, hogy legyen, mint :value karakter.', - 'array' => 'A(z) :attribute több, mint :value elemet kell, hogy tartalmazzon.', + 'string' => 'A(z) :attribute hosszabb kell, hogy legyen, mint :value karakter.', ], - 'gte' => [ + 'gte' => [ + 'array' => 'A(z) :attribute legalább :value elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :value kilobájt.', 'numeric' => 'A(z) :attribute nagyobb vagy egyenlő kell, hogy legyen, mint :value!', - 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :value kilobájt.', - 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :value karakter.', - 'array' => 'A(z) :attribute legalább :value elemet kell, hogy tartalmazzon.', + 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :value karakter.', ], - 'image' => 'A(z) :attribute képfájl kell, hogy legyen!', - 'in' => 'A kiválasztott :attribute érvénytelen.', - 'in_array' => 'A(z) :attribute értéke nem található a(z) :other értékek között.', - 'integer' => 'A(z) :attribute értéke szám kell, hogy legyen!', - 'ip' => 'A(z) :attribute érvényes IP cím kell, hogy legyen!', - 'ipv4' => 'A(z) :attribute érvényes IPv4 cím kell, hogy legyen!', - 'ipv6' => 'A(z) :attribute érvényes IPv6 cím kell, hogy legyen!', - 'json' => 'A(z) :attribute érvényes JSON szöveg kell, hogy legyen!', - 'lt' => [ + 'image' => 'A(z) :attribute képfájl kell, hogy legyen!', + 'in' => 'A kiválasztott :attribute érvénytelen.', + 'in_array' => 'A(z) :attribute értéke nem található a(z) :other értékek között.', + 'integer' => 'A(z) :attribute értéke szám kell, hogy legyen!', + 'ip' => 'A(z) :attribute érvényes IP cím kell, hogy legyen!', + 'ipv4' => 'A(z) :attribute érvényes IPv4 cím kell, hogy legyen!', + 'ipv6' => 'A(z) :attribute érvényes IPv6 cím kell, hogy legyen!', + 'json' => 'A(z) :attribute érvényes JSON szöveg kell, hogy legyen!', + 'lt' => [ + 'array' => 'A(z) :attribute kevesebb, mint :value elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete kisebb kell, hogy legyen, mint :value kilobájt.', 'numeric' => 'A(z) :attribute kisebb kell, hogy legyen, mint :value!', - 'file' => 'A(z) :attribute mérete kisebb kell, hogy legyen, mint :value kilobájt.', - 'string' => 'A(z) :attribute rövidebb kell, hogy legyen, mint :value karakter.', - 'array' => 'A(z) :attribute kevesebb, mint :value elemet kell, hogy tartalmazzon.', + 'string' => 'A(z) :attribute rövidebb kell, hogy legyen, mint :value karakter.', ], - 'lte' => [ + 'lte' => [ + 'array' => 'A(z) :attribute legfeljebb :value elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete nem lehet több, mint :value kilobájt.', 'numeric' => 'A(z) :attribute kisebb vagy egyenlő kell, hogy legyen, mint :value!', - 'file' => 'A(z) :attribute mérete nem lehet több, mint :value kilobájt.', - 'string' => 'A(z) :attribute hossza nem lehet több, mint :value karakter.', - 'array' => 'A(z) :attribute legfeljebb :value elemet kell, hogy tartalmazzon.', + 'string' => 'A(z) :attribute hossza nem lehet több, mint :value karakter.', ], - 'max' => [ + 'max' => [ + 'array' => 'A(z) :attribute legfeljebb :max elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete nem lehet több, mint :max kilobájt.', 'numeric' => 'A(z) :attribute értéke nem lehet nagyobb, mint :max!', - 'file' => 'A(z) :attribute mérete nem lehet több, mint :max kilobájt.', - 'string' => 'A(z) :attribute hossza nem lehet több, mint :max karakter.', - 'array' => 'A(z) :attribute legfeljebb :max elemet kell, hogy tartalmazzon.', + 'string' => 'A(z) :attribute hossza nem lehet több, mint :max karakter.', ], - 'mimes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.', - 'mimetypes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.', - 'min' => [ + 'mimes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.', + 'mimetypes' => 'A(z) :attribute kizárólag az alábbi fájlformátumok egyike lehet: :values.', + 'min' => [ + 'array' => 'A(z) :attribute legalább :min elemet kell, hogy tartalmazzon.', + 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :min kilobájt.', 'numeric' => 'A(z) :attribute értéke nem lehet kisebb, mint :min!', - 'file' => 'A(z) :attribute mérete nem lehet kevesebb, mint :min kilobájt.', - 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :min karakter.', - 'array' => 'A(z) :attribute legalább :min elemet kell, hogy tartalmazzon.', + 'string' => 'A(z) :attribute hossza nem lehet kevesebb, mint :min karakter.', ], - 'not_in' => 'A(z) :attribute értéke érvénytelen.', - 'not_regex' => 'A(z) :attribute formátuma érvénytelen.', - 'numeric' => 'A(z) :attribute szám kell, hogy legyen!', - 'password' => 'A(z) :attribute jelszónak kell, hogy legyen!', - 'present' => 'A(z) :attribute mező nem található!', - 'regex' => 'A(z) :attribute formátuma érvénytelen.', - 'required' => 'A(z) :attribute megadása kötelező!', - 'required_if' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke :value!', - 'required_unless' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke nem :values!', - 'required_with' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték létezik.', - 'required_with_all' => 'A(z) :attribute megadása kötelező, ha a(z) :values értékek léteznek.', - 'required_without' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték nem létezik.', + 'multiple_of' => 'A :attribute :value többszörösének kell lennie', + 'not_in' => 'A(z) :attribute értéke érvénytelen.', + 'not_regex' => 'A(z) :attribute formátuma érvénytelen.', + 'numeric' => 'A(z) :attribute szám kell, hogy legyen!', + 'password' => 'A(z) :attribute jelszónak kell, hogy legyen!', + 'present' => 'A(z) :attribute mező nem található!', + 'prohibited' => 'A :attribute mező tilos.', + 'prohibited_if' => 'A :attribute mező tilos, ha :other :value.', + 'prohibited_unless' => 'A :attribute mező tilos, kivéve, ha :other a :values.', + 'regex' => 'A(z) :attribute formátuma érvénytelen.', + 'relatable' => 'Lehet, hogy ez az :attribute nem kapcsolódik ehhez az erőforráshoz.', + 'required' => 'A(z) :attribute megadása kötelező!', + 'required_if' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke :value!', + 'required_unless' => 'A(z) :attribute megadása kötelező, ha a(z) :other értéke nem :values!', + 'required_with' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték létezik.', + 'required_with_all' => 'A(z) :attribute megadása kötelező, ha a(z) :values értékek léteznek.', + 'required_without' => 'A(z) :attribute megadása kötelező, ha a(z) :values érték nem létezik.', 'required_without_all' => 'A(z) :attribute megadása kötelező, ha egyik :values érték sem létezik.', - 'same' => 'A(z) :attribute és :other mezőknek egyezniük kell!', - 'size' => [ + 'same' => 'A(z) :attribute és :other mezőknek egyezniük kell!', + 'size' => [ + 'array' => 'A(z) :attribute :size elemet kell tartalmazzon!', + 'file' => 'A(z) :attribute mérete :size kilobájt kell, hogy legyen!', 'numeric' => 'A(z) :attribute értéke :size kell, hogy legyen!', - 'file' => 'A(z) :attribute mérete :size kilobájt kell, hogy legyen!', - 'string' => 'A(z) :attribute hossza :size karakter kell, hogy legyen!', - 'array' => 'A(z) :attribute :size elemet kell tartalmazzon!', + 'string' => 'A(z) :attribute hossza :size karakter kell, hogy legyen!', ], - 'starts_with' => ':attribute a következővel kell kezdődjön: :values', - 'string' => 'A(z) :attribute szöveg kell, hogy legyen.', - 'timezone' => 'A(z) :attribute nem létező időzona.', - 'unique' => 'A(z) :attribute már foglalt.', - 'uploaded' => 'A(z) :attribute feltöltése sikertelen.', - 'url' => 'A(z) :attribute érvénytelen link.', - 'uuid' => ':attribute érvényes UUID-val kell rendelkezzen.', - - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - - 'custom' => [ + 'starts_with' => ':attribute a következővel kell kezdődjön: :values', + 'string' => 'A(z) :attribute szöveg kell, hogy legyen.', + 'timezone' => 'A(z) :attribute nem létező időzona.', + 'unique' => 'A(z) :attribute már foglalt.', + 'uploaded' => 'A(z) :attribute feltöltése sikertelen.', + 'url' => 'A(z) :attribute érvénytelen link.', + 'uuid' => ':attribute érvényes UUID-val kell rendelkezzen.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - - 'attributes' => [ - 'name' => 'név', + 'attributes' => [ + 'name' => 'név', 'password' => 'jelszó', ], ]; diff --git a/resources/lang/mn.json b/resources/lang/mn.json index 289bf03de..f919bdf8b 100644 --- a/resources/lang/mn.json +++ b/resources/lang/mn.json @@ -1 +1 @@ -{":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Company Name":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/resources/lang/mn/auth.php b/resources/lang/mn/auth.php index fc63c4dbd..f8fc8091d 100644 --- a/resources/lang/mn/auth.php +++ b/resources/lang/mn/auth.php @@ -1,17 +1,18 @@ 'Хэрэглэгчийн нэр эсвэл нууц үг буруу.', +return [ + 'failed' => 'Хэрэглэгчийн нэр эсвэл нууц үг буруу.', + 'password' => 'The provided password is incorrect.', 'throttle' => 'Олон удаагийн буруу оролдого. :seconds секундийн дараа дахин оролдоно уу.', ]; diff --git a/resources/lang/mn/pagination.php b/resources/lang/mn/pagination.php index 8b891f8b3..3f430f7bd 100644 --- a/resources/lang/mn/pagination.php +++ b/resources/lang/mn/pagination.php @@ -1,17 +1,17 @@ 'Дараах »', 'previous' => '« Өмнөх', - 'next' => 'Дараах »', ]; diff --git a/resources/lang/mn/passwords.php b/resources/lang/mn/passwords.php index 6714c2de6..2efee2b98 100644 --- a/resources/lang/mn/passwords.php +++ b/resources/lang/mn/passwords.php @@ -1,21 +1,20 @@ 'Нууц үг багадаа 6 тэмдэгттэй байх ба давтан оруулсан нууц үгс хоорондоо ижил байх шаардлагатай.', - 'reset' => 'Таний нууц үг шинэчлэгдсэн!', - 'sent' => 'Нууц үг сэргээх холбоосийг таний и-мэйл хаяг уруу явуулсан!', - 'throttled' => 'Please wait before retrying.', - 'token' => 'Алдаатай нууц үг сэргээх холбоос.', - 'user' => 'Ийм и-мэйл хаягтай хэрэглэгч олдсонгүй.', +return [ + 'reset' => 'Таний нууц үг шинэчлэгдсэн!', + 'sent' => 'Нууц үг сэргээх холбоосийг таний и-мэйл хаяг уруу явуулсан!', + 'throttled' => 'Татаж өмнө хүлээх уу.', + 'token' => 'Алдаатай нууц үг сэргээх холбоос.', + 'user' => 'Ийм и-мэйл хаягтай хэрэглэгч олдсонгүй.', ]; diff --git a/resources/lang/mn/validation-inline.php b/resources/lang/mn/validation-inline.php new file mode 100644 index 000000000..a1227ee7b --- /dev/null +++ b/resources/lang/mn/validation-inline.php @@ -0,0 +1,131 @@ + 'Энэ талбар нь Хүлээн авах естой.', + 'active_url' => 'Энэ нь хүчинтэй хаяг биш юм.', + 'after' => 'Энэ нь хойш огноо байх естой :date.', + 'after_or_equal' => 'Энэ нь хойш, эсвэл тэнцүү байх естой :date.', + 'alpha' => 'Энэ талбар нь зөвхөн захидал агуулж болно.', + 'alpha_dash' => 'Энэ талбар нь зөвхөн захидал, тоо, зураас ба тэмдэглэгээ агуулж болох юм.', + 'alpha_num' => 'Энэ талбар нь зөвхөн захидал болон дугааруудыг агуулж болох юм.', + 'array' => 'Энэ талбар нь массив байх естой.', + 'attached' => 'Энэ талбар нь аль хэдийн хавсаргасан байна.', + 'before' => 'Энэ нь өмнө нь өдөр байх естой :date.', + 'before_or_equal' => 'Энэ нь өмнө буюу тэнцүү байх естой :date.', + 'between' => [ + 'array' => 'This content must have between :min and :max items.', + 'file' => 'This file must be between :min and :max kilobytes.', + 'numeric' => 'This value must be between :min and :max.', + 'string' => 'This string must be between :min and :max characters.', + ], + 'boolean' => 'Энэ талбар нь үнэн, худал байх естой.', + 'confirmed' => 'Баталгаа нь таарахгүй байна.', + 'date' => 'Энэ бол хүчинтэй хугацаа биш юм.', + 'date_equals' => 'Энэ нь :date-тай тэнцүү байх естой.', + 'date_format' => 'Энэ хэлбэр нь таарахгүй :format.', + 'different' => 'Энэ утга нь өөр байх естой :other.', + 'digits' => 'Энэ нь байх естой :digits тоо.', + 'digits_between' => 'Энэ хооронд байх естой :min, :max тоо.', + 'dimensions' => 'Энэ зураг нь хүчин төгөлдөр бус хэмжээ байна.', + 'distinct' => 'Энэ талбар нь давхардсан утгыг байна.', + 'email' => 'Энэ и-мэйл хаяг нь зөв байх естой.', + 'ends_with' => 'Энэ нь дараах аль нэгийг нь дуусгах естой: :values.', + 'exists' => 'Сонгосон утга буруу байна.', + 'file' => 'Агуулга нь файл байх естой.', + 'filled' => 'Энэ талбар нь утга байх естой.', + 'gt' => [ + 'array' => 'The content must have more than :value items.', + 'file' => 'The file size must be greater than :value kilobytes.', + 'numeric' => 'The value must be greater than :value.', + 'string' => 'The string must be greater than :value characters.', + ], + 'gte' => [ + 'array' => 'The content must have :value items or more.', + 'file' => 'The file size must be greater than or equal :value kilobytes.', + 'numeric' => 'The value must be greater than or equal :value.', + 'string' => 'The string must be greater than or equal :value characters.', + ], + 'image' => 'Энэ нь зураг байх естой.', + 'in' => 'Сонгосон утга буруу байна.', + 'in_array' => 'Энэ утга нь байхгүй байна :other.', + 'integer' => 'Энэ нь бүхэл бүтэн байх естой.', + 'ip' => 'Энэ нь хүчинтэй ЦИ-ийн хаяг байх естой.', + 'ipv4' => 'Уг хаяг нь хүчинтэй ЦТ 4-ийн хаяг байх естой.', + 'ipv6' => 'Гэхдээ энэ нь ЦИ-гийн хүчинтэй хаяг байх естой.', + 'json' => 'Энэ нь жинхэнэ Жон мөр байх естой.', + 'lt' => [ + 'array' => 'The content must have less than :value items.', + 'file' => 'The file size must be less than :value kilobytes.', + 'numeric' => 'The value must be less than :value.', + 'string' => 'The string must be less than :value characters.', + ], + 'lte' => [ + 'array' => 'The content must not have more than :value items.', + 'file' => 'The file size must be less than or equal :value kilobytes.', + 'numeric' => 'The value must be less than or equal :value.', + 'string' => 'The string must be less than or equal :value characters.', + ], + 'max' => [ + 'array' => 'The content may not have more than :max items.', + 'file' => 'The file size may not be greater than :max kilobytes.', + 'numeric' => 'The value may not be greater than :max.', + 'string' => 'The string may not be greater than :max characters.', + ], + 'mimes' => 'Энэ төрлийн файл байх естой: :values.', + 'mimetypes' => 'Энэ төрлийн файл байх естой: :values.', + 'min' => [ + 'array' => 'The value must have at least :min items.', + 'file' => 'The file size must be at least :min kilobytes.', + 'numeric' => 'The value must be at least :min.', + 'string' => 'The string must be at least :min characters.', + ], + 'multiple_of' => 'Утга нь олон байх естой :value', + 'not_in' => 'Сонгосон утга буруу байна.', + 'not_regex' => 'Энэ хэлбэр нь хүчин төгөлдөр бус байна.', + 'numeric' => 'Энэ нь тоо байх естой.', + 'password' => 'Нууц үг буруу.', + 'present' => 'Энэ талбар нь байх естой.', + 'prohibited' => 'Энэ талбар нь хориглосон байна.', + 'prohibited_if' => ':other онд :value он байх үед энэ талбарт хориглоно.', + 'prohibited_unless' => 'Энэ талбар нь бол хориглосон байна :other онд байна :values.', + 'regex' => 'Энэ хэлбэр нь хүчин төгөлдөр бус байна.', + 'relatable' => 'Энэ талбар нь энэ нөөцийн холбоотой байж болох юм.', + 'required' => 'Энэ талбар нь шаардлагатай байна.', + 'required_if' => 'Энэ талбар нь шаардлагатай үед 305 байна :value.', + 'required_unless' => 'Энэ талбар нь бол шаардлагатай :other байна :values.', + 'required_with' => 'Энэ талбар нь шаардлагатай үед :values байгаа.', + 'required_with_all' => 'Энэ талбар нь :values байгаа үед шаардлагатай.', + 'required_without' => 'Энэ талбар нь шаардлагатай үед :values байхгүй байна.', + 'required_without_all' => 'Энэ талбар нь Ч шаардлагатай үед :values байгаа.', + 'same' => 'Энэ салбарын үнэ цэнэ нь нэг нь тохирох естой :other.', + 'size' => [ + 'array' => 'The content must contain :size items.', + 'file' => 'The file size must be :size kilobytes.', + 'numeric' => 'The value must be :size.', + 'string' => 'The string must be :size characters.', + ], + 'starts_with' => 'Энэ нь дараах нэг эхлэх естой: :values.', + 'string' => 'Энэ нь мөр байх естой.', + 'timezone' => 'Энэ нь хүчин төгөлдөр бүс байх естой.', + 'unique' => 'Энэ нь аль хэдийн авч байна.', + 'uploaded' => 'Энэ нь хуулж чадаагүй.', + 'url' => 'Энэ хэлбэр нь хүчин төгөлдөр бус байна.', + 'uuid' => 'Энэ нь хүчин төгөлдөр хамгаалалт байх естой.', + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + 'attributes' => [], +]; diff --git a/resources/lang/mn/validation.php b/resources/lang/mn/validation.php index a6ffbea8f..0c4dfce89 100644 --- a/resources/lang/mn/validation.php +++ b/resources/lang/mn/validation.php @@ -1,148 +1,131 @@ ':Attribute баталсан байх шаардлагатай.', - 'active_url' => ':Attribute талбарт зөв URL хаяг оруулна уу.', - 'after' => ':Attribute талбарт :date-с хойш огноо оруулна уу.', - 'after_or_equal' => ':Attribute талбарт :date эсвэл түүнээс хойш огноо оруулна уу.', - 'alpha' => ':Attribute талбарт латин үсэг оруулна уу.', - 'alpha_dash' => ':Attribute талбарт латин үсэг, тоо болон зураас оруулах боломжтой.', - 'alpha_num' => ':Attribute талбарт латин үсэг болон тоо оруулах боломжтой.', - 'array' => ':Attribute талбар массив байх шаардлагатай.', - 'before' => ':Attribute талбарт :date-с өмнөх огноо оруулна уу.', - 'before_or_equal' => ':attribute талбарт :date эсвэл түүнээс өмнөх огноо оруулна уу.', - 'between' => [ +return [ + 'accepted' => ':Attribute баталсан байх шаардлагатай.', + 'active_url' => ':Attribute талбарт зөв URL хаяг оруулна уу.', + 'after' => ':Attribute талбарт :date-с хойш огноо оруулна уу.', + 'after_or_equal' => ':Attribute талбарт :date эсвэл түүнээс хойш огноо оруулна уу.', + 'alpha' => ':Attribute талбарт латин үсэг оруулна уу.', + 'alpha_dash' => ':Attribute талбарт латин үсэг, тоо болон зураас оруулах боломжтой.', + 'alpha_num' => ':Attribute талбарт латин үсэг болон тоо оруулах боломжтой.', + 'array' => ':Attribute талбар массив байх шаардлагатай.', + 'attached' => 'Энэ нь :attribute аль хэдийн хавсаргасан байна.', + 'before' => ':Attribute талбарт :date-с өмнөх огноо оруулна уу.', + 'before_or_equal' => ':attribute талбарт :date эсвэл түүнээс өмнөх огноо оруулна уу.', + 'between' => [ + 'array' => ':Attribute массивт :min-:max элемэнт байх шаардлагатай.', + 'file' => ':Attribute талбарт :min-:max килобайт хэмжээтэй файл оруулна уу.', 'numeric' => ':Attribute талбарт :min-:max хооронд тоо оруулна уу.', - 'file' => ':Attribute талбарт :min-:max килобайт хэмжээтэй файл оруулна уу.', - 'string' => ':Attribute талбарт :min-:max урттай текст оруулна уу.', - 'array' => ':Attribute массивт :min-:max элемэнт байх шаардлагатай.', + 'string' => ':Attribute талбарт :min-:max урттай текст оруулна уу.', ], - 'boolean' => ':Attribute талбарын утга үнэн эсвэл худал байх шаардлагатай.', - 'confirmed' => ':Attribute талбарын баталагажуулалт тохирохгүй байна.', - 'date' => ':Attribute талбарт оруулсан огноо буруу байна.', - 'date_equals' => 'The :attribute must be a date equal to :date.', - 'date_format' => ':Attribute талбарт :format хэлбэртэй огноо оруулна уу.', - 'different' => ':Attribute талбарт :other -с өөр утга оруулах шаардлагатай.', - 'digits' => ':Attribute талбарт дараах цифрүүдээс оруулах боломжтой. :digits.', - 'digits_between' => ':Attribute талбарт :min-:max хоорондох цифр оруулах боломжтой.', - 'dimensions' => ':Attribute талбарийн зургийн хэмжээс буруу байна.', - 'distinct' => ':Attribute талбарт ялгаатай утга оруулах шаардлагатай.', - 'email' => ':Attribute талбарт зөв и-мэйл хаяг оруулах шаардлагатай.', - 'ends_with' => 'The :attribute must end with one of the following: :values.', - 'exists' => 'Сонгогдсон :attribute буруу байна.', - 'file' => ':Attribute талбарт файл оруулах шаардлагатай.', - 'filled' => ':Attribute талбар шаардлагатай.', - 'gt' => [ + 'boolean' => ':Attribute талбарын утга үнэн эсвэл худал байх шаардлагатай.', + 'confirmed' => ':Attribute талбарын баталагажуулалт тохирохгүй байна.', + 'date' => ':Attribute талбарт оруулсан огноо буруу байна.', + 'date_equals' => ':attribute нь :date онтой тэнцүү байх естой.', + 'date_format' => ':Attribute талбарт :format хэлбэртэй огноо оруулна уу.', + 'different' => ':Attribute талбарт :other -с өөр утга оруулах шаардлагатай.', + 'digits' => ':Attribute талбарт дараах цифрүүдээс оруулах боломжтой. :digits.', + 'digits_between' => ':Attribute талбарт :min-:max хоорондох цифр оруулах боломжтой.', + 'dimensions' => ':Attribute талбарийн зургийн хэмжээс буруу байна.', + 'distinct' => ':Attribute талбарт ялгаатай утга оруулах шаардлагатай.', + 'email' => ':Attribute талбарт зөв и-мэйл хаяг оруулах шаардлагатай.', + 'ends_with' => ':attribute дараах аль нэгийг нь дуусгах естой: :values.', + 'exists' => 'Сонгогдсон :attribute буруу байна.', + 'file' => ':Attribute талбарт файл оруулах шаардлагатай.', + 'filled' => ':Attribute талбар шаардлагатай.', + 'gt' => [ + 'array' => 'The :attribute must have more than :value items.', + 'file' => 'The :attribute must be greater than :value kilobytes.', 'numeric' => 'The :attribute must be greater than :value.', - 'file' => 'The :attribute must be greater than :value kilobytes.', - 'string' => 'The :attribute must be greater than :value characters.', - 'array' => 'The :attribute must have more than :value items.', + 'string' => 'The :attribute must be greater than :value characters.', ], - 'gte' => [ + 'gte' => [ + 'array' => 'The :attribute must have :value items or more.', + 'file' => 'The :attribute must be greater than or equal :value kilobytes.', 'numeric' => 'The :attribute must be greater than or equal :value.', - 'file' => 'The :attribute must be greater than or equal :value kilobytes.', - 'string' => 'The :attribute must be greater than or equal :value characters.', - 'array' => 'The :attribute must have :value items or more.', + 'string' => 'The :attribute must be greater than or equal :value characters.', ], - 'image' => ':Attribute талбарт зураг оруулна уу.', - 'in' => 'Сонгогдсон :attribute буруу байна.', - 'in_array' => ':Attribute талбарт оруулсан утга :other -д байхгүй байна.', - 'integer' => ':Attribute талбарт бүхэл тоо оруулах шаардлагатай.', - 'ip' => ':Attribute талбарт зөв IP хаяг оруулах шаардлагатай.', - 'ipv4' => 'The :attribute must be a valid IPv4 address.', - 'ipv6' => 'The :attribute must be a valid IPv6 address.', - 'json' => ':Attribute талбарт зөв JSON тэмдэгт мөр оруулах шаардлагатай.', - 'lt' => [ + 'image' => ':Attribute талбарт зураг оруулна уу.', + 'in' => 'Сонгогдсон :attribute буруу байна.', + 'in_array' => ':Attribute талбарт оруулсан утга :other -д байхгүй байна.', + 'integer' => ':Attribute талбарт бүхэл тоо оруулах шаардлагатай.', + 'ip' => ':Attribute талбарт зөв IP хаяг оруулах шаардлагатай.', + 'ipv4' => ':attribute нь хүчинтэй ЦТ 4-р хаяг байх естой.', + 'ipv6' => ':attribute нь хүчин төгөлдөр Атв6 хаяг байх естой.', + 'json' => ':Attribute талбарт зөв JSON тэмдэгт мөр оруулах шаардлагатай.', + 'lt' => [ + 'array' => 'The :attribute must have less than :value items.', + 'file' => 'The :attribute must be less than :value kilobytes.', 'numeric' => 'The :attribute must be less than :value.', - 'file' => 'The :attribute must be less than :value kilobytes.', - 'string' => 'The :attribute must be less than :value characters.', - 'array' => 'The :attribute must have less than :value items.', + 'string' => 'The :attribute must be less than :value characters.', ], - 'lte' => [ + 'lte' => [ + 'array' => 'The :attribute must not have more than :value items.', + 'file' => 'The :attribute must be less than or equal :value kilobytes.', 'numeric' => 'The :attribute must be less than or equal :value.', - 'file' => 'The :attribute must be less than or equal :value kilobytes.', - 'string' => 'The :attribute must be less than or equal :value characters.', - 'array' => 'The :attribute must not have more than :value items.', + 'string' => 'The :attribute must be less than or equal :value characters.', ], - 'max' => [ + 'max' => [ + 'array' => ':Attribute талбарт хамгийн ихдээ :max элемэнт оруулах боломжтой.', + 'file' => ':Attribute талбарт :max килобайтаас бага хэмжээтэй файл оруулна уу.', 'numeric' => ':Attribute талбарт :max буюу түүнээс бага утга оруулна уу.', - 'file' => ':Attribute талбарт :max килобайтаас бага хэмжээтэй файл оруулна уу.', - 'string' => ':Attribute талбарт :max-с бага урттай текст оруулна уу.', - 'array' => ':Attribute талбарт хамгийн ихдээ :max элемэнт оруулах боломжтой.', + 'string' => ':Attribute талбарт :max-с бага урттай текст оруулна уу.', ], - 'mimes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.', - 'mimetypes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.', - 'min' => [ + 'mimes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.', + 'mimetypes' => ':Attribute талбарт дараах төрлийн файл оруулах боломжтой: :values.', + 'min' => [ + 'array' => ':Attribute талбарт хамгийн багадаа :min элемэнт оруулах боломжтой.', + 'file' => ':Attribute талбарт :min килобайтаас их хэмжээтэй файл оруулна уу.', 'numeric' => ':Attribute талбарт :min буюу түүнээс их тоо оруулна уу.', - 'file' => ':Attribute талбарт :min килобайтаас их хэмжээтэй файл оруулна уу.', - 'string' => ':Attribute талбарт :min буюу түүнээс их үсэг бүхий текст оруулна уу.', - 'array' => ':Attribute талбарт хамгийн багадаа :min элемэнт оруулах боломжтой.', + 'string' => ':Attribute талбарт :min буюу түүнээс их үсэг бүхий текст оруулна уу.', ], - 'not_in' => 'Буруу :attribute сонгогдсон байна.', - 'not_regex' => 'The :attribute format is invalid.', - 'numeric' => ':Attribute талбарт тоон утга оруулна уу.', - 'present' => ':Attribute талбар байх шаардлагатай.', - 'regex' => ':Attribute талбарт оруулсан утга буруу байна.', - 'required' => ':Attribute талбар шаардлагатай.', - 'required_if' => 'Хэрэв :other :value бол :attribute табларт утга оруулах шаардлагатай.', - 'required_unless' => ':other :values дотор байхгүй бол :attribute талбарт утга оруулах шаардлагатай.', - 'required_with' => ':values утгуудийн аль нэг байвал :attribute талбар шаардлагатай.', - 'required_with_all' => ':values утгууд байвал :attribute талбар шаардлагатай.', - 'required_without' => 'The :attribute field is required when :values is not present.', - 'required_without_all' => 'The :attribute field is required when none of :values are present.', - 'same' => 'The :attribute and :other must match.', - 'size' => [ + 'multiple_of' => ':attribute нь олон байх естой :value', + 'not_in' => 'Буруу :attribute сонгогдсон байна.', + 'not_regex' => ':attribute хэлбэр нь хүчин төгөлдөр бус байна.', + 'numeric' => ':Attribute талбарт тоон утга оруулна уу.', + 'password' => 'Нууц үг буруу.', + 'present' => ':Attribute талбар байх шаардлагатай.', + 'prohibited' => ':attribute талбар нь хориглоно.', + 'prohibited_if' => ':other нь :value үед :attribute талбар нь хориглоно.', + 'prohibited_unless' => ':attribute салбарт бол хориглоно :other нь :values.', + 'regex' => ':Attribute талбарт оруулсан утга буруу байна.', + 'relatable' => 'Энэ нь :attribute энэ нөөц холбоотой байж болно.', + 'required' => ':Attribute талбар шаардлагатай.', + 'required_if' => 'Хэрэв :other :value бол :attribute табларт утга оруулах шаардлагатай.', + 'required_unless' => ':other :values дотор байхгүй бол :attribute талбарт утга оруулах шаардлагатай.', + 'required_with' => ':values утгуудийн аль нэг байвал :attribute талбар шаардлагатай.', + 'required_with_all' => ':values утгууд байвал :attribute талбар шаардлагатай.', + 'required_without' => ':attribute талбар нь :values байхгүй үед шаардлагатай байна.', + 'required_without_all' => 'Аль нь ч байхгүй үед :attribute талбар шаардлагатай байна :values байгаа.', + 'same' => ':attribute болон :other тохирох естой.', + 'size' => [ + 'array' => ':Attribute :size элемэнттэй байх шаардлагатай.', + 'file' => ':Attribute :size килобайт хэмжээтэй байх шаардлагатай.', 'numeric' => ':Attribute :size хэмжээтэй байх шаардлагатай.', - 'file' => ':Attribute :size килобайт хэмжээтэй байх шаардлагатай.', - 'string' => ':Attribute :size тэмдэгтийн урттай байх шаардлагатай.', - 'array' => ':Attribute :size элемэнттэй байх шаардлагатай.', + 'string' => ':Attribute :size тэмдэгтийн урттай байх шаардлагатай.', ], - 'starts_with' => 'The :attribute must start with one of the following: :values.', - 'string' => ':Attribute талбарт текст оруулна уу.', - 'timezone' => ':Attribute талбарт зөв цагийн бүс оруулна уу.', - 'unique' => 'Оруулсан :attribute аль хэдий нь бүртгэгдсэн байна.', - 'uploaded' => ':Attribute талбарт оруулсан файлыг хуулхад алдаа гарлаа.', - 'url' => ':Attribute зөв url хаяг оруулна уу.', - 'uuid' => 'The :attribute must be a valid UUID.', - - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - - 'custom' => [ + 'starts_with' => ':attribute дараах аль нэг нь эхлэх естой: :values.', + 'string' => ':Attribute талбарт текст оруулна уу.', + 'timezone' => ':Attribute талбарт зөв цагийн бүс оруулна уу.', + 'unique' => 'Оруулсан :attribute аль хэдий нь бүртгэгдсэн байна.', + 'uploaded' => ':Attribute талбарт оруулсан файлыг хуулхад алдаа гарлаа.', + 'url' => ':Attribute зөв url хаяг оруулна уу.', + 'uuid' => ':attribute хүчин төгөлдөр хуучин төгөлдөр улс байх естой.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - - 'attributes' => [], + 'attributes' => [], ]; diff --git a/resources/lang/nl.json b/resources/lang/nl.json index 72c50d7be..9c4d1f905 100644 --- a/resources/lang/nl.json +++ b/resources/lang/nl.json @@ -1 +1 @@ -{":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Company Name":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file +{"A new account was created: :name":null,":days Days Returns":null,"Street line 2":null,"Street line 1":null,"A payment method was already set for this order":null,"Added":null,"Authorize Only":null,"Pay by Wire Transfer":null,"Go back to the store":null,"We will create an account for your future orders":null,"Secure payments with":null,"The company already exists in our system. Please contact us about that":null,"Set your new password":null,"If you are having trouble clicking the action button, copy and paste the URL below into your web browser":null,"Company Name":null,"Ship to a different addressed":null,"You just asked for a password reset. To complete the process click the button below.":null,":name export done":null,":name export started":null,":type import done":null,"":null,"#":null,"30 days":null,"7 days":null,"A fresh verification link has been sent to your email address.":null,"About this brand":null,"About Us":null,"Above":null,"Accessories":null,"Account details":null,"Account":null,"account":null,"Acidity":null,"Acquisition Price":null,"Acquisition Value":null,"Actions":null,"actions":null,"Active":null,"active":null,"Activity Log":null,"Activity Start Date":null,"Activity":null,"Add :entity":null,"Add address":null,"Add Brand":null,"Add card":null,"Add Card":null,"Add Comment":null,"Add company":null,"Add File":null,"Add Key":null,"Add Payment":null,"Add to cart":null,"Add to favorites":null,"Add video":null,"Add":null,"Adding":null,"Additional":null,"Address is missing or does not have lat\/long":null,"Address":null,"Addresses":null,"Adjustment":null,"Administration":null,"administration":null,"Administrative Area":null,"Again Colors":null,"Agent":null,"Algolia":null,"All Menu Items":null,"All Products":null,"All products":null,"all products":null,"All rights reserved.":null,"all":null,"Allocated To":null,"Amazing Saving":null,"Amount":null,"An error has occured. Please report this to the administrator":null,"An error was encountered while generationg :export":null,"An export job is already running for the same table":null,"An unknown error occurred while submitting your report. Please try again.":null,"Analytics Id":null,"Apartment":null,"App Key":null,"App":null,"Appellative":null,"Approved Documentation":null,"Approved":null,"April":null,"Aprovizionari":null,"Are you sure that you want to delete the template file?":null,"Are you sure?":null,"Assign":null,"Associate Person":null,"attribute groups":null,"Audit":null,"audit":null,"Authors":null,"Available menus":null,"Available slides":null,"Avatar":null,"Avenue":null,"Awaiting Brand validation":null,"Awaiting Documentation Validation":null,"Awaiting EAN validation":null,"Awaiting MKTP validation":null,"Award List":null,"Awards":null,"Azzure":null,"Back":null,"Backed by":null,"Bag":null,"Bank Account":null,"Bank":null,"Be the first to review this product":null,"Before proceeding, please check your email for a verification link.":null,"Below":null,"Bend":null,"Besel":null,"Best Seller":null,"Between":null,"Billing Address":null,"Birthday":null,"birthday":null,"Birthdays":null,"Blank":null,"Blocked":null,"Bookmarks":null,"Bottled Weight":null,"Boulevard":null,"Box":null,"Brand Count":null,"Brands":null,"brands":null,"BTL":null,"Bucharest":null,"Building Type":null,"Building":null,"building":null,"built with":null,"Business hours":null,"Butons":null,"Button Item":null,"Buttons":null,"buttons":null,"By":null,"Calendar":null,"calendar":null,"Calendars":null,"Calories per 100g":null,"Cancel":null,"Cancelled":null,"cancelled":null,"Cantitate":null,"Card number":null,"Cardholder name":null,"Carousel":null,"carousel":null,"Carrier":null,"Cart is empty":null,"Cart Summary":null,"Cart Validity Days":null,"Cart":null,"Pay on Delivery":null,"Cash Register Receipt":null,"Catalog":null,"Categories":null,"categories":null,"Category":null,"Channel":null,"Characteristics":null,"Cheque":null,"Choose language":null,"Choose your payment method":null,"Choose":null,"City Population by Age":null,"City":null,"Clear all":null,"click here to request another":null,"Client (company)":null,"Client (person)":null,"Client Discounts":null,"Client Invoices":null,"Client Order Reference":null,"Client Payment":null,"Client Payments":null,"Client Reference":null,"Client Stock":null,"Client Stocks":null,"Client":null,"Clienti":null,"Clients":null,"clients":null,"Close":null,"Code":null,"Coding":null,"Collapse Main Menu":null,"Colors Two":null,"Colors":null,"Coming Soon":null,"Comments":null,"Commercial":null,"commercial":null,"Companies":null,"companies":null,"Company client":null,"Company":null,"company":null,"Completed":null,"Configure Role":null,"Configure":null,"configure":null,"Confirm Password":null,"Confirmed":null,"Contact Bar Text":null,"contact form":null,"Contact Form":null,"Contact us with any questions or concerns that you may have and we will get back to you shortly":null,"Contact":null,"Contacts Index":null,"Contacts":null,"contacts":null,"Content Private":null,"Content":null,"Continue":null,"Copied to clipboard":null,"Copyright © 2016":null,"Core":null,"Country of Origin":null,"Country":null,"County":null,"Courier Service":null,"Create a new Entity":null,"Create a new User":null,"Create Button":null,"Create Company":null,"Create Differences Sale":null,"Create Group":null,"create group":null,"Create Language":null,"Create Menu":null,"Create Owner":null,"Create Permission Group":null,"Create Permission":null,"Create Permissions Group":null,"Create Person":null,"Create Resource":null,"Create Role":null,"Create Tutorial":null,"Create User Group":null,"Create User":null,"Create":null,"create":null,"Created Address":null,"Created At":null,"Created at":null,"Created By":null,"Created Contact":null,"Created":null,"created":null,"Currency Placed Before":null,"Current file size is":null,"custom":null,"Customer opinions":null,"Cycling":null,"Danger":null,"Dashboard":null,"dashboard":null,"Data Import":null,"data import":null,"Date":null,"Default Address":null,"Default Menu":null,"Default":null,"default":null,"Delete Avatar":null,"Delete File":null,"Delete Template":null,"Delete video":null,"Delete":null,"delete":null,"deleted":null,"Delivered":null,"Description":null,"deselect":null,"Designing":null,"details":null,"Details":null,"Diameter":null,"Direct Link":null,"Discount":null,"Discounts":null,"discounts":null,"Discussions":null,"Display Name":null,"Documents":null,"documents":null,"Don't have an account?":null,"Download Delivery Note":null,"Download Excel Sale Offer":null,"Download Excel Sale Return Offer":null,"Download Goods Received Note":null,"Download Invoice (long click for cancel)":null,"Download Payment (long click for cancel)":null,"Download Sale Offer":null,"Download Sale Return Offer":null,"Download Stock Removal":null,"Download Template":null,"Download":null,"Drag And Drop":null,"Drinking":null,"Due Date":null,"E-Mail Address":null,"Eating":null,"EAV":null,"eav":null,"Edit Button":null,"Edit Company":null,"Edit Invoice":null,"Edit Language":null,"Edit Menu":null,"Edit Owner":null,"Edit Permission Group":null,"Edit Permission":null,"Edit Permissions Group":null,"Edit Person":null,"Edit personal details":null,"Edit Role":null,"Edit Texts":null,"edit texts":null,"Edit Tutorial":null,"Edit User Group":null,"Edit User":null,"Edit":null,"edit":null,"Editable Time Limit":null,"edited":null,"Element":null,"Emag Active Offer":null,"Emag documentatie":null,"Emag Documentation":null,"Emag Offer":null,"Emag pret":null,"Emag Price":null,"Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":null,"Email":null,"Emailed At":null,"Emailed":null,"Enabled":null,"End":null,"Enter Fulfilling Mode":null,"Enter the application":null,"Enter warehouse mode":null,"Enter Warehouse Mode":null,"Entities":null,"entities":null,"Entity Details":null,"Entity":null,"entity":null,"Entries":null,"entries":null,"Entry":null,"entry":null,"Error":null,"Events":null,"Excel":null,"Expanded Menu":null,"Expanded Sidebar":null,"Expiration Date":null,"Export available for download: :filename":null,"Export Done":null,"Export emailed: :filename":null,"Export emailed":null,"Export error":null,"Export Notification":null,"Export started":null,"Export":null,"export":null,"exporting rejected":null,"exports":null,"External":null,"Extra Virgin Olive Oils":null,"Facturi clienti":null,"Facturi furnizori":null,"Failed":null,"failed":null,"FAQ":null,"Favorites":null,"Favourite products":null,"Fax Number":null,"Fax":null,"FEATURED BRANDS":null,"Featured Brands":null,"Feb":null,"February":null,"File name":null,"File Size":null,"File":null,"File(s)":null,"Files were uploaded successfully":null,"Files":null,"files":null,"Fill":null,"Filter by name or code":null,"Filter":null,"filtered from":null,"filtered":null,"Filters":null,"Finalize order":null,"Finalize":null,"Finalized":null,"finalized":null,"Financial Overview":null,"Financials":null,"financials":null,"find matches":null,"First Name":null,"Fiscal Code":null,"Fiscal Invoice":null,"Fiscal":null,"Flag Icon Class":null,"Flag Sufix":null,"Flag":null,"Floor":null,"floor":null,"Forbidden":null,"Forgot Password?":null,"Forgot password":null,"Forgot Your Password?":null,"Found :total results":null,"Friday":null,"Frisbo":null,"From":null,"from":null,"Fulfilled At":null,"Fulfilling":null,"Furnizor":null,"Gender":null,"General Settings":null,"General":null,"Generate":null,"Generated for order #:number":null,"Geneva":null,"Get in touch with us":null,"Go Home":null,"Google":null,"Got it!":null,"Green":null,"Group":null,"Groups":null,"Habits":null,"Harvest 2016\/2017":null,"Harvest 2017\/2018":null,"Harvest 2018\/2019":null,"Harvest 2019\/2020":null,"Harvest":null,"Has Children":null,"Height":null,"Hello!":null,"Hello":null,"Herbs":null,"here":null,"Hi :name,":null,"Hi :name":null,"Home":null,"Homepage":null,"How To Videos":null,"how to videos":null,"I agree to the":null,"I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":null,"I authorise":null,"Ian":null,"Icon Class":null,"Icon":null,"If you are having trouble clicking the action button, copy and paste the URL below":null,"If you did not create an account, no further action is required.":null,"If you did not receive the email":null,"If you did not request a password reset, no further action is required.":null,"If you’d like to help, tell us what happened below.":null,"IFSC":null,"Impersonate":null,"Impersonating":null,"Import Summary":null,"Import Type":null,"Import":null,"Importance":null,"Important":null,"Imported At":null,"Imported By":null,"Imported Entries":null,"ImportType":null,"In a few minutes you will receive a confirmation email":null,"In Stock":null,"in stock":null,"10 Days Returns":null,"24h Tracked Shipping":null,"100% Original Products":null,"Secure Payments":null,"Income":null,"index":null,"Indications":null,"Individual":null,"Industrial":null,"Info":null,"Ingredients":null,"Insert in Stock":null,"Integrations":null,"Internal #":null,"Internal Code":null,"Internal":null,"into your web browser":null,"Invalid signature.":null,"Invalid":null,"Inventory":null,"inventory":null,"Invoice Emailed":null,"Invoice for order # :number":null,"Invoice for order":null,"invoice":null,"invoices":null,"Invoices":null,"Is Active":null,"Is Cancelled":null,"Is Default":null,"is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":null,"Issue Payment":null,"Issue proforma":null,"Issues":null,"It looks like we’re having issues.":null,"Item":null,"items":null,"Items":null,"Jams":null,"January":null,"Jar":null,"July":null,"June":null,"Keep tables configurations":null,"Key Collector":null,"Key Name":null,"Key Value":null,"Key":null,"keys found":null,"Label Generator":null,"Label":null,"Labels":null,"labels":null,"Lane":null,"Language Item":null,"Language":null,"Languages":null,"languages":null,"Last Modified":null,"last month":null,"Last Name":null,"Last updated":null,"last week":null,"last year":null,"Learn more":null,"Leave Fulfilling Mode":null,"Leave Warehouse Mode":null,"Left":null,"Length":null,"limited quantity":null,"Limited Stock Limit":null,"Limited Stock":null,"Line":null,"Link":null,"List Price":null,"Page [page] from [toPage]":null,"List Value":null,"List":null,"Load More":null,"Load more":null,"Loading...":null,"Loading":null,"Localisation Index":null,"Localisation":null,"localisation":null,"Localities":null,"Locality":null,"Log in":null,"Log out":null,"Log Out":null,"log":null,"Login":null,"login":null,"Logins":null,"logins":null,"logout":null,"Logout":null,"Logs Index":null,"Logs":null,"logs":null,"Loss":null,"Made with Bulma":null,"Made with Laravel":null,"Made with Vue":null,"Magazie":null,"Main Menu":null,"Manage Buttons":null,"Manage Menus":null,"Manage Permissions":null,"Mandatary":null,"Manufacturer":null,"Manufacturers":null,"Maps key":null,"Mar":null,"March":null,"Mark all as read":null,"Mark all read":null,"Max":null,"May":null,"MB":null,"Measurement Unit":null,"Measurement Units":null,"measurement units":null,"Member Since":null,"Members":null,"Menu Collapse":null,"Menu Items":null,"Menu":null,"Menus Index":null,"Menus":null,"menus":null,"Merge all localisation files":null,"Mfr #":null,"Mfr":null,"Min":null,"Miss":null,"Mode":null,"Monday":null,"more":null,"move to favorites":null,"Mr":null,"MU":null,"N\/A":null,"Name":null,"Needs matching":null,"Net Weight":null,"New Address":null,"New Password":null,"New team":null,"New Topic":null,"New":null,"Next Page":null,"Next":null,"NIN":null,"No activity found":null,"No keys found":null,"No locations found":null,"No options available":null,"No records were found":null,"No reservations found":null,"No search results found":null,"No teams were created yet":null,"No":null,"Not Found":null,"not paid":null,"Note":null,"Notes":null,"Nothing found":null,"notification":null,"Notifications":null,"notifications":null,"Number":null,"Observations":null,"of":null,"Offices":null,"Oh no":null,"OK":null,"on behalf of :company":null,"On Demand":null,"on":null,"Online":null,"Only missing":null,"Operation failed because the permission is allocated to existing role(s)":null,"Operation was successfull":null,"order #:number invoice":null,"order #:number":null,"Order #:number":null,"Order details :number":null,"Order Line Limit":null,"Order Payment":null,"Order Values":null,"Order":null,"Orders":null,"Organize Menus":null,"our location":null,"Our Location":null,"Our team has been notified.":null,"Overdue":null,"Own Stock":null,"Owners Index":null,"Owners":null,"owners":null,"Package Content":null,"Packaging Units":null,"packaging units":null,"Page Expired":null,"Parade":null,"Parent":null,"Part Number":null,"Password Confirmation":null,"Password":null,"password":null,"Passwords must be at least six characters and match the confirmation.":null,"Past Imports":null,"Pasta":null,"Pay Later":null,"pay":null,"Pay":null,"Payment method":null,"Payment Methods":null,"Payment Order":null,"Payment":null,"payments":null,"Payments":null,"Pays VAT":null,"People":null,"people":null,"Permission Group":null,"Permission Groups Index":null,"Permission Groups":null,"Permission Name":null,"Permission":null,"permissionGroups":null,"Permissions Group Items":null,"Permissions Group":null,"permissions group":null,"Permissions Groups":null,"Permissions Index":null,"Permissions":null,"permissions":null,"Person client":null,"Person":null,"person":null,"Personal Info":null,"Personal information can only be edited via the person form":null,"Personal":null,"Phone Number":null,"Phone":null,"Pic":null,"Pick an option":null,"Picture":null,"Piece":null,"Place order":null,"Placement":null,"Plati clienti":null,"Plati furnizor":null,"Please choose":null,"Please click the button below to verify your email address.":null,"Please confirm your password before continuing.":null,"Please Fill":null,"Please find attached the order's invoice.":null,"Please review your order and payment details":null,"Please set or reset your password by clicking the button below.":null,"POS Receipt":null,"Position":null,"Positions":null,"positions":null,"Post":null,"Postal Area":null,"Postal Code":null,"Postcode":null,"posted":null,"Prepared":null,"Preview":null,"Previous Page":null,"Previous":null,"Price":null,"Privacy":null,"processed":null,"Processing":null,"processing":null,"Product image coming soon":null,"Product":null,"Products per page":null,"Products":null,"products":null,"Produs":null,"Profile":null,"Profit":null,"Proforma Invoice":null,"Proforma":null,"Promissory Note":null,"publish product":null,"Purchase Returns":null,"purchase returns":null,"Purchase":null,"Purchases":null,"purchases":null,"Purple":null,"Qty":null,"Quantity":null,"rating":null,"Rating":null,"Ratio":null,"Read":null,"Recaptcha key":null,"Recaptcha secret":null,"Receipt":null,"Received":null,"Recent orders":null,"Recommended Products":null,"records":null,"Red":null,"Reference \\ PO":null,"Regards":null,"register":null,"Register":null,"Registered Entities":null,"Registered Users":null,"Registry Of Commerce":null,"Registry of commerce":null,"Rejected Association":null,"Rejected Brand":null,"Rejected Documentation":null,"Rejected EAN":null,"Reload":null,"Remember me":null,"Remember Me":null,"Reminder":null,"Remove From Stock":null,"Remove poster":null,"remove":null,"Reorder Menu":null,"reorder":null,"Repeat Password":null,"Replies":null,"Reply":null,"Resell":null,"Reservations":null,"Reserved":null,"Reset password request":null,"Reset password":null,"Reset":null,"Residential":null,"Resource Prefix":null,"Resource":null,"resource":null,"Retur aprovizionari":null,"Retur vanzari":null,"Revenue":null,"Reviews":null,"reviews":null,"Right":null,"Road":null,"Role Item":null,"Role":null,"role":null,"Roles Index":null,"Roles List":null,"Roles":null,"roles":null,"Rotatie":null,"Rotation":null,"Route":null,"Row":null,"Running":null,"Sale Channel":null,"Sale Channels":null,"sale channels":null,"Sale Price":null,"Sale Returns":null,"sale returns":null,"Sale Value":null,"Sales":null,"sales":null,"Saturday":null,"Sauces":null,"Save Configuration":null,"Save your work then click here to refresh your page and update to the latest application version":null,"Save":null,"Sea Salt":null,"Search category limit":null,"Search in products":null,"Search placeholder":null,"Search something":null,"Search within brands":null,"Search...":null,"Search":null,"Searching...":null,"Searching":null,"Secret":null,"See all":null,"Select file for import":null,"select":null,"selected":null,"Send a password reset link":null,"Send a reset password link":null,"Send Password Reset Link":null,"Serial":null,"Server Error":null,"Service Unavailable":null,"Service":null,"Services":null,"services":null,"Set password":null,"Settings":null,"settings":null,"Share your idea...":null,"Share your opinion and rate the product":null,"Share your opinion...":null,"Shelf":null,"Shift + Enter to post":null,"Shipped":null,"Shipping Address":null,"Shipping charges may be incurred":null,"Shipping charges of :value (+VAT) will be added":null,"Shipping cost":null,"You will pay":null,"Visit the product page":null,"Shop Categories":null,"Shopping Cart":null,"Show Log":null,"Show Logs from":null,"Show":null,"show":null,"Showing :from - :to of :total results":null,"Sicilian Honey":null,"Sidebar Toggle":null,"Similar products limit":null,"Site Texts":null,"Size":null,"Sleeping":null,"Some fields were invalid. Please correct the errors and try again.":null,"Something went wrong...":null,"Special Diet":null,"Speciality":null,"Spendings":null,"Square":null,"Start Tutorial":null,"Started":null,"Starters":null,"Status":null,"Stock Rotation":null,"Stock: :stock":null,"Stock":null,"Stopped":null,"Storage Usage":null,"store":null,"Storing":null,"Street Type":null,"Street":null,"Sub Administrative Area":null,"Submit":null,"Success":null,"Successful":null,"Summary":null,"Sunday":null,"Supplier Discounts":null,"Supplier Invoices":null,"Supplier Number":null,"Supplier Payments":null,"Supplier Ref":null,"Supplier Stock":null,"Supplier":null,"suppliers":null,"Sweets":null,"System":null,"system":null,"Table export done":null,"Table export error":null,"Table export started":null,"Table":null,"Tables State Save":null,"Tags":null,"Tasks":null,"tasks":null,"team":null,"Teams":null,"Template":null,"Tenant":null,"terms and conditions":null,"Terms of use":null,"Terms Of Use":null,"terms of use":null,"Thank you for shopping with us":null,"Thank you for using our application!":null,"Thank you for your order":null,"Thank you":null,"The :filename file is ready":null,"The address has been successfully updated":null,"The address was successfully created":null,"The admin role already has all permissions and does not need syncing":null,"The application was updated, please save your work & refresh your browser":null,"The Changes have been saved!":null,"The changes have been saved":null,"The company was successfully created":null,"The company was successfully deleted":null,"The company was successfully updated":null,"The Entity was created!":null,"The entity was created!":null,"The export :name could not be completed due to an unknown error":null,"The export was cancelled successfully":null,"The form contains errors":null,"The generated document has :entries entries":null,"The import was restarted":null,"The language files were successfully merged":null,"The language files were successfully updated":null,"The log file":null,"The log was cleaned":null,"The menu was created!":null,"The operation was successful":null,"New order #:number from :channel for :total :currency was placed by :person":null,"Selected payment method: :paymentMethod":null,"The permission group was created!":null,"The permission was created!":null,"The permissions were created!":null,"The person has assigned resources in the system and cannot be deleted":null,"The Person was successfully created":null,"The person was successfully created":null,"The person was successfully deleted":null,"The person was successfully updated":null,"The poster was deleted successfully":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The requested report was started. It can take a few minutes before you have it in your inbox":null,"The role was created!":null,"The selected record is about to be deleted. Are you sure?":null,"The team was successfully saved":null,"The tutorial was created!":null,"The tutorial was successfully deleted":null,"The user group was successfully created":null,"The user group was successfully deleted":null,"The user has activity in the system and cannot be deleted":null,"The User was created!":null,"The video file was deleted successfully":null,"The video was updated successfully":null,"The webshop is still under construction, but we're launching soon...":null,"Theme Color":null,"Theme":null,"There are no active carousel slides":null,"There are no addresses added yet":null,"There are no companies added yet":null,"There are no credit cards added yet":null,"This action is unauthorized.":null,"this month":null,"This password reset link will expire in :count minutes.":null,"This password reset token is invalid.":null,"This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":null,"privacy policy":null,"this week":null,"this year":null,"Thursday":null,"Time":null,"Timeline":null,"Tip":null,"Title...":null,"Title":null,"title":null,"to manage your addresses":null,"to manage your cards":null,"to manage your companies":null,"to view your order":null,"To":null,"to":null,"Today":null,"today":null,"Toggle navigation":null,"Too Many Attempts.":null,"Too Many Requests":null,"Top Banner Content":null,"Top Pick":null,"Total amount for order #:number is :currency:total":null,"total records":null,"Total":null,"total":null,"Translations":null,"Tuesday":null,"Tutorial":null,"Tutorials Index":null,"Tutorials":null,"tutorials":null,"Type a new comment":null,"Type":null,"type":null,"Types":null,"Unable to read file":null,"Unauthorized":null,"Undo Stock Insertion":null,"Undo Stock Removal":null,"Unique Identifier":null,"Unit. Price":null,"Unitary Price":null,"untagged":null,"Update":null,"Updated At":null,"Updated By":null,"updated the members":null,"updated":null,"Updated":null,"Upload Avatar":null,"Upload Template":null,"uploads":null,"Use":null,"User Details":null,"user groups":null,"User Groups":null,"User Info":null,"User Profile":null,"User":null,"user":null,"Users Administration":null,"Users Index":null,"Users":null,"users":null,"Valability":null,"Valid":null,"Value in seconds. Use 0 to disable":null,"Value":null,"Vanzari":null,"VAT":null,"VAT Value":null,"ver":null,"Verify Email Address":null,"Verify Your Email Address":null,"Video description":null,"Video name":null,"Video":null,"video":null,"View Cart":null,"View your order":null,"Virtual Position ID":null,"Visible Brands":null,"Visible Top Banner":null,"Vista":null,"Volume":null,"Voucher":null,"waiting":null,"Warehouse":null,"warehouses":null,"Warehouses":null,"Warning":null,"was changed":null,"was last updated":null,"We can't find a user with that e-mail address.":null,"We have e-mailed your password reset link!":null,"We will keep you updated on its progress":null,"We won't ask for your password again for a few hours.":null,"Webshop Name":null,"Webshop Order":null,"webshop":null,"Webshop":null,"Website":null,"Wednesday":null,"Welcome Back":null,"Welcome":null,"What happened?":null,"What you need to know":null,"What":null,"When":null,"Whoops!":null,"Width":null,"Write a review":null,"Write":null,"Yes":null,"yesterday":null,"You are not authorized for this action":null,"You are not authorized to perform this action":null,"You are receiving this email because we received a password reset request for your account.":null,"You can click":null,"You don't have any favorite products yet":null,"You don't have any notifications":null,"You don't have any orders yet":null,"You don't have any products in the shopping cart right now":null,"You have":null,"You just got a notification...":null,"You made too many attempts. Please wait 5 minutes and try again.":null,"You may also like":null,"You will find attached the requested report.":null,"Your :shop order :number":null,"Your account has been disabled. Please contact the administrator":null,"Your card was successfully saved":null,"Your email address is not verified.":null,"Your Message":null,"Your password has been reset!":null,"You need to accept our terms of use first":null,"item":null,"PO #":null,"Your privacy is important for us":null,"cart":null,"favourites":null,"addresses":null,"orders":null,"payment":null,"summary":null,"add":null,"rate":null,"review":null,"star":null,"stars":null,"Thank you for contributing":null,"Do you own or have used this product?":null,"This review is awaiting approval":null,"This review was approved":null,"This review was rejected. You may edit and repost it.":null,"Edit review":null,"category":null,"terms-of-use":null,"privacy":null,"about-us":null,"favorites":null,":user finalized the :model :label for the partner :partner":null,":type quantity and total were successfully updated":null,":type update":null,"Please find attached the order details":null,"Succeeded":null,"External Reference":null,"Incomplete order (#:number)":null,"On :date you placed an order on our webshop but forgot to finalize the payment.":null,"Please click bellow to view your order and finalize the payment":null,"New message from the webshop's contact form":null,"Your Webshop.":null,"Message:":null,"Contact phone: :phone":null,"Your order #:number on :shop was successfully placed":null,"You have a new webshop order":null,"New user registration":null,"Before adjusting stock, select the product default supplier":null,"Cannot increment when quantity <= 0":null,"Cannot decrement when quantity <= 0":null,"Order already has a :type invoice":null,"Invalid item":null,"Cannot update orders that are externally fulfilled":null,"Order is already in this status":null,"There are no differences on this order":null,"You are not allowed to issue payments without invoices":null,"You are not allowed to issue payments on a cancelled invoice'":null,"Sale is already paid":null,"You cannot delete a paid order":null,"order details":null,"Delivery Address":null,"Disc.":null,"M.U.":null,"Product \/ Code":null,"registered in doc.":null,"received":null,"U.P acquision":null,"(no VAT)":null,"Val. acquision":null,"Val. VAT":null,"(afferent)":null,"Info field":null,"additional":null,"piece":null,"Total General":null,"Goods Receipt Note":null,"Unit":null,"The undersigned, members of the reception committee, have received the material values provided by":null,"delegate":null,"based on the accompanying documents":null,"consisting":null,"car no.":null,"Optional field, usable in case of observations":null,"Reception committee members name and surname":null,"Signature":null,"Manager name and surename":null,"Manager name and surname":null,"Reception comitee conclusions":null,"Reception committee conclusions":null,"Supplier\/carrier point of view":null,"Other mentions":null,"The quantity determination was done by":null,"The quality determination was made by the sample":null,"no.":null,"Sender":null,"Companion":null,"Dispatch station":null,"Destination station":null,"Release date":null,"Dispatch date":null,"Arrival date":null,"Supplier delegates, the carrier who participated in the reception":null,"ISBN":null,"Total products":null,"Scale indicated weight":null,"Stock Removal":null,"Representative of":null,"Name and surname":null,"Identity card":null,"TOTAL":null,"Reception participants":null,"for Sale":null,"Emag API call for :action failed":null,"The action :action on url :url failed with the following error messages:":null,"New :type callback from emag":null,"New :type callback from emag for id :id":null,"Missing app product for emag order :id":null,"Product :product":null,"Offer mismatch for eMag order :id":null,"For product :code":null,"External part number :code":null,"Part number :code":null,"New eMag order (id: :id) with vouchers:":null,":name, value :value":null,"New eMag order (id: :id) with vouchers":null,"Shipping price mismatch for eMag order :order":null,"Product price mismatch for eMag order :order":null,"Offer with id :id already exists":null,"An offer for the pnk :pnk already exists":null,"An offer with product id :id already exists and needs eMag intervention":null,"No order with id :id found":null,"Write Review For":null,"Don't know what to write about?":null,"Tell us what you like about the purchased product.":null,"Does it live up to your expectations?":null,"Are you satisfied with the value for money?":null,"Would you recommend it to others?":null,"Remove from favorites":null,"make default":null,"delivery":null,"billing":null,"Not Paid":null,"Requires Action":null,"verify":null,"Verify":null,"confirmation":null,"No addresses defined":null,"Part":null,"Complete the payment":null,"An extra confirmation is needed to process your payment":null,"Order is already paid":null,"Your payment for this order is still processing":null,"Please find the invoice attached":null,"Invoice issued for order #:number":null,"Your order #:number":null,"Payment via :type was successful for order :number":null,"A payment was received for order #:number (:total :currency)":null,"Insufficient stock for :product, only :left left":null,"Registration is restricted for the moment, please return soon":null,"Hello :name":null,"Thank you for creating an account on :shop":null,"We hope that you will enjoy our products":null,"Go to login":null,"Ship to a different addresstion button, copy and paste the URL below into your web browser":null,"Payment via :type was successful for order #:number, amount :amount :currency":null,"View order":null,"Click bellow to view your order and finalize the payment":null,"A new account was created : :name":null,"from: :company":null,"To manage the account please click the link below":null,"View account":null,"Details for delivering your order":null,"You're just a few steps away from finalizing your order":null,"If you already have an account click":null,"to go to the login page":null,"Your account":null,"I want to create an account":null,"Skip":null,"New order #:number from :channel for :total :currency":null,"fast-checkout":null,"Fast Checkout":null,"The action :action failed with the following error code: :code":null,"Reported error message: :message":null,"Request payload: :payload":null,"API call for :action failed":null,"Notification, :title":null,"New Comment Tag":null,"You were just tagged":null,"Comment Tag Notification":null,"Your password will expire soon":null,"You've got :days days left to change it":null,"You've got until tomorrow to change it":null,"You must change it today":null,"Welcome!":null,"Task Reminder":null,"This is a reminder for the following task:":null,"View Task":null,"Task :description":null,"You cannot delete the default address":null,"You cannot delete an address that you have previously used":null,"You cannot edit this company, please contact support":null,"Your cart is empty":null,"You cannot delete the default card":null,"You cannot edit this :model, please contact support":null,"Company information":null,"Billing address":null,"Free":null,"Get to know us":null,"Registration successful":null,"Your account needs to be activated before you can login":null,"You will receive a confirmation email upon approval":null,"Thank you!":null,"Frequently asked questions":null,"Edit address":null,"Edit company":null,"Pay by Card":null,"Click":null,"Not Implemented":null,"Approve":null,"Disapprove":null,"for \":query\"":null,"Review was rejected":null,"Review updated for :product":null,"New review submitted for :product":null,"A product review was updated by :person:":null,"A new product review was posted by :person:":null,"Your review for :product was :approval":null,"If you want, you can revise your review here:":null,"Review :approval":null,"approved":null,"rejected":null,"Terms of Use":null,"Similar products":null,"Enter your email to reset your password":null,"We'll send you an email with the instructions to follow":null,"similar-products":null,"description":null,"characteristics":null,"about-this-brand":null,"not in stock":null,"Not In Stock":null,"Hold tight, your order is being processed. We will email you when your order succeeds":null,"Wire Transfer":null,"Grand Total":null,"A cancellation request was received for order #:id":null,"Cancellation request for order #:id":null,"Please let us know if you are able to cancel the order":null,"Cancellation request for emag order with id :id":null,"An emag order cancellation request was received":null,"Ensure the order may still be cancellable":null,"and optionally contact the client":null,"You may access the corresponding sale":null,"using the button below":null,"If you need to change your email please contact us":null,"Awb status was updated to \":status\" for emag order #:id":null,"Awb status update for emag order #:id":null} \ No newline at end of file diff --git a/resources/lang/nl/auth.php b/resources/lang/nl/auth.php index 577447fed..062343fbe 100644 --- a/resources/lang/nl/auth.php +++ b/resources/lang/nl/auth.php @@ -1,17 +1,18 @@ 'Deze combinatie van e-mailadres en wachtwoord is niet geldig.', +return [ + 'failed' => 'Deze combinatie van e-mailadres en wachtwoord is niet geldig.', + 'password' => 'Het opgegeven wachtwoord is onjuist.', 'throttle' => 'Te veel mislukte loginpogingen. Probeer het over :seconds seconden nogmaals.', ]; diff --git a/resources/lang/nl/pagination.php b/resources/lang/nl/pagination.php index 8d6a62f7c..1381d2b75 100644 --- a/resources/lang/nl/pagination.php +++ b/resources/lang/nl/pagination.php @@ -1,17 +1,17 @@ 'Volgende »', 'previous' => '« Vorige', - 'next' => 'Volgende »', ]; diff --git a/resources/lang/nl/passwords.php b/resources/lang/nl/passwords.php index b095e0d91..c9a7a8432 100644 --- a/resources/lang/nl/passwords.php +++ b/resources/lang/nl/passwords.php @@ -1,21 +1,20 @@ 'Wachtwoorden moeten minimaal zes tekens lang zijn en overeenkomen met het wachtwoord bevestigingsveld.', - 'reset' => 'Het wachtwoord van uw account is gewijzigd.', - 'sent' => 'We hebben een e-mail verstuurd met instructies om een nieuw wachtwoord in te stellen.', +return [ + 'reset' => 'Het wachtwoord van uw account is gewijzigd.', + 'sent' => 'We hebben een e-mail verstuurd met instructies om een nieuw wachtwoord in te stellen.', 'throttled' => 'Gelieve even te wachten voor u het opnieuw probeert.', - 'token' => 'Dit wachtwoordhersteltoken is niet geldig.', - 'user' => 'Geen gebruiker bekend met het e-mailadres.', + 'token' => 'Dit wachtwoordhersteltoken is niet geldig.', + 'user' => 'Geen gebruiker bekend met het e-mailadres.', ]; diff --git a/resources/lang/nl/validation-inline.php b/resources/lang/nl/validation-inline.php new file mode 100644 index 000000000..5cc64e882 --- /dev/null +++ b/resources/lang/nl/validation-inline.php @@ -0,0 +1,131 @@ + 'Dit veld moet geaccepteerd zijn.', + 'active_url' => 'Dit is geen geldige URL.', + 'after' => 'Dit moet een datum na :date zijn.', + 'after_or_equal' => 'Dit moet een datum na of gelijk aan :date zijn.', + 'alpha' => 'Dit veld mag alleen letters bevatten.', + 'alpha_dash' => 'Dit veld mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.', + 'alpha_num' => 'Dit veld mag alleen letters en nummers bevatten.', + 'array' => 'Dit veld moet geselecteerde elementen bevatten.', + 'attached' => 'Dit veld is reeds gekoppeld.', + 'before' => 'Dit moet een datum voor :date zijn.', + 'before_or_equal' => 'Dit moet een datum voor of gelijk aan :date zijn.', + 'between' => [ + 'array' => 'Dit moet tussen :min en :max items bevatten.', + 'file' => 'Dit moet tussen :min en :max kilobytes zijn.', + 'numeric' => 'Dit moet tussen :min en :max zijn.', + 'string' => 'Dit moet tussen :min en :max karakters zijn.', + ], + 'boolean' => 'Dit veld moet ja of nee zijn.', + 'confirmed' => 'De bevestiging komt niet overeen.', + 'date' => 'Dit is geen geldige datum', + 'date_equals' => 'Dit moet een datum gelijk aan :date zijn.', + 'date_format' => 'Dit voldoet niet aan het formaat :format.', + 'different' => 'Dit en :other moeten verschillend zijn.', + 'digits' => 'Dit moet bestaan uit :digits cijfers.', + 'digits_between' => 'Dit moet bestaan uit minimaal :min en maximaal :max cijfers.', + 'dimensions' => 'Deze afbeelding heeft geen geldige afmetingen.', + 'distinct' => 'Dit veld heeft een dubbele waarde.', + 'email' => 'Dit is geen geldig e-mailadres.', + 'ends_with' => 'Dit moet met één van de volgende waarden eindigen: :values.', + 'exists' => 'De geselecteerde waarde bestaat niet.', + 'file' => 'Dit moet een bestand zijn.', + 'filled' => 'Dit veld is verplicht.', + 'gt' => [ + 'array' => 'De inhoud moet meer dan :value waardes bevatten.', + 'file' => 'Het bestand moet groter zijn dan :value kilobytes.', + 'numeric' => 'De waarde moet groter zijn dan :value.', + 'string' => 'De waarde moet meer dan :value tekens bevatten.', + ], + 'gte' => [ + 'array' => 'De inhoud moet :value waardes of meer bevatten.', + 'file' => 'Het bestand moet groter of gelijk zijn aan :value kilobytes.', + 'numeric' => 'De waarde moet groter of gelijk zijn aan :value.', + 'string' => 'De waarde moet minimaal :value tekens bevatten.', + ], + 'image' => 'Dit moet een afbeelding zijn.', + 'in' => 'De geselecteerde waarde is ongeldig.', + 'in_array' => 'Deze waarde bestaat niet in :other.', + 'integer' => 'Dit moet een getal zijn.', + 'ip' => 'Dit moet een geldig IP-adres zijn.', + 'ipv4' => 'Dit moet een geldig IPv4-adres zijn.', + 'ipv6' => 'Dit moet een geldig IPv6-adres zijn.', + 'json' => 'Dit moet een geldige JSON-string zijn.', + 'lt' => [ + 'array' => 'De inhoud moet minder dan :value waardes bevatten.', + 'file' => 'Het bestand moet kleiner zijn dan :value kilobytes.', + 'numeric' => 'De waarde moet kleiner zijn dan :value.', + 'string' => 'De waarde moet minder dan :value tekens bevatten.', + ], + 'lte' => [ + 'array' => 'De inhoud moet :value waardes of minder bevatten.', + 'file' => 'Het bestand moet kleiner of gelijk zijn aan :value kilobytes.', + 'numeric' => 'De waarde moet kleiner of gelijk zijn aan :value.', + 'string' => 'De waarde moet maximaal :value tekens bevatten.', + ], + 'max' => [ + 'array' => 'De inhoud mag niet meer dan :max items bevatten.', + 'file' => 'Het bestand mag niet meer dan :max kilobytes zijn.', + 'numeric' => 'De waarde mag niet hoger dan :max zijn.', + 'string' => 'De waarde mag niet uit meer dan :max tekens bestaan.', + ], + 'mimes' => 'Dit moet een bestand zijn van het bestandstype :values.', + 'mimetypes' => 'Dit moet een bestand zijn van het bestandstype :values.', + 'min' => [ + 'array' => 'De inhoud moet minimaal :min items bevatten.', + 'file' => 'Het bestand moet minimaal :min kilobytes zijn.', + 'numeric' => 'De waarde moet minimaal :min zijn.', + 'string' => 'De waarde moet minimaal :min tekens zijn.', + ], + 'multiple_of' => 'De waarde moet een veelvoud van :value zijn.', + 'not_in' => 'De geselecteerde waarde is ongeldig.', + 'not_regex' => 'Dit formaat is ongeldig.', + 'numeric' => 'Dit moet een nummer zijn', + 'password' => 'Het wachtwoord is onjuist.', + 'present' => 'Dit veld moet bestaan.', + 'prohibited' => 'Dit veld is verboden.', + 'prohibited_if' => 'Dit veld is verboden indien :other gelijk is aan :value.', + 'prohibited_unless' => 'Dit veld is verboden tenzij :other is aan :values.', + 'regex' => 'Dit formaat is ongeldig.', + 'relatable' => 'Dit veld mag niet gekoppeld worden aan deze bron.', + 'required' => 'Dit veld is verplicht.', + 'required_if' => 'Dit veld is verplicht indien :other gelijk is aan :value.', + 'required_unless' => 'Dit veld is verplicht tenzij :other gelijk is aan :values.', + 'required_with' => 'Dit veld is verplicht i.c.m. :values', + 'required_with_all' => 'Dit veld is verplicht i.c.m. :values', + 'required_without' => 'Dit veld is verplicht als :values niet ingevuld is.', + 'required_without_all' => 'Dit veld is verplicht als :values niet ingevuld zijn.', + 'same' => 'De waarde van dit veld en :other moeten overeenkomen.', + 'size' => [ + 'array' => ':de inhoud moet :size items bevatten.', + 'file' => ':Het bestand moet :size kilobyte zijn.', + 'numeric' => ':De waarde moet :size zijn.', + 'string' => ':De waarde moet :size tekens zijn.', + ], + 'starts_with' => 'Dit moet starten met een van de volgende: :values.', + 'string' => 'Dit moet een tekst zijn.', + 'timezone' => 'Dit moet een geldige tijdzone zijn.', + 'unique' => 'Deze is al in gebruik', + 'uploaded' => 'Het uploaden hiervan is mislukt.', + 'url' => 'Dit moet een geldige URL zijn.', + 'uuid' => 'Dit moet een geldige UUID zijn.', + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + 'attributes' => [], +]; diff --git a/resources/lang/nl/validation.php b/resources/lang/nl/validation.php index 6e5e3aecc..eea1f82ce 100644 --- a/resources/lang/nl/validation.php +++ b/resources/lang/nl/validation.php @@ -1,186 +1,173 @@ ':Attribute moet geaccepteerd zijn.', - 'active_url' => ':Attribute is geen geldige URL.', - 'after' => ':Attribute moet een datum na :date zijn.', - 'after_or_equal' => ':Attribute moet een datum na of gelijk aan :date zijn.', - 'alpha' => ':Attribute mag alleen letters bevatten.', - 'alpha_dash' => ':Attribute mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.', - 'alpha_num' => ':Attribute mag alleen letters en nummers bevatten.', - 'array' => ':Attribute moet geselecteerde elementen bevatten.', - 'before' => ':Attribute moet een datum voor :date zijn.', - 'before_or_equal' => ':Attribute moet een datum voor of gelijk aan :date zijn.', - 'between' => [ + 'accepted' => ':Attribute moet geaccepteerd zijn.', + 'active_url' => ':Attribute is geen geldige URL.', + 'after' => ':Attribute moet een datum na :date zijn.', + 'after_or_equal' => ':Attribute moet een datum na of gelijk aan :date zijn.', + 'alpha' => ':Attribute mag alleen letters bevatten.', + 'alpha_dash' => ':Attribute mag alleen letters, nummers, underscores (_) en streepjes (-) bevatten.', + 'alpha_num' => ':Attribute mag alleen letters en nummers bevatten.', + 'array' => ':Attribute moet geselecteerde elementen bevatten.', + 'attached' => ':Attribute is reeds gekoppeld.', + 'before' => ':Attribute moet een datum voor :date zijn.', + 'before_or_equal' => ':Attribute moet een datum voor of gelijk aan :date zijn.', + 'between' => [ + 'array' => ':Attribute moet tussen :min en :max items bevatten.', + 'file' => ':Attribute moet tussen :min en :max kilobytes zijn.', 'numeric' => ':Attribute moet tussen :min en :max zijn.', - 'file' => ':Attribute moet tussen :min en :max kilobytes zijn.', - 'string' => ':Attribute moet tussen :min en :max karakters zijn.', - 'array' => ':Attribute moet tussen :min en :max items bevatten.', + 'string' => ':Attribute moet tussen :min en :max karakters zijn.', ], - 'boolean' => ':Attribute moet ja of nee zijn.', - 'confirmed' => ':Attribute bevestiging komt niet overeen.', - 'date' => ':Attribute moet een datum bevatten.', - 'date_equals' => ':Attribute moet een datum gelijk aan :date zijn.', - 'date_format' => ':Attribute moet een geldig datum formaat bevatten.', - 'different' => ':Attribute en :other moeten verschillend zijn.', - 'digits' => ':Attribute moet bestaan uit :digits cijfers.', - 'digits_between' => ':Attribute moet bestaan uit minimaal :min en maximaal :max cijfers.', - 'dimensions' => ':Attribute heeft geen geldige afmetingen voor afbeeldingen.', - 'distinct' => ':Attribute heeft een dubbele waarde.', - 'email' => ':Attribute is geen geldig e-mailadres.', - 'ends_with' => ':Attribute moet met één van de volgende waarden eindigen: :values', - 'exists' => ':Attribute bestaat niet.', - 'file' => ':Attribute moet een bestand zijn.', - 'filled' => ':Attribute is verplicht.', - 'gt' => [ + 'boolean' => ':Attribute moet ja of nee zijn.', + 'confirmed' => ':Attribute bevestiging komt niet overeen.', + 'date' => ':Attribute moet een datum bevatten.', + 'date_equals' => ':Attribute moet een datum gelijk aan :date zijn.', + 'date_format' => ':Attribute moet een geldig datum formaat bevatten.', + 'different' => ':Attribute en :other moeten verschillend zijn.', + 'digits' => ':Attribute moet bestaan uit :digits cijfers.', + 'digits_between' => ':Attribute moet bestaan uit minimaal :min en maximaal :max cijfers.', + 'dimensions' => ':Attribute heeft geen geldige afmetingen voor afbeeldingen.', + 'distinct' => ':Attribute heeft een dubbele waarde.', + 'email' => ':Attribute is geen geldig e-mailadres.', + 'ends_with' => ':Attribute moet met één van de volgende waarden eindigen: :values.', + 'exists' => ':Attribute bestaat niet.', + 'file' => ':Attribute moet een bestand zijn.', + 'filled' => ':Attribute is verplicht.', + 'gt' => [ + 'array' => 'De :attribute moet meer dan :value waardes bevatten.', + 'file' => 'De :attribute moet groter zijn dan :value kilobytes.', 'numeric' => 'De :attribute moet groter zijn dan :value.', - 'file' => 'De :attribute moet groter zijn dan :value kilobytes.', - 'string' => 'De :attribute moet meer dan :value tekens bevatten.', - 'array' => 'De :attribute moet meer dan :value waardes bevatten.', + 'string' => 'De :attribute moet meer dan :value tekens bevatten.', ], - 'gte' => [ + 'gte' => [ + 'array' => 'De :attribute moet :value waardes of meer bevatten.', + 'file' => 'De :attribute moet groter of gelijk zijn aan :value kilobytes.', 'numeric' => 'De :attribute moet groter of gelijk zijn aan :value.', - 'file' => 'De :attribute moet groter of gelijk zijn aan :value kilobytes.', - 'string' => 'De :attribute moet minimaal :value tekens bevatten.', - 'array' => 'De :attribute moet :value waardes of meer bevatten.', + 'string' => 'De :attribute moet minimaal :value tekens bevatten.', ], - 'image' => ':Attribute moet een afbeelding zijn.', - 'in' => ':Attribute is ongeldig.', - 'in_array' => ':Attribute bestaat niet in :other.', - 'integer' => ':Attribute moet een getal zijn.', - 'ip' => ':Attribute moet een geldig IP-adres zijn.', - 'ipv4' => ':Attribute moet een geldig IPv4-adres zijn.', - 'ipv6' => ':Attribute moet een geldig IPv6-adres zijn.', - 'json' => ':Attribute moet een geldige JSON-string zijn.', - 'lt' => [ + 'image' => ':Attribute moet een afbeelding zijn.', + 'in' => ':Attribute is ongeldig.', + 'in_array' => ':Attribute bestaat niet in :other.', + 'integer' => ':Attribute moet een getal zijn.', + 'ip' => ':Attribute moet een geldig IP-adres zijn.', + 'ipv4' => ':Attribute moet een geldig IPv4-adres zijn.', + 'ipv6' => ':Attribute moet een geldig IPv6-adres zijn.', + 'json' => ':Attribute moet een geldige JSON-string zijn.', + 'lt' => [ + 'array' => 'De :attribute moet minder dan :value waardes bevatten.', + 'file' => 'De :attribute moet kleiner zijn dan :value kilobytes.', 'numeric' => 'De :attribute moet kleiner zijn dan :value.', - 'file' => 'De :attribute moet kleiner zijn dan :value kilobytes.', - 'string' => 'De :attribute moet minder dan :value tekens bevatten.', - 'array' => 'De :attribute moet minder dan :value waardes bevatten.', + 'string' => 'De :attribute moet minder dan :value tekens bevatten.', ], - 'lte' => [ + 'lte' => [ + 'array' => 'De :attribute moet :value waardes of minder bevatten.', + 'file' => 'De :attribute moet kleiner of gelijk zijn aan :value kilobytes.', 'numeric' => 'De :attribute moet kleiner of gelijk zijn aan :value.', - 'file' => 'De :attribute moet kleiner of gelijk zijn aan :value kilobytes.', - 'string' => 'De :attribute moet maximaal :value tekens bevatten.', - 'array' => 'De :attribute moet :value waardes of minder bevatten.', + 'string' => 'De :attribute moet maximaal :value tekens bevatten.', ], - 'max' => [ + 'max' => [ + 'array' => ':Attribute mag niet meer dan :max items bevatten.', + 'file' => ':Attribute mag niet meer dan :max kilobytes zijn.', 'numeric' => ':Attribute mag niet hoger dan :max zijn.', - 'file' => ':Attribute mag niet meer dan :max kilobytes zijn.', - 'string' => ':Attribute mag niet uit meer dan :max tekens bestaan.', - 'array' => ':Attribute mag niet meer dan :max items bevatten.', + 'string' => ':Attribute mag niet uit meer dan :max tekens bestaan.', ], - 'mimes' => ':Attribute moet een bestand zijn van het bestandstype :values.', - 'mimetypes' => ':Attribute moet een bestand zijn van het bestandstype :values.', - 'min' => [ + 'mimes' => ':Attribute moet een bestand zijn van het bestandstype :values.', + 'mimetypes' => ':Attribute moet een bestand zijn van het bestandstype :values.', + 'min' => [ + 'array' => ':Attribute moet minimaal :min items bevatten.', + 'file' => ':Attribute moet minimaal :min kilobytes zijn.', 'numeric' => ':Attribute moet minimaal :min zijn.', - 'file' => ':Attribute moet minimaal :min kilobytes zijn.', - 'string' => ':Attribute moet minimaal :min tekens zijn.', - 'array' => ':Attribute moet minimaal :min items bevatten.', + 'string' => ':Attribute moet minimaal :min tekens zijn.', ], - 'not_in' => 'Het formaat van :attribute is ongeldig.', - 'not_regex' => 'De :attribute formaat is ongeldig.', - 'numeric' => ':Attribute moet een nummer zijn.', - 'password' => 'Wachtwoord is onjuist.', - 'present' => ':Attribute moet bestaan.', - 'regex' => ':Attribute formaat is ongeldig.', - 'required' => ':Attribute is verplicht.', - 'required_if' => ':Attribute is verplicht indien :other gelijk is aan :value.', - 'required_unless' => ':Attribute is verplicht tenzij :other gelijk is aan :values.', - 'required_with' => ':Attribute is verplicht i.c.m. :values', - 'required_with_all' => ':Attribute is verplicht i.c.m. :values', - 'required_without' => ':Attribute is verplicht als :values niet ingevuld is.', + 'multiple_of' => ':Attribute moet een veelvoud van :value zijn.', + 'not_in' => 'Het formaat van :attribute is ongeldig.', + 'not_regex' => 'De :attribute formaat is ongeldig.', + 'numeric' => ':Attribute moet een nummer zijn.', + 'password' => 'Wachtwoord is onjuist.', + 'present' => ':Attribute moet bestaan.', + 'prohibited' => ':Attribute veld is verboden.', + 'prohibited_if' => ':Attribute veld is verboden indien :other gelijk is aan :value.', + 'prohibited_unless' => ':Attribute veld is verboden tenzij :other gelijk is aan :values.', + 'regex' => ':Attribute formaat is ongeldig.', + 'relatable' => ':Attribute mag niet gekoppeld worden aan deze bron.', + 'required' => ':Attribute is verplicht.', + 'required_if' => ':Attribute is verplicht indien :other gelijk is aan :value.', + 'required_unless' => ':Attribute is verplicht tenzij :other gelijk is aan :values.', + 'required_with' => ':Attribute is verplicht i.c.m. :values', + 'required_with_all' => ':Attribute is verplicht i.c.m. :values', + 'required_without' => ':Attribute is verplicht als :values niet ingevuld is.', 'required_without_all' => ':Attribute is verplicht als :values niet ingevuld zijn.', - 'same' => ':Attribute en :other moeten overeenkomen.', - 'size' => [ + 'same' => ':Attribute en :other moeten overeenkomen.', + 'size' => [ + 'array' => ':Attribute moet :size items bevatten.', + 'file' => ':Attribute moet :size kilobyte zijn.', 'numeric' => ':Attribute moet :size zijn.', - 'file' => ':Attribute moet :size kilobyte zijn.', - 'string' => ':Attribute moet :size tekens zijn.', - 'array' => ':Attribute moet :size items bevatten.', + 'string' => ':Attribute moet :size tekens zijn.', ], - 'starts_with' => ':Attribute moet starten met een van de volgende: :values', - 'string' => ':Attribute moet een tekst zijn.', - 'timezone' => ':Attribute moet een geldige tijdzone zijn.', - 'unique' => ':Attribute is al in gebruik.', - 'uploaded' => 'Het uploaden van :attribute is mislukt.', - 'url' => ':Attribute moet een geldig URL zijn.', - 'uuid' => ':Attribute moet een geldig UUID zijn.', - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - 'custom' => [ + 'starts_with' => ':Attribute moet starten met een van de volgende: :values.', + 'string' => ':Attribute moet een tekst zijn.', + 'timezone' => ':Attribute moet een geldige tijdzone zijn.', + 'unique' => ':Attribute is al in gebruik.', + 'uploaded' => 'Het uploaden van :attribute is mislukt.', + 'url' => ':Attribute moet een geldig URL zijn.', + 'uuid' => ':Attribute moet een geldig UUID zijn.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap attribute place-holders - | with something more reader friendly such as E-Mail Address instead - | of "email". This simply helps us make messages a little cleaner. - | - */ - 'attributes' => [ - 'address' => 'adres', - 'age' => 'leeftijd', - 'amount' => 'bedrag', - 'available' => 'beschikbaar', - 'city' => 'stad', - 'content' => 'inhoud', - 'country' => 'land', - 'currency' => 'valuta', - 'date' => 'datum', - 'date_of_birth' => 'geboortedatum', - 'day' => 'dag', - 'description' => 'omschrijving', - 'duration' => 'tijdsduur', - 'email' => 'e-mailadres', - 'excerpt' => 'uittreksel', - 'first_name' => 'voornaam', - 'gender' => 'geslacht', - 'group' => 'groep', - 'hour' => 'uur', - 'last_name' => 'achternaam', - 'lesson' => 'les', - 'message' => 'bericht', - 'minute' => 'minuut', - 'mobile' => 'mobiel', - 'month' => 'maand', - 'name' => 'naam', - 'password' => 'wachtwoord', + 'attributes' => [ + 'address' => 'adres', + 'age' => 'leeftijd', + 'amount' => 'bedrag', + 'available' => 'beschikbaar', + 'city' => 'stad', + 'content' => 'inhoud', + 'country' => 'land', + 'currency' => 'valuta', + 'date' => 'datum', + 'date_of_birth' => 'geboortedatum', + 'day' => 'dag', + 'description' => 'omschrijving', + 'duration' => 'tijdsduur', + 'email' => 'e-mailadres', + 'excerpt' => 'uittreksel', + 'first_name' => 'voornaam', + 'gender' => 'geslacht', + 'group' => 'groep', + 'hour' => 'uur', + 'last_name' => 'achternaam', + 'lesson' => 'les', + 'message' => 'bericht', + 'minute' => 'minuut', + 'mobile' => 'mobiel', + 'month' => 'maand', + 'name' => 'naam', + 'password' => 'wachtwoord', 'password_confirmation' => 'wachtwoordbevestiging', - 'phone' => 'telefoonnummer', - 'price' => 'prijs', - 'second' => 'seconde', - 'sex' => 'geslacht', - 'size' => 'grootte', - 'street' => 'straatnaam', - 'student' => 'student', - 'subject' => 'onderwerp', - 'teacher' => 'Docent', - 'time' => 'tijd', - 'title' => 'titel', - 'username' => 'gebruikersnaam', - 'year' => 'jaar', + 'phone' => 'telefoonnummer', + 'price' => 'prijs', + 'second' => 'seconde', + 'sex' => 'geslacht', + 'size' => 'grootte', + 'street' => 'straatnaam', + 'student' => 'student', + 'subject' => 'onderwerp', + 'teacher' => 'Docent', + 'time' => 'tijd', + 'title' => 'titel', + 'username' => 'gebruikersnaam', + 'year' => 'jaar', ], ]; diff --git a/resources/lang/ro.json b/resources/lang/ro.json index 5844579f7..05d796d4c 100644 --- a/resources/lang/ro.json +++ b/resources/lang/ro.json @@ -1 +1 @@ -{":name export done":"Export :name efectuat",":name export started":"Exportul :name a început",":type import done":"Import :type efectuat","#":"#","30 days":"30 zile","7 days":"7 zile","A fresh verification link has been sent to your email address.":"Am trimis un nou link de verificare pe adresa dvs. de e-mail","About this brand":"Despre acest brand","About Us":"Despre noi","Above":"Deasupra","Accessories":"Accesorii","Account details":"Detalii cont","Account":"Cont","account":"cont","Acidity":"Aciditate","Acquisition Price":"Preț achiziție","Acquisition Value":"Valoare achiziție","Actions":"Acțiuni","actions":"acțiuni","Active":"Activ","active":"activ","Activity Log":"Activitate","Activity Start Date":"Data de începere a activității","Activity":"Activitate","Add :entity":"Adaugă :entity","Add address":"Adaugă adresă","Add Brand":"Adaugă brand","Add card":"Adaugă card","Add Card":"Adaugă card","Add Comment":"Adaugă comentariu","Add company":"Adaugă companie","Add File":"Adaugă fișier","Add Key":"Adaugă cheie","Add Payment":"Adaugă plată","Add to cart":"Adaugă în coș","Add to favorites":"Adaugă la favorite","Add video":"Adaugă clip","Add":"Adaugă","Adding":"Se adaugă","Additional":"Adițional","Address is missing or does not have lat\/long":"Adresa lipseste sau nu are latitudine \/ longitudine","Address":"Adresa","Addresses":"Adrese","Adjustment":"Reglaj","Administration":"Administrare","administration":"administrare","Administrative Area":"Administrare","Again Colors":"Din nou, culori","Agent":"Agent","Algolia":null,"All Menu Items":"Toate elementele","All Products":"Toate Produsele","All products":"Toate produsele","all products":"toate produsele","All rights reserved.":"Toate drepturile rezervate.","all":"tot","Allocated To":"Atribuit către","Amazing Saving":"Preț avantajos","Amount":"Suma","An error has occured. Please report this to the administrator":"S-a inregistrat o eroare. Raporteaza acest fapt administratorului","An error was encountered while generationg :export":"A aparut o eroare la generarea exportului :export","An export job is already running for the same table":"Un export este deja in curs pt acelasi tabel","An unknown error occurred while submitting your report. Please try again.":"A fost o eroare la trimiterea mesajului tau. Te rugam sa reincerci.","Analytics Id":null,"Apartment":"Apartament","App Key":null,"App":"App","Appellative":"Apelativ","Approved Documentation":"Documentație aprobată","Approved":"Aprobat","April":"Aprilie","Aprovizionari":null,"Are you sure that you want to delete the template file?":"Esti sigur ca vrei sa stergi fisierul macheta?","Are you sure?":"Esti sigur?","Assign":"Asociaza","Associate Person":"Asociaza persoana","attribute groups":"grupuri de atribute","Audit":null,"audit":null,"Authors":"Autori","Available menus":"Meniuri disponibile","Available slides":"Diapozitive disponibile","Avatar":"Avatar","Avenue":"Bulevard","Awaiting Brand validation":"Se așteaptă validarea brandului","Awaiting Documentation Validation":"Se așteaptă validarea documentației","Awaiting EAN validation":"Se așteaptă validarea EAN","Awaiting MKTP validation":"Se așteaptă validarea MKTP","Award List":"Lista premiilor","Awards":"Premii","Azzure":"Azur","Back":"Inapoi","Backed by":"Sustinut de","Bag":"Pungă","Bank Account":"Cont bancar","Bank":"Banca","Be the first to review this product":"Fii primul care evaluează acest produs","Before proceeding, please check your email for a verification link.":"Înainte de a continua, te rugăm să verifici e-mailul pentru link-ul de verificare.","Below":"Dedesubt","Bend":"Aplecare","Besel":null,"Best Seller":"Cel mai vândut","Between":"Intre","Billing Address":"Adresa de facturare","Birthday":"Data nasterii","birthday":"data nasterii","Birthdays":"Zile de naștere","Blank":"Blank","Blocked":"Blocat","Bookmarks":"Favorite","Bottled Weight":"Greutate îmbuteliată","Boulevard":"Bulevard","Box":"Cutie","Brand Count":"Numar de branduri","Brands":"Branduri","brands":"branduri","BTL":null,"Bucharest":"Bucuresti","Building Type":"Tip cladire","Building":"Cladire","building":"cladire","built with":"construit cu","Business hours":"Program de lucru","Butons":"Butoane","Button Item":"Element Buton","Buttons":"Butoane","buttons":"butoane","By":"De","Calendar":null,"calendar":null,"Calendars":"Calendare","Calories per 100g":"Calorii per 100g","Cancel":"Anuleaza","Cancelled":"Anulat","cancelled":"anulat","Cantitate":null,"Card number":"Număr card","Cardholder name":"Nume deținător card","Carousel":"Carusel","carousel":"carusel","Carrier":"Curier","Cart is empty":"Coșul este gol","Cart Summary":"Sumar cos","Cart Validity Days":"Validitatea cosului in zile","Cart":"Cos","Pay on Delivery":"Plătește la Livrare","Cash Register Receipt":"Bon fiscal","Catalog":null,"Categories":"Categorii","categories":"categorii","Category":"Categorie","Channel":"Canal","Characteristics":"Caracteristici","Cheque":"Cec","Choose language":"Alege limba","Choose your payment method":"Alege metoda de plata","Choose":"Alege","City Population by Age":"Populatia in functie de varsta","City":"Oras","Clear all":"Sterge tot","click here to request another":"apasă aici pentru a solicita altul","Client (company)":"Client (companie)","Client (person)":"Client (persoana)","Client Discounts":"Reduceri pentru clienți","Client Invoices":"Facturi clienti","Client Order Reference":"Referința clientului","Client Payment":"Plati clienti","Client Payments":"Plati clienti","Client Reference":"Referință client","Client Stock":"Stoc client","Client Stocks":"Stocuri client","Client":"Client","Clienti":null,"Clients":"Clienti","clients":"clienți","Close":"Inchide","Code":"Cod","Coding":"Codare","Collapse Main Menu":"Restrange meniu principal","Colors Two":"Culori, doi","Colors":"Culori","Coming Soon":"În Curând","Comments":"Comentarii","Commercial":"Comercial","commercial":"comercial","Companies":"Companii","companies":"companii","Company client":"Client companie","Company":"Companie","company":"companie","Completed":"Finalizat","Configure Role":"Configureaza rol","Configure":"Configureaza","configure":"configureaza","Confirm Password":"Confirmare parolă","Confirmed":"Confirmat","Contact Bar Text":"Text bara de contact","contact form":"formular de contact","Contact Form":"Formular de Contact","Contact us with any questions or concerns that you may have and we will get back to you shortly":"Contactează-ne pentru orice întrebări sau nelămuriri și îți vom răspunde în curând","Contact":"Contact","Contacts Index":"Index contacte","Contacts":"Contacte","contacts":"contacte","Content Private":"Continut privat","Content":"Continut","Continue":"Continua","Copied to clipboard":"Copiat in clipboard","Copyright © 2016":"Copyright © 2016","Core":"Core","Country of Origin":"Țara de origine","Country":"Tara","County":"Judet","Courier Service":"Serviciu de curierat","Create a new Entity":"Creeaza o noua entitate","Create a new User":"Creeaza user","Create Button":"Creeaza buton","Create Company":"Creeaza companie","Create Differences Sale":"Genereaza vanzare cu diferente","Create Group":"Creeaza grup","create group":"creeaza grup","Create Language":"Creeaza limba","Create Menu":"Creeaza meniu","Create Owner":"Creaza owner","Create Permission Group":"Creeaza grup permisii","Create Permission":"Creeaza permisie","Create Permissions Group":"Creeaza grup permisii","Create Person":"Creeaza persoana","Create Resource":"Creaza resursa","Create Role":"Creeaza rol","Create Tutorial":"Creeaza tutorial","Create User Group":"Creeaza grup useri","Create User":"Creeaza user","Create":"Creeaza","create":"creeaza","Created Address":"Adresa creata","Created At":"Creat la","Created at":"Creat la","Created By":"Creat de","Created Contact":"Contact creat","Created":"Creat","created":"creat","Currency Placed Before":"Valuta plasata inainte","Current file size is":"Marimea fisierului este","custom":"personalizat","Customer opinions":"Opiniile clienților","Cycling":"Ciclism","Danger":"Pericol","Dashboard":"Dashboard","dashboard":"dashboard","Data Import":"Import date","data import":"import date","Date":"Data","Default Address":"Adresa implicita","Default Menu":"Meniu implicit","Default":"Implicit","default":"implicit","Delete Avatar":"Sterge Avatar","Delete File":"Sterge Fisier","Delete Template":"Sterge template","Delete video":"Sterge clip","Delete":"Sterge","delete":"sterge","deleted":"sters","Delivered":"Livrat","Description":"Descriere","deselect":"deselecteaza","Designing":"Designing","details":"detalii","Details":"Detalii","Diameter":"Diametru","Direct Link":"Link direct","Discount":"Reducere","Discounts":"Discounturi","discounts":"discounturi","Discussions":"Discutii","Display Name":"Nume Afisat","Documents":"Documente","documents":"documente","Don't have an account?":"Nu ai cont?","Download Delivery Note":"Descarca nota de livrare","Download Excel Sale Offer":"Descarca oferta vanzare (excel)","Download Excel Sale Return Offer":"Descarca oferta de retur (excel)","Download Goods Received Note":"Descarca nota receptie marfa","Download Invoice (long click for cancel)":"Descarca factura (click lung pt anulare factura)","Download Payment (long click for cancel)":"Descarca plata (click lung pt anulare plata)","Download Sale Offer":"Descarca oferta vanzare","Download Sale Return Offer":"Download oferta de retur","Download Stock Removal":"Descarca fisa scoatere din stoc","Download Template":"Descarca template","Download":"Descarca","Drag And Drop":"Drag And Drop","Drinking":null,"Due Date":"Scadenta","E-Mail Address":"Adresă de e-mail","Eating":"Mancand","EAV":null,"eav":null,"Edit Button":"Editeaza buton","Edit Company":"Editeaza companie","Edit Invoice":"Editeaza factura","Edit Language":"Editeaza limba","Edit Menu":"Editeaza meniu","Edit Owner":"Editeaza owner","Edit Permission Group":"Editeaza grup permisii","Edit Permission":"Editeaza permisie","Edit Permissions Group":"Editeaza grup permisii","Edit Person":"Editeaza persoana","Edit personal details":"Editeaza detaliile personale","Edit Role":"Editeaza rol","Edit Texts":"Editeaza texte","edit texts":"editeaza texte","Edit Tutorial":"Editeaza tutorial","Edit User Group":"Editeaza grup useri","Edit User":"Editeaza user","Edit":"Editeaza","edit":"editeaza","Editable Time Limit":"Limită de timp modificabilă","edited":"editat","Element":"Element","Emag Active Offer":"Oferta activa Emag","Emag documentatie":null,"Emag Documentation":"Documentatie Emag","Emag Offer":"Oferta Emag","Emag pret":null,"Emag Price":"Pret Emag","Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":"Emailul poate fi editat doar prin formularul de user","Email":"Email","Emailed At":"Trimis prin e-mail la","Emailed":"Email","Enabled":"Activat","End":"Sfarsit","Enter Fulfilling Mode":"Acceseaza modul Efectuare","Enter the application":"Intra in aplicatie","Enter warehouse mode":"Intra in mod magazie","Enter Warehouse Mode":"Paraseste modul Depozit","Entities":"Entitati","entities":"entitati","Entity Details":"Detalii entitate","Entity":"Entitate","entity":"entitate","Entries":"Intrari","entries":"intrari","Entry":"Intrare","entry":"intrare","Error":"Eroare","Events":"Evenimente","Excel":"Excel","Expanded Menu":"Meniu colapsat","Expanded Sidebar":"Bara laterală extinsă","Expiration Date":"Data expirare","Export available for download: :filename":"Export :filename disponibil pentru descarcare","Export Done":"Export efectuat","Export emailed: :filename":"Export :filename trimis pe email","Export emailed":"Export trimis pe mail","Export error":"Eroare la exportare","Export Notification":"Notificare export","Export started":"Export inceput","Export":"Export","export":"export","exporting rejected":"export refuzate","exports":"exporturi","External":"Extern","Extra Virgin Olive Oils":"Ulei de măsline extravirgin","Facturi clienti":null,"Facturi furnizori":null,"Failed":"Esuat","failed":"esuat","FAQ":null,"Favorites":"Favorite","Favourite products":"Produse favorite","Fax Number":"Numar fax","Fax":"Fax","FEATURED BRANDS":"BRANDURI PROMOVATE","Featured Brands":"Branduri Promovate","Feb":"Feb","February":"Februarie","File name":"Nume fisier","File Size":"Marime fisier","File":"Fisier","File(s)":"Fisier(e)","Files were uploaded successfully":"Fisierele au fost incarcate","Files":"Fisiere","files":"fisiere","Fill":"Completeaza","Filter by name or code":"Filtreaza dupa nume sau cod","Filter":"Filtru","filtered from":"filtrate din","filtered":"filtrat","Filters":"Filtre","Finalize order":"Finalizează comanda","Finalize":"Finalizeaza","Finalized":"Finalizat","finalized":"finalizat","Financial Overview":"Prezentare Financiară","Financials":"Financiar","financials":"financiar","find matches":"găsește potriviri","First Name":"Prenume","Fiscal Code":"Cod fiscal","Fiscal Invoice":"Factura fiscala","Fiscal":null,"Flag Icon Class":"Clasa iconita steag","Flag Sufix":"Sufix steag","Flag":"Steag","Floor":"Etaj","floor":"etaj","Forbidden":"Interzis","Forgot Password?":"Ai uitat parola?","Forgot password":"Parola uitata","Forgot Your Password?":"Ai uitat parola?","Found :total results":":total rezultate gasite","Friday":"Vineri","Frisbo":null,"From":"De la","from":"de la","Fulfilled At":"Efectuat la","Fulfilling":"În procesare","Furnizor":null,"Gender":"Gen","General Settings":"Setari generale","General":null,"Generate":"Genereaza","Generated for order #:number":"Generat pt comanda #:number","Geneva":"Geneva","Get in touch with us":"Contacteaza-ne","Go Home":"Acasă","Google":null,"Got it!":"Am înțeles!","Green":"Verde","Group":"Grup","Groups":"Grupuri","Habits":"Obiceiuri","Harvest 2016\/2017":"Recolta 2016\/2017","Harvest 2017\/2018":"Recolta 2017\/2018","Harvest 2018\/2019":"Recolta 2018\/2019","Harvest 2019\/2020":"Recolta 2019\/2020","Harvest":"Recolta","Has Children":"Are submeniu","Height":"Înălţime","Hello!":"Bună!","Hello":"Salut","Herbs":"Plante aromatice","here":"aici","Hi :name,":"Salut :name,","Hi :name":"Salut :name","Home":"Acasa","Homepage":"Pagina principală","How To Videos":"Clipuri","how to videos":"clipuri","I agree to the":"Sunt de acord cu","I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":"Autorizez :name sa trimita instructiuni institutiei financiare care a emis cardul meu pentru a face plati din contul meu bancar in momentul achizitiei de catre mine a produselor de pe siteul :name","I authorise":"Autorizez","Ian":"Ian","Icon Class":"Clasa icoana","Icon":"Icoana","If you are having trouble clicking the action button, copy and paste the URL below":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos","If you did not create an account, no further action is required.":"Dacă nu ai creat un cont, poți ignora acest mesaj.","If you did not receive the email":"Dacă nu ai primit e-mailul","If you did not request a password reset, no further action is required.":"Dacă nu ai solicitat o resetare de parolă, poți ignora acest mesaj.","If you’d like to help, tell us what happened below.":"Daca vrei sa ajuti, noteaza mai jos ce s-a intamplat","IFSC":"CIF","Impersonate":"Impersoneaza","Impersonating":"Impersonare","Import Summary":"Sumar import","Import Type":"Tip import","Import":"Import","Importance":"Importanţă","Important":"Important","Imported At":"Importat la","Imported By":"Importat de","Imported Entries":"Intrari importate","ImportType":"Tip import","In a few minutes you will receive a confirmation email":"In cateva minute vei primi un email de confirmare","In Stock":"In stoc","in stock":"în stoc",":days Days Returns":"Retur Gratuit in :days zile","24h Tracked Shipping":"Livrare cu Tracking in 24h","100% Original Products":"Produse 100% Originale","Secure Payments":"Plati securizate","Income":"Venit","index":"index","Indications":"Indicații","Individual":"Persoana Fizica","Industrial":"Industrial","Info":null,"Ingredients":"Ingrediente","Insert in Stock":"Insereaza in stoc","Integrations":"Integrări","Internal #":"Cod intern","Internal Code":"Cod intern","Internal":"Intern","into your web browser":"in browserul dvs.","Invalid signature.":"Semnătură incorectă.","Invalid":null,"Inventory":"Inventar","inventory":"inventar","Invoice Emailed":"Email factura","Invoice for order # :number":"Factura pentru comanda # :number","Invoice for order":"Factura pentru comanda","invoice":"factura","invoices":"facturi","Invoices":"Facturi","Is Active":"Este Activ","Is Cancelled":"Anulat","Is Default":"Este implicit","is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":"Emite factura","Issue Payment":"Adauga plata","Issue proforma":"Emite proforma","Issues":"Probleme","It looks like we’re having issues.":"Se pare ca intampinam probleme","Item":"Articol","items":"articole","Items":"Articole","Jams":"Gemuri","January":"Ianuarie","Jar":"Borcan","July":"Iulie","June":"Iunie","Keep tables configurations":"Pastreaza configuratia tabelelor","Key Collector":"Colector chei","Key Name":"Denumire cheie","Key Value":"Valoare cheie","Key":"Cheie","keys found":"chei gasite","Label Generator":"Generator etichete","Label":"Etichetă","Labels":"Etichete","labels":"etichete","Lane":"Alee","Language Item":"Element limba","Language":"Limba","Languages":"Limbi","languages":"limbi","Last Modified":"Ultima modificare","last month":"luna trecuta","Last Name":"Nume","Last updated":"Ultima modificare","last week":"saptamana trecuta","last year":"anul trecut","Learn more":"Află mai multe","Leave Fulfilling Mode":"Paraseste modul Efectuare","Leave Warehouse Mode":"Acceseaza modul Depozit","Left":"Stanga","Length":"Lungime","limited quantity":"cantitate limitată","Limited Stock Limit":"Pragul pt stoc limitat","Limited Stock":"Stoc limitat","Line":"Linie","Link":"Link","List Price":"Pret lista","Page [page] from [toPage]":"Pagina [page] din [toPage]","List Value":"Valoare lista","List":"Lista","Load More":"Incarca mai multe","Load more":"Incarca mai multe","Loading...":"Se incarca...","Loading":"Se incarca","Localisation Index":"Index localizare","Localisation":"Internationalizare","localisation":"internationalizare","Localities":"Localitati","Locality":"Localitate","Log in":"Autentificare in sistem","Log out":"Delogare","Log Out":"Iesiti","log":"log","Login":"Login","login":"login","Logins":"Logari","logins":"logari","logout":"deconectare","Logout":"Iesire","Logs Index":"Index Loguri","Logs":"Loguri","logs":"loguri","Loss":"Pierdere","Made with Bulma":"Realizat cu Bulma","Made with Laravel":"Realizat cu Laravel","Made with Vue":"Realizat cu Vue","Magazie":null,"Main Menu":"Meniu principal","Manage Buttons":"Editeaza butoane","Manage Menus":"Administreaza meniuri","Manage Permissions":"Administreaza permisii","Mandatary":"Mandatar","Manufacturer":"Producător","Manufacturers":"Producatori","Maps key":null,"Mar":"Mar","March":"Martie","Mark all as read":"Marcheaza-le citite","Mark all read":"Marcheaza tot ca citit","Max":null,"May":"Mai","MB":"MB","Measurement Unit":"Unitate de Masură","Measurement Units":"Unitati de masura","measurement units":"unitati de masura","Member Since":"Membru din","Members":"Membri","Menu Collapse":"Restrange meniu","Menu Items":"Elemente meniu","Menu":"Meniu","Menus Index":"Index meniuri","Menus":"Meniuri","menus":"meniuri","Merge all localisation files":"Îmbină toate fisierele de localizare","Mfr #":"Cod produs","Mfr":"Prod","Min":null,"Miss":null,"Mode":"Mod","Monday":"Luni","more":"mai mult","move to favorites":"muta la favorite","Mr":null,"MU":"UM","N\/A":"N\/A","Name":"Nume","Needs matching":"Necesita match","Net Weight":"Greutate netă","New Address":"Adresa noua","New Password":"Parola noua","New team":"Echipa noua","New Topic":"Subiect nou","New":"Nou","Next Page":"Pagina urmatoare","Next":"Urmator","NIN":"CNP","No activity found":"Nu a fost gasita activitate","No keys found":"Nu au fost gasite chei","No locations found":"Nu au fost găsite locații","No options available":"Nu exista optiuni","No records were found":"Nu au fost gasite inregistrari","No reservations found":"Nu au fost găsite rezervări","No search results found":"Nu au fost gasite rezultate","No teams were created yet":"Încă nu au fost create echipe","No":"Nu","Not Found":"Negăsit","not paid":"neplatit","Note":"Observații","Notes":"Note","Nothing found":"Nu a fost gasit nimic","notification":"notificare","Notifications":"Notificari","notifications":"notificari","Number":"Numar","Observations":"Observatii","of":"din","Offices":"Birouri","Oh no":"O, nu","OK":"OK","on behalf of :company":"pe compania :company","On Demand":"In stoc furnizor","on":"pe","Online":null,"Only missing":"Doar negasite","Operation failed because the permission is allocated to existing role(s)":"Operatia a esuat deoarece permisiunea este alocată unui rol existent","Operation was successfull":"Operatiunea a fost efectuata cu succes","order #:number invoice":"factura pentru comanda #:number","order #:number":"comanda #:number","Order #:number":"Comanda #:number","Order details :number":"Detalii comanda :number","Order Line Limit":null,"Order Payment":"Plata","Order Values":"Valorile comenzii","Order":"Comanda","Orders":"Comenzi","Organize Menus":"Ordonare meniuri","our location":"locatia noastra","Our Location":"Locația noastră","Our team has been notified.":"Echipa noastra a fost notificata","Overdue":"Depășit","Own Stock":"Stoc propriu","Owners Index":"Index owneri","Owners":"Entitati","owners":"owneri","Package Content":"Conținutul pachetului","Packaging Units":"Unități de Ambalare","packaging units":"unități de ambalare","Page Expired":"Pagina a expirat","Parade":"Parada","Parent":"Parinte","Part Number":"Cod","Password Confirmation":"Confirmare parola","Password":"Parola","password":"parola","Passwords must be at least six characters and match the confirmation.":"Parola trebuie să fie de cel puțin șase caractere și să se potrivească cu cea de confirmare.","Past Imports":"Importuri anterioare","Pasta":"Paste","Authorize Only":"Doar Autorizare","pay":"plateste","Pay":"Plateste","Payment method":"Metoda de plata","Payment Methods":"Metode de plata","Payment Order":"OP","Payment":"Plata","payments":"plati","Payments":"Plăți","Pays VAT":"Plateste TVA","People":"Persoane","people":"persoane","Permission Group":"Grup de permisii","Permission Groups Index":"Index grupuri de permisii","Permission Groups":"Grupuri de permisii","Permission Name":"Nume permisie","Permission":"Permisie","permissionGroups":"Grupuri de permisii","Permissions Group Items":"Elemente Permisii Grup","Permissions Group":"Grup Permisii","permissions group":"permisii grup","Permissions Groups":"Grupuri Permisii","Permissions Index":"Index permisii","Permissions":"Permisii","permissions":"permisii","Person client":"Client persoana","Person":"Persoana","person":"persoana","Personal Info":"Informatii personale","Personal information can only be edited via the person form":"Informatiile personale pot fi editate numai prin formularul persoanei","Personal":"Personal","Phone Number":"Numar de telefon","Phone":"Telefon","Pic":null,"Pick an option":"Alege o optiune","Picture":"Poza","Piece":"Buc","Place order":"Plasează comanda","Placement":"Pozitie","Plati clienti":null,"Plati furnizor":null,"Please choose":"Alege","Please click the button below to verify your email address.":"Te rugăm să accesezi butonul de mai jos pentru a verifica adresa de e-mail.","Please confirm your password before continuing.":"Te rugăm să confirmi parola înainte de a continua.","Please Fill":"Completeaza","Please find attached the order's invoice.":"Găsești factura pentru această comandă în atașament.","Please review your order and payment details":"Te rugăm să verifici detaliile comenzii","Please set or reset your password by clicking the button below.":"Te rugam sa setezi sau sa resetezi parola facand clic pe butonul de mai jos.","POS Receipt":"Chitanta POS","Position":"Pozitie","Positions":"Pozitii","positions":"poziții","Post":"Trimite","Postal Area":"Cod postal","Postal Code":"Cod postal","Postcode":"Cod postal","posted":"postat","Prepared":"Pregătit","Preview":"Previzualizeaza","Previous Page":"Pagina anterioara","Previous":"Anterior","Price":"Pret","Privacy":"Confidențialitate","processed":"procesat","Processing":"In procesare","processing":"in procesare","Product image coming soon":"Poza urmeaza sa fie adaugata","Product":"Produs","Products per page":"Produse per pagina","Products":"Produse","products":"produse","Produs":null,"Profile":"Profil","Profit":"Profit","Proforma Invoice":"Factura proforma","Proforma":null,"Promissory Note":"Bilet la ordin","publish product":"publica produsul","Purchase Returns":"Retur aprovizionari","purchase returns":"retur aprovizionari","Purchase":"Aprovizionare","Purchases":"Aprovizionari","purchases":"aprovizionari","Purple":"Mov","Qty":"Cant.","Quantity":"Cantitate","rating":"evaluare","Rating":"Evaluare","Ratio":"Aspect","Read":"Citire","Recaptcha key":"Cheie Recaptcha","Recaptcha secret":null,"Receipt":"Chitanta","Received":"Primit","Recent orders":"Comenzi recente","Recommended Products":"Produse recomandate","records":"inregistrari","Red":"Rosu","Reference \\ PO":"Referinta","Regards":"Toate cele bune","register":"fă-ți cont","Register":"Fă-ți cont","Registered Entities":"Entitati inregistrate","Registered Users":"Useri Inregistrati","Registry Of Commerce":"Nr. Inreg. Reg. Com.","Registry of commerce":"Registrul comertului","Rejected Association":"Asociația Respinsă","Rejected Brand":"Brand respins","Rejected Documentation":"Documentație respinsă","Rejected EAN":"EAN respins","Reload":"Reincarca","Remember me":"Tine-ma minte","Remember Me":"Ține-mă minte","Reminder":null,"Remove From Stock":"Scoate din stoc","Remove poster":"Sterge poster","remove":"sterge","Reorder Menu":"Reorganizează meniu","reorder":"reorganizează","Repeat Password":"Repeta parola","Replies":"Raspunsuri","Reply":"Raspunde","Resell":"Revanzare","Reservations":"Rezervări","Reserved":"Rezervat","Reset password request":"Cerere resetare parolă","Reset password":"Reseteaza parola","Reset":"Reset","Residential":"Rezidențial","Resource Prefix":"Prefix resursa","Resource":"Resursa","resource":"resursa","Retur aprovizionari":null,"Retur vanzari":null,"Revenue":"Venit","Reviews":"Recenzii","reviews":"recenzii","Right":"Dreapta","Road":"Drum","Role Item":"Element Rol","Role":"Rol","role":"rol","Roles Index":"Index roluri","Roles List":"Lista roluri","Roles":"Roluri","roles":"roluri","Rotatie":null,"Rotation":"Rotatie","Route":"Ruta","Row":"Rand","Running":"Alergare","Sale Channel":"Canal de vânzare","Sale Channels":"Canale de vânzare","sale channels":"canale de vânzare","Sale Price":"Pret vanzare","Sale Returns":"Retur vanzari","sale returns":"returnarea vânzării","Sale Value":"Valoare vanzare","Sales":"Vanzari","sales":"vanzari","Saturday":"Sambata","Sauces":"Sosuri","Save Configuration":"Salveaza configuratie","Save your work then click here to refresh your page and update to the latest application version":"Salveaza-ti modificarile si apasa aici pentru a reincarca pagina si a migra la cea mai noua vesiune a aplicatiei","Save":"Salveaza","Sea Salt":"Sare de mare","Search category limit":"Limita categorii la cautare","Search in products":"Caută în produse","Search placeholder":"Placeholder pt cautare","Search something":"Căutați ceva","Search within brands":"Cauta in branduri","Search...":"Căutare...","Search":"Cauta","Searching...":"Căutând...","Searching":"Caut","Secret":"Secret","See all":"Vezi tot","Select file for import":"Selecteaza fisier pt import","select":"select","selected":"selectat","Send a password reset link":"Genereaza link pentru reset parola","Send a reset password link":"Trimite un link de resetare parola","Send Password Reset Link":"Trimite link-ul pentru resetarea parolei","Serial":"Serie","Server Error":"Eroare de server","Service Unavailable":"Serviciu indisponibil","Service":"Serviciu","Services":"Servicii","services":"Servicii","Set password":"Seteaza parola","Settings":"Setari","settings":"setări","Share your idea...":"Sharuieste ideea","Share your opinion and rate the product":"Împărtășește-ți opinia și evaluează produsul","Share your opinion...":"Sharuieste parerea","Shelf":"Raft","Shift + Enter to post":"Shift + Enter pt a posta","Shipped":"Expediat","Shipping Address":"Adresa de livrare","Shipping charges may be incurred":"Pot fi aplicate costuri de transport","Shipping charges of :value (+VAT) will be added":"Vor fi adaugate costuri de transport in valoare de :value (+TVA)","Shipping cost":"Cost transport","You will pay":"Cat vei plati","Visit the product page":"Viziteaza pagina produsului","Shop Categories":"Categorii","Shopping Cart":"Cos cumparaturi","Show Log":"Arata log","Show Logs from":"Arata log-uri din","Show":"Arata","show":"arata","Showing :from - :to of :total results":"Se afiseaza de la :from pana la :to din :total de rezultate","Sicilian Honey":"Miere siciliană","Sidebar Toggle":"Alterneaza stil meniu","Similar products limit":"Limita pt produse similare","Site Texts":"Texte Site","Size":"Marime","Sleeping":"Dormit","Some fields were invalid. Please correct the errors and try again.":"Cateva campuri au fost invalide. Corecteaza erorile si reincearca.","Something went wrong...":"Ceva nu a functionat corect...","Special Diet":"Dietă specială","Speciality":"Specialitate","Spendings":"Cheltuieli","Square":"Pătrat","Start Tutorial":"Start tutorial","Started":"Inceput","Starters":"Aperitive","Status":"Status","Stock Rotation":"Rotația stocului","Stock: :stock":"Stoc: :stock","Stock":"Stoc","Stopped":"Oprit","Storage Usage":"Utilizare spatiu","store":"magazin","Storing":"Depozitare","Street Type":"Tip strada","Street":"Strada","Sub Administrative Area":"Zona administrativa subordonata","Submit":"Trimite","Success":"Succes","Successful":"Reusite","Summary":"Sumar","Sunday":"Duminica","Supplier Discounts":"Reduceri de la furnizori","Supplier Invoices":"Facturi furnizori","Supplier Number":"Numar furnizor","Supplier Payments":"Plati furnizor","Supplier Ref":"Ref. Furnizor","Supplier Stock":"Stoc furnizor","Supplier":"Furnizor","suppliers":"furnizori","Sweets":"Dulciuri","System":"Sistem","system":"sistem","Table export done":"Export tabel efectuat","Table export error":"Eroare la exportul de tabel","Table export started":"Exportul de tabel a inceput","Table":"Tabel","Tables State Save":"Pastreaza config","Tags":"Taguri","Tasks":"Sarcini","tasks":"sarcini","team":"echipa","Teams":"Echipe","Template":"Șablon","Tenant":"Chiriaş","terms and conditions":"termenii si conditiile","Terms of use":"Termeni si conditii","Terms Of Use":"Termeni si conditii","terms of use":"termenii si conditiile","Thank you for shopping with us":"Îți multumim pentru cumparaturile facute","Thank you for using our application!":"Îți multumim ca ne folosești aplicatia!","Thank you for your order":"Îți mulțumim pentru comandă","Thank you":"Multumesc","The :filename file is ready":"Fisierul :filename este gata","The address has been successfully updated":"Adresa a fost actualizata cu succes","The address was successfully created":"Adresa a fost creata cu succes","The admin role already has all permissions and does not need syncing":"Rolul de admin deja are toate permisiile si nu are nevoie de sincronizare","The application was updated, please save your work & refresh your browser":"Aplicatia a fost actualizata, salveaza-ti modificarile si reincarca pagina","The Changes have been saved!":"Modificarile au fost salvate!","The changes have been saved":"Modificarile au fost salvate","The company was successfully created":"Compania a fost creata cu succes","The company was successfully deleted":"Compania a fost stearsa cu succes","The company was successfully updated":"Compania a fost actualizata cu succes","The Entity was created!":"Entitatea a fost creata!","The entity was created!":"Entitatea a fost creata!","The export :name could not be completed due to an unknown error":"Exportul :name nu a putut fi finalizat datorita unei erori","The export was cancelled successfully":"Exportul a fost anulat cu succes","The form contains errors":"Formularul contine erori","The generated document has :entries entries":"Documentul are :entries inregistrari","The import was restarted":"Importul a fost repornit","The language files were successfully merged":"Fisiere de limbi au fost concatenate cu succes","The language files were successfully updated":"Fisierele de limba au fost actualizate","The log file":"Fisierul","The log was cleaned":"Log-ul a fost curatat","The menu was created!":"Meniul a fost creat!","The operation was successful":"Operatiunea a fost efectuata cu succes","New order #:number from :channel for :total :currency was placed by :person":"Comanda noua #:number din :channel in valoare de :total a fost plasată de catre :person","Selected payment method: :paymentMethod":"Metoda de plata selectata: :paymentMethod","The permission group was created!":"Grupul de permisii a fost creat!","The permission was created!":"Permisia a fost creata!","The permissions were created!":"Permisiile au fost create!","The person has assigned resources in the system and cannot be deleted":"Persoana are resurse asignate in sistem si nu poate fi stearsa","The Person was successfully created":"Persoana a fost creata cu succes","The person was successfully created":"Persoana a fost creata cu succes","The person was successfully deleted":"Persoana a fost stearsa cu succes","The person was successfully updated":"Persoana a fost actualizata cu succes","The poster was deleted successfully":"Posterul a fost sters cu succes","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul a fost trimis spre generare. Poate dura cateva minute pana cand il vei primi pe mail","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul solicitat a fost pornit. Poate dura cateva minute inainte de a-l primi in casuta de e-mail","The role was created!":"Rolul a fost creat!","The selected record is about to be deleted. Are you sure?":"Inregistrarea selectata este pe cale sa fie stearsa. Esti sigur?","The team was successfully saved":"Echipa a fost salvata cu succes","The tutorial was created!":"Tutorialul a fost creat!","The tutorial was successfully deleted":"Tutorialul a fost sters cu succes","The user group was successfully created":"Grupul de useri a fost creat cu succes","The user group was successfully deleted":"Grupul de useri a fost sters cu succes","The user has activity in the system and cannot be deleted":"Userul are activitate in sistem si nu poate fi sters","The User was created!":"Userul a fost creat!","The video file was deleted successfully":"Clipul a fost sters cu succes","The video was updated successfully":"Clipul a fost actualizat cu succes","The webshop is still under construction, but we're launching soon...":"Magazinul online este încă în construcție, dar il vom lansa în curând...","Theme Color":"Culoare Tema","Theme":"Tema","There are no active carousel slides":"Nu exista slide-uri de carusel active","There are no addresses added yet":"Nu ai nicio adresă adăugată","There are no companies added yet":"Nu există companii adăugate","There are no credit cards added yet":"Nu ai niciun card adăugat","This action is unauthorized.":"Această acțiune nu este permisă.","this month":"luna aceasta","This password reset link will expire in :count minutes.":"Acest link de resetare a parolei va expira în :count minute.","This password reset token is invalid.":"Codul de resetare a parolei este greșit.","This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":"Acest site web folosește cookie-uri pentru a-și furniza serviciile și pentru a analiza traficul. Pentru mai multe detalii viziteaza","privacy policy":"politica de confidentialitate","this week":"săptămâna aceasta","this year":"anul acesta","Thursday":"Joi","Time":"Timp","Timeline":"Cronologie","Tip":null,"Title...":"Titlu...","Title":"Titlu","title":"titlu","to manage your addresses":"pt a gestiona adresele","to manage your cards":"pt a gestiona cardurile","to manage your companies":"pentru a gestiona companiile","to view your order":"pentru a vedea comanda","To":"la","to":"la","Today":"Astăzi","today":"azi","Toggle navigation":"Comută navigarea","Too Many Attempts.":"Prea multe încercări.","Too Many Requests":"Prea multe cereri","Top Banner Content":"Continut top banner","Top Pick":"Alegere de Top","Total amount for order #:number is :currency:total":"Totalul de plată pentru comanda #:number este :total :currency","total records":"inregistrari","Total":"Total","total":"total","Translations":"Traduceri","Tuesday":"Marti","Tutorial":"Tutorial","Tutorials Index":"Index tutoriale","Tutorials":"Tutoriale","tutorials":"tutoriale","Type a new comment":"Adauga un comentariu","Type":"Tip","type":"tip","Types":"Tipuri","Unable to read file":"Nu se poate citi fiserul","Unauthorized":"Nepermis","Undo Stock Insertion":"Anuleaza insertia in stoc","Undo Stock Removal":"Anuleaza scoaterea din stoc","Unique Identifier":"Identificator unic","Unit. Price":"Pret unit.","Unitary Price":"Pret unitar","untagged":"netaguit","Update":"Updateaza","Updated At":"Updatat la","Updated By":"Actualizat de","updated the members":"actualizat membrii","updated":"actualizat","Updated":"Updatat","Upload Avatar":"Incarca Avatar","Upload Template":"Incarca template","uploads":"uploaduri","Use":"Utilizare","User Details":"Detalii User","user groups":"grupuri user","User Groups":"Grupuri","User Info":"Informatii user","User Profile":"Profil user","User":"User","user":"user","Users Administration":"Administrare useri","Users Index":"Index useri","Users":"Useri","users":"useri","Valability":"Valabilitate","Valid":"Valid","Value in seconds. Use 0 to disable":"Valoarea în secunde. Folosește 0 pentru a dezactiva","Value":"Valoare","Vanzari":null,"VAT":"TVA","VAT Value":"Valoare TVA","ver":"ver","Verify Email Address":"Verificare adresă de e-mail","Verify Your Email Address":"Verifică-ți adresa de e-mail","Video description":"Descriere clip","Video name":"Nume clip","Video":"Video","video":"video","View Cart":"Vezi cos","View your order":"Vezi comanda","Virtual Position ID":"ID Poziție Virtuală","Visible Brands":"Branduri vizibile","Visible Top Banner":"Top banner vizibil","Vista":"Perspectivă","Volume":"Volum","Voucher":null,"waiting":"in asteptare","Warehouse":"Depozit","warehouses":"depozite","Warehouses":"Depozite","Warning":"Avertizare","was changed":"a fost schimbat","was last updated":"a fost modificat","We can't find a user with that e-mail address.":"Nu există niciun user cu această adresă de e-mail.","We have e-mailed your password reset link!":"Am trimis un e-mail cu link-ul de resetare a parolei!","We will keep you updated on its progress":"Te vom tine la curent cu progresul ei","We won't ask for your password again for a few hours.":"Nu îți vom mai solicita adresa de e-mail pentru câteva ore","Webshop Name":"Nume webshop","Webshop Order":"Comanda webshop","webshop":"magazin web","Webshop":"Magazin web","Website":null,"Wednesday":"Miercuri","Welcome Back":"Bine ai revenit","Welcome":"Bun venit","What happened?":"Ce s-a intamplat?","What you need to know":"Ce trebuie sa stii","What":"Ce","When":"Cand","Whoops!":"Oops!","Width":"Lăţime","Write a review":"Scrie o recenzie","Write":"Scriere","Yes":"Da","yesterday":"ieri","You are not authorized for this action":"Nu esti autorizat pentru aceasta actiune","You are not authorized to perform this action":"Nu esti autorizat pentru aceasta actiune","You are receiving this email because we received a password reset request for your account.":"Primești acest mesaj pentru că a fost înregistrată o solicitare de resetare a parolei pentru contul asociat acestei adrese de e-mail.","You can click":"Poti da click","You don't have any favorite products yet":"Nu ai niciun produs adăugat la favorite","You don't have any notifications":"Nu ai notificari","You don't have any orders yet":"Nu ai efectuat nicio comandă","You don't have any products in the shopping cart right now":"Nu ai niciun produs în coș momentan","You have":"Ai","You just got a notification...":"Tocmai ai primit o notificare...","You made too many attempts. Please wait 5 minutes and try again.":"Ai apelat de prea multe ori generarea raportului. Asteapta 5 minute si reincearca","You may also like":"S-ar putea sa-ti placa si","You will find attached the requested report.":"Vei gasi atasat raportul cerut.","Your :shop order :number":"Comanda :shop cu numarul :number","Your account has been disabled. Please contact the administrator":"Ne pare rau, contul tau a fost dezactivat. Te rugam contacteaza administratorul","Your card was successfully saved":"Cardul tău a fost salvat cu succes","Your email address is not verified.":"Adresa ta de e-mail nu este verificată.","Your Message":"Mesajul tău","Your password has been reset!":"Parola a fost resetată!","You need to accept our terms of use first":"Mai întâi trebuie să accepți termenii noștri de utilizare","item":"articol","PO #":"Ref #","Your privacy is important for us":"Confidențialitatea ta este importantă pentru noi","cart":"cos","favourites":"favorite","addresses":"adrese","orders":"comenzi","payment":"plata","summary":"sumar","add":"adauga","rate":"evalueaza","review":"recenzie","star":"stea","stars":"stele","Thank you for contributing":"Îți mulțumim pentru contribuție","Do you own or have used this product?":"Deții sau ai folosit acest produs?","This review is awaiting approval":"Această recenzie așteaptă aprobare","This review was approved":"Această recenzie a fost aprobată","This review was rejected. You may edit and repost it.":"Această recenzie a fost respinsă. Poți să îl editezi și să îl repostezi.","Edit review":"Editează recenzia","category":"categorie","terms-of-use":"termeni-si-conditii","privacy":"confidentialitate","about-us":"despre-noi","favorites":"favorite",":user finalized the :model :label for the partner :partner":":user a finalizat :model :label pentru partenerul :partner",":type quantity and total were successfully updated":"Cantitatea si totalul pentru :type au fost actualizate",":type update":"Actualizare :type","Please find attached the order details":"Regasiti detaliile comenzii in atasament","Succeeded":"Reusita","External Reference":"Referinta externa","Incomplete order (#:number)":"Comanda incompleta (#:number)","On :date you placed an order on our webshop but forgot to finalize the payment.":"Pe data de :date ai plasat o comanda pe magazinul nostru online dar nu ai finalizat plata.","Please click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","New message from the webshop's contact form":"Mesaj nou din pagina de contact a webshop-ului","Your Webshop.":"Magazinul tau.","Message:":"Mesaj:","Contact phone: :phone":"Telefon de contact: :phone","Your order #:number on :shop was successfully placed":"Comanda ta cu numarul #:number de pe :shop a fost plasata cu succes","You have a new webshop order":"Ai o nouă comandă pe webshop","New user registration":"S-a inregistrat un nou utilizator","Before adjusting stock, select the product default supplier":"Înainte de a ajusta stocul, selecteaza furnizorul implicit al produsului","Cannot increment when quantity <= 0":"Nu se poate incrementa când cantitatea <= 0","Cannot decrement when quantity <= 0":"Nu se poate decrementa atunci când cantitatea <= 0","Order already has a :type invoice":"Comanda are deja o factura de tipul :type","Invalid item":"Articol invalid","Cannot update orders that are externally fulfilled":"Nu se pot actualiza comenzile care sunt îndeplinite extern","Order is already in this status":"Comanda are deja acest status","There are no differences on this order":"Nu există diferențe în această comandă","You are not allowed to issue payments without invoices":"Nu este permis sa emiti plati fara facturi","You are not allowed to issue payments on a cancelled invoice'":"Nu este permis sa emiti plati pentru o factura anulata","Sale is already paid":"Vânzarea este deja plătită","You cannot delete a paid order":"Nu poți șterge o comandă plătită","order details":"detaliile comenzii","Delivery Address":"Adresa de livrare","Disc.":"Disc.","M.U.":"U.M.","Product \/ Code":"Produs \/ Cod","registered in doc.":"înregistrat în doc.","received":"primit","U.P acquision":"P.U achiziţie","(no VAT)":"(fara TVA)","Val. acquision":"Val. achizitie","Val. VAT":"Val. TVA","(afferent)":"(aferent)","Info field":"Câmp informativ","additional":"adițional","piece":"buc","Total General":"Total General","Goods Receipt Note":"Nota de receptie a marfurilor","Unit":"Unitate","The undersigned, members of the reception committee, have received the material values provided by":"Subsemnatii, membri ai comitetului de recepție, au primit valorile materiale furnizate de","delegate":"delegat","based on the accompanying documents":"pe baza documentelor însoțitoare","consisting":"constând","car no.":"masina nr.","Optional field, usable in case of observations":"Câmp opțional, utilizabil în caz de observații","Reception committee members name and surname":"Numele și prenumele membrilor comisiei de recepție","Signature":"Semnătură","Manager name and surename":"Numele și prenumele managerului","Manager name and surname":"Numele și prenumele managerului","Reception comitee conclusions":"Concluziile comitetului de primire","Reception committee conclusions":"Concluziile comitetului de primire","Supplier\/carrier point of view":"Punct de vedere furnizor \/ transportator","Other mentions":"Alte mențiuni","The quantity determination was done by":"Determinarea cantității a fost făcută de","The quality determination was made by the sample":"Determinarea calității a fost făcută de eșantionul","no.":"nr.","Sender":"Expeditor","Companion":"Insotitor","Dispatch station":"Stație de expediere","Destination station":"Stația de destinație","Release date":"Data de lansare","Dispatch date":"Data expedierii","Arrival date":"Data sosirii","Supplier delegates, the carrier who participated in the reception":"Delegații furnizorului, curierul care a participat la recepție","ISBN":"ISBN","Total products":"Totalul produselor","Scale indicated weight":"Greutatea indicata pe cantar","Stock Removal":"Scoatere din stoc","Representative of":"Reprezentant al","Name and surname":"Nume si prenume","Identity card":"Card de identitate","TOTAL":"TOTAL","Reception participants":"Participanți la recepție","for Sale":"de vanzare","Emag API call for :action failed":"Apelul API Emag pentru :action a esuat","The action :action on url :url failed with the following error messages:":"Acțiunea :action catre url :url a eșuat cu următoarele mesaje de eroare","New :type callback from emag":"Un nou callback :type de la emag","New :type callback from emag for id :id":"Un nou callback :type de la emag pentru id-ul :id","Missing app product for emag order :id":"Lipseste produsul din aplicatie pentru comanda emag :id","Product :product":"Produsul :product","Offer mismatch for eMag order :id":"Nepotrivirea ofertei pentru comanda eMag :id","For product :code":"Pentru produsul :code","External part number :code":"Cod extern :code","Part number :code":"Cod :code","New eMag order (id: :id) with vouchers:":"Comandă nouă eMag (id: :id) cu vouchere:",":name, value :value":":name, valoare :value","New eMag order (id: :id) with vouchers":"Comandă nouă eMag (id: :id) cu vouchere","Shipping price mismatch for eMag order :order":"Nepotrivirea prețului de expediere pentru comanda eMag :order","Product price mismatch for eMag order :order":"Nepotrivirea prețului produsului pentru comanda eMag :order","Offer with id :id already exists":"Există deja o oferta cu id-ul :id","An offer for the pnk :pnk already exists":"Există deja o ofertă pentru pnk :pnk","An offer with product id :id already exists and needs eMag intervention":"O ofertă cu id-ul produsului :id există deja și necesită intervenția eMag","No order with id :id found":"Nu s-a găsit nicio comandă cu id-ul :id","Write Review For":"Scrie o recenzie pentru","Don't know what to write about?":"Nu știi despre ce să scrii?","Tell us what you like about the purchased product.":"Spune-ne ce iti place la produsul achizitionat.","Does it live up to your expectations?":"Se ridică la nivelul așteptărilor tale?","Are you satisfied with the value for money?":"Esti mulțumit de raportul calitate-preț?","Would you recommend it to others?":"L-ai recomanda altora?","Remove from favorites":"Elimina din favorite","make default":"fă implicit","delivery":"livrare","billing":"facturare","Not Paid":"Neplatit","Requires Action":"Necesită acțiune","verify":"verifica","Verify":"Verifica","confirmation":"confirmare","No addresses defined":"Nu există adrese definite","Part":"Cod","Complete the payment":"Finaliza plata","An extra confirmation is needed to process your payment":"Este necesară o confirmare suplimentară pentru a procesa plata","Order is already paid":"Comanda este deja plătită","Your payment for this order is still processing":"Plata dvs. pentru această comandă este în curs de procesare","Please find the invoice attached":"Găsești factura în atașament","Invoice issued for order #:number":"Factura emisa pentru comanda #:number","Your order #:number":"Comanda dvs #:number","Payment via :type was successful for order :number":"Plata prin :type a reușit pentru comanda :number","A payment was received for order #:number (:total :currency)":"S-a inregistrat plata pentru comanda :number (:total :currency)","Insufficient stock for :product, only :left left":"Stoc insuficient pentru :product, numai :left ramas","Registration is restricted for the moment, please return soon":"Înregistrarea este restricționată pentru moment, te rugăm să revii în curând","Hello :name":"Salut :name","Thank you for creating an account on :shop":"Îți mulțumim pentru că ți-ai creat cont pe :shop","We hope that you will enjoy our products":"Sperăm că te vei bucura de produsele noastre, așa cum ne bucurăm și noi de ele :)","Go to login":"Intră în cont","If you are having trouble clicking the action button, copy and paste the URL below into your web browser":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos in browser-ul tau","Payment via :type was successful for order #:number, amount :amount :currency":"Plata prin :type a reușit pentru comanda #:number, suma :amount :currency","View order":"Vezi comanda","Click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","A new account was created : :name":"Un cont nou a fost creat: :name","from: :company":"de la: :company","To manage the account please click the link below":"Pentru a gestiona contul, acceseaza linkul de mai jos","View account":"Vezi contul","Details for delivering your order":"Detalii pentru livrarea comenzii","You're just a few steps away from finalizing your order":"Ești la doar câțiva pași distanță de finalizarea comenzii","If you already have an account click":"Dacă ai deja un cont, click","to go to the login page":"pentru a accesa pagina de autentificare","Your account":"Contul tau","I want to create an account":"Vreau să imi creez cont","Company Name":"Numele Companiei","Ship to a different addressed":"Comanda ta #:number a fost plasată cu succes","Skip":"Sari","New order #:number from :channel for :total :currency":"Comanda noua #:number din :channel in valoare de :total :currency","fast-checkout":"checkout-rapid","Fast Checkout":"Checkout Rapid","The action :action failed with the following error code: :code":"Acțiunea :action a eșuat cu următorul cod de eroare: :code","Reported error message: :message":"Mesaj de eroare raportat: :message","Request payload: :payload":"Payload Request: :payload","API call for :action failed":"Apelul API pentru :action a esuat","Notification, :title":"Notificare, :title","New Comment Tag":"Etichetare noua in comentarii","You were just tagged":"Tocmai ai fost etichetat","Comment Tag Notification":"Notificare etichetare in comentariu","Your password will expire soon":"Parola ta va expira curand","You've got :days days left to change it":"Mai ai :days zile ramase pentru a o schimba","You've got until tomorrow to change it":"Mai ai timp pana maine pentru a o schimba","You must change it today":"Trebuie schimbata astazi","Welcome!":"Bine ai venit!","Task Reminder":"Memento Task","This is a reminder for the following task:":"Acesta este un memento pentru următorul task:","View Task":"Vezi task-ul","Task :description":"Task :description","You cannot delete the default address":"Nu poți șterge adresa implicită","You cannot delete an address that you have previously used":"Nu poți șterge o adresă pe care ai folosit-o anterior","You cannot edit this company, please contact support":"Nu poți edita această companie, te rugăm să contactezi echipa de asistenta","Your cart is empty":"Coșul tau este gol","You cannot delete the default card":"Nu poți șterge cardul implicit","You cannot edit this :model, please contact support":"Nu poți edita acest :model, te rugăm să contactezi echipa de asistență","Company information":"Informațiile companiei","Billing address":"Adresa de facturare","Free":"Gratuit","Get to know us":"Cunoaște-ne","Registration successful":"Inregistrare realizata","Your account needs to be activated before you can login":"Contul trebuie să fie activat înainte de a te putea autentifica","You will receive a confirmation email upon approval":"Vei primi un e-mail de confirmare după aprobare","Thank you!":"Iti multumim!","Frequently asked questions":"Intrebari frecvente","Edit address":"Editeaza adresa","Edit company":"Editeaza compania","Pay by Card":"Plătește cu Card","Click":"Click","Not Implemented":"Neimplementat","Approve":"Aproba","Disapprove":"Dezaproba","for \":query\"":"pentru \":query\"","Review was rejected":"Această recenzie a fost respinsă","Review updated for :product":"Recenzie actualizata pentru produsul :product","New review submitted for :product":"Recenzie adaugata pt produsul :product","A product review was updated by :person:":"Recenzie de produs actualizata de :person:","A new product review was posted by :person:":"Recenzie de produs adaugata de :person:","Your review for :product was :approval":"Recenzia ta pentru produsul :product a fost :approval","If you want, you can revise your review here:":"Daca vrei, poti actualiza recenzia ta aici:","Review :approval":"Recenzie :approval","approved":"aprobata","rejected":"respinsa","Terms of Use":"Termeni si conditii","Similar products":"Produse similare","Enter your email to reset your password":"Introdu adresa ta de e-mail pentru a iti reseta parola","We'll send you an email with the instructions to follow":"Iti vom trimite un e-mail cu instrucțiunile de urmat","similar-products":"produse-similare","description":"descriere","characteristics":"caracteristici","about-this-brand":"despre-acest-brand","not in stock":"nu este în stoc","Not In Stock":"Nu este în stoc","Hold tight, your order is being processed. We will email you when your order succeeds":"Ține-te bine, comanda ta este în curs de procesare. Iți vom trimite un e-mail când comanda va reuși","Pay by Wire Transfer":"Plătește prin Transfer Bancar","Grand Total":"Total General","A cancellation request was received for order #:id":"Am primit o cerere de anulare pentru comanda #:id","Cancellation request for order #:id":"Cerere de anulare pentru comanda #:id","Please let us know if you are able to cancel the order":"Va rugam sa ne comunicati daca puteti efectua anularea","Cancellation request for emag order with id :id":"Cerere de anulare pentru comanda emag cu id :id","An emag order cancellation request was received":"Am primit cerere de anulare pentru o comanda emag","Ensure the order may still be cancellable":"Verifica posibilitatea de anulare a comenzii","and optionally contact the client":"si eventual contacteaza clientul","You may access the corresponding sale":"Poti accesa vanzarea corespondenta comenzii","using the button below":"dand click pe butonul de mai jos","If you need to change your email please contact us":"Dacă dorești schimbarea emailului te rugăm contactează-ne","Awb status was updated to \":status\" for emag order #:id":"Statusul Awb pentru comanda emag #:id a fost actualizat in \":status\"","Awb status update for emag order #:id":"Actualizare status awb pentru comanda emag #:id","You just asked for a password reset. To complete the process click the button below.":"Tocmai ai solicitat resetarea parolei. Pentru a finaliza procesul, accesează butonul de mai jos.","Set your new password":"Setează noua parolă","The company already exists in our system. Please contact us about that":"Compania există deja în sistemul nostru. Te rugăm să ne contactezi referitor la această situație","Secure payments with":"Plătește în siguranță prin","We will create an account for your future orders":"Iți vom crea un cont pentru comenzile tale viitoare","Go back to the store":"Întoarce-te în magazin","Added":"Adăugat","A payment method was already set for this order":"O metodă de plată a fost deja stabilită pentru această comandă","Street line 1":"Nume stradă, număr etc.","Street line 2":"Apartament, complex, unitate etc. (opțional)"} \ No newline at end of file +{":name export done":"Export :name efectuat",":name export started":"Exportul :name a început",":type import done":"Import :type efectuat","#":"#","30 days":"30 zile","7 days":"7 zile","A fresh verification link has been sent to your email address.":"Am trimis un nou link de verificare pe adresa dvs. de e-mail","About this brand":"Despre acest brand","About Us":"Despre noi","Above":"Deasupra","Accessories":"Accesorii","Account details":"Detalii cont","Account":"Cont","account":"cont","Acidity":"Aciditate","Acquisition Price":"Preț achiziție","Acquisition Value":"Valoare achiziție","Actions":"Acțiuni","actions":"acțiuni","Active":"Activ","active":"activ","Activity Log":"Activitate","Activity Start Date":"Data de începere a activității","Activity":"Activitate","Add :entity":"Adaugă :entity","Add address":"Adaugă adresă","Add Brand":"Adaugă brand","Add card":"Adaugă card","Add Card":"Adaugă card","Add Comment":"Adaugă comentariu","Add company":"Adaugă companie","Add File":"Adaugă fișier","Add Key":"Adaugă cheie","Add Payment":"Adaugă plată","Add to cart":"Adaugă în coș","Add to favorites":"Adaugă la favorite","Add video":"Adaugă clip","Add":"Adaugă","Adding":"Se adaugă","Additional":"Adițional","Address is missing or does not have lat\/long":"Adresa lipseste sau nu are latitudine \/ longitudine","Address":"Adresa","Addresses":"Adrese","Adjustment":"Reglaj","Administration":"Administrare","administration":"administrare","Administrative Area":"Administrare","Again Colors":"Din nou, culori","Agent":"Agent","Algolia":null,"All Menu Items":"Toate elementele","All Products":"Toate Produsele","All products":"Toate produsele","all products":"toate produsele","All rights reserved.":"Toate drepturile rezervate.","all":"tot","Allocated To":"Atribuit către","Amazing Saving":"Preț avantajos","Amount":"Suma","An error has occured. Please report this to the administrator":"S-a inregistrat o eroare. Raporteaza acest fapt administratorului","An error was encountered while generationg :export":"A aparut o eroare la generarea exportului :export","An export job is already running for the same table":"Un export este deja in curs pt acelasi tabel","An unknown error occurred while submitting your report. Please try again.":"A fost o eroare la trimiterea mesajului tau. Te rugam sa reincerci.","Analytics Id":null,"Apartment":"Apartament","App Key":null,"App":"App","Appellative":"Apelativ","Approved Documentation":"Documentație aprobată","Approved":"Aprobat","April":"Aprilie","Aprovizionari":null,"Are you sure that you want to delete the template file?":"Esti sigur ca vrei sa stergi fisierul macheta?","Are you sure?":"Esti sigur?","Assign":"Asociaza","Associate Person":"Asociaza persoana","attribute groups":"grupuri de atribute","Audit":null,"audit":null,"Authors":"Autori","Available menus":"Meniuri disponibile","Available slides":"Diapozitive disponibile","Avatar":"Avatar","Avenue":"Bulevard","Awaiting Brand validation":"Se așteaptă validarea brandului","Awaiting Documentation Validation":"Se așteaptă validarea documentației","Awaiting EAN validation":"Se așteaptă validarea EAN","Awaiting MKTP validation":"Se așteaptă validarea MKTP","Award List":"Lista premiilor","Awards":"Premii","Azzure":"Azur","Back":"Inapoi","Backed by":"Sustinut de","Bag":"Pungă","Bank Account":"Cont bancar","Bank":"Banca","Be the first to review this product":"Fii primul care evaluează acest produs","Before proceeding, please check your email for a verification link.":"Înainte de a continua, te rugăm să verifici e-mailul pentru link-ul de verificare.","Below":"Dedesubt","Bend":"Aplecare","Besel":null,"Best Seller":"Cel mai vândut","Between":"Intre","Billing Address":"Adresa de facturare","Birthday":"Data nasterii","birthday":"data nasterii","Birthdays":"Zile de naștere","Blank":"Blank","Blocked":"Blocat","Bookmarks":"Favorite","Bottled Weight":"Greutate îmbuteliată","Boulevard":"Bulevard","Box":"Cutie","Brand Count":"Numar de branduri","Brands":"Branduri","brands":"branduri","BTL":null,"Bucharest":"Bucuresti","Building Type":"Tip cladire","Building":"Cladire","building":"cladire","built with":"construit cu","Business hours":"Program de lucru","Butons":"Butoane","Button Item":"Element Buton","Buttons":"Butoane","buttons":"butoane","By":"De","Calendar":null,"calendar":null,"Calendars":"Calendare","Calories per 100g":"Calorii per 100g","Cancel":"Anuleaza","Cancelled":"Anulat","cancelled":"anulat","Cantitate":null,"Card number":"Număr card","Cardholder name":"Nume deținător card","Carousel":"Carusel","carousel":"carusel","Carrier":"Curier","Cart is empty":"Coșul este gol","Cart Summary":"Sumar cos","Cart Validity Days":"Validitatea cosului in zile","Cart":"Cos","Pay on Delivery":"Plătește la Livrare","Cash Register Receipt":"Bon fiscal","Catalog":null,"Categories":"Categorii","categories":"categorii","Category":"Categorie","Channel":"Canal","Characteristics":"Caracteristici","Cheque":"Cec","Choose language":"Alege limba","Choose your payment method":"Alege metoda de plata","Choose":"Alege","City Population by Age":"Populatia in functie de varsta","City":"Oras","Clear all":"Sterge tot","click here to request another":"apasă aici pentru a solicita altul","Client (company)":"Client (companie)","Client (person)":"Client (persoana)","Client Discounts":"Reduceri pentru clienți","Client Invoices":"Facturi clienti","Client Order Reference":"Referința clientului","Client Payment":"Plati clienti","Client Payments":"Plati clienti","Client Reference":"Referință client","Client Stock":"Stoc client","Client Stocks":"Stocuri client","Client":"Client","Clienti":null,"Clients":"Clienti","clients":"clienți","Close":"Inchide","Code":"Cod","Coding":"Codare","Collapse Main Menu":"Restrange meniu principal","Colors Two":"Culori, doi","Colors":"Culori","Coming Soon":"În Curând","Comments":"Comentarii","Commercial":"Comercial","commercial":"comercial","Companies":"Companii","companies":"companii","Company client":"Client companie","Company":"Companie","company":"companie","Completed":"Finalizat","Configure Role":"Configureaza rol","Configure":"Configureaza","configure":"configureaza","Confirm Password":"Confirmare parolă","Confirmed":"Confirmat","Contact Bar Text":"Text bara de contact","contact form":"formular de contact","Contact Form":"Formular de Contact","Contact us with any questions or concerns that you may have and we will get back to you shortly":"Contactează-ne pentru orice întrebări sau nelămuriri și îți vom răspunde în curând","Contact":"Contact","Contacts Index":"Index contacte","Contacts":"Contacte","contacts":"contacte","Content Private":"Continut privat","Content":"Continut","Continue":"Continua","Copied to clipboard":"Copiat in clipboard","Copyright © 2016":"Copyright © 2016","Core":"Core","Country of Origin":"Țara de origine","Country":"Tara","County":"Judet","Courier Service":"Serviciu de curierat","Create a new Entity":"Creeaza o noua entitate","Create a new User":"Creeaza user","Create Button":"Creeaza buton","Create Company":"Creeaza companie","Create Differences Sale":"Genereaza vanzare cu diferente","Create Group":"Creeaza grup","create group":"creeaza grup","Create Language":"Creeaza limba","Create Menu":"Creeaza meniu","Create Owner":"Creaza owner","Create Permission Group":"Creeaza grup permisii","Create Permission":"Creeaza permisie","Create Permissions Group":"Creeaza grup permisii","Create Person":"Creeaza persoana","Create Resource":"Creaza resursa","Create Role":"Creeaza rol","Create Tutorial":"Creeaza tutorial","Create User Group":"Creeaza grup useri","Create User":"Creeaza user","Create":"Creeaza","create":"creeaza","Created Address":"Adresa creata","Created At":"Creat la","Created at":"Creat la","Created By":"Creat de","Created Contact":"Contact creat","Created":"Creat","created":"creat","Currency Placed Before":"Valuta plasata inainte","Current file size is":"Marimea fisierului este","custom":"personalizat","Customer opinions":"Opiniile clienților","Cycling":"Ciclism","Danger":"Pericol","Dashboard":"Dashboard","dashboard":"dashboard","Data Import":"Import date","data import":"import date","Date":"Data","Default Address":"Adresa implicita","Default Menu":"Meniu implicit","Default":"Implicit","default":"implicit","Delete Avatar":"Sterge Avatar","Delete File":"Sterge Fisier","Delete Template":"Sterge template","Delete video":"Sterge clip","Delete":"Sterge","delete":"sterge","deleted":"sters","Delivered":"Livrat","Description":"Descriere","deselect":"deselecteaza","Designing":"Designing","details":"detalii","Details":"Detalii","Diameter":"Diametru","Direct Link":"Link direct","Discount":"Reducere","Discounts":"Discounturi","discounts":"discounturi","Discussions":"Discutii","Display Name":"Nume Afisat","Documents":"Documente","documents":"documente","Don't have an account?":"Nu ai cont?","Download Delivery Note":"Descarca nota de livrare","Download Excel Sale Offer":"Descarca oferta vanzare (excel)","Download Excel Sale Return Offer":"Descarca oferta de retur (excel)","Download Goods Received Note":"Descarca nota receptie marfa","Download Invoice (long click for cancel)":"Descarca factura (click lung pt anulare factura)","Download Payment (long click for cancel)":"Descarca plata (click lung pt anulare plata)","Download Sale Offer":"Descarca oferta vanzare","Download Sale Return Offer":"Download oferta de retur","Download Stock Removal":"Descarca fisa scoatere din stoc","Download Template":"Descarca template","Download":"Descarca","Drag And Drop":"Drag And Drop","Drinking":null,"Due Date":"Scadenta","E-Mail Address":"Adresă de e-mail","Eating":"Mancand","EAV":null,"eav":null,"Edit Button":"Editeaza buton","Edit Company":"Editeaza companie","Edit Invoice":"Editeaza factura","Edit Language":"Editeaza limba","Edit Menu":"Editeaza meniu","Edit Owner":"Editeaza owner","Edit Permission Group":"Editeaza grup permisii","Edit Permission":"Editeaza permisie","Edit Permissions Group":"Editeaza grup permisii","Edit Person":"Editeaza persoana","Edit personal details":"Editeaza detaliile personale","Edit Role":"Editeaza rol","Edit Texts":"Editeaza texte","edit texts":"editeaza texte","Edit Tutorial":"Editeaza tutorial","Edit User Group":"Editeaza grup useri","Edit User":"Editeaza user","Edit":"Editeaza","edit":"editeaza","Editable Time Limit":"Limită de timp modificabilă","edited":"editat","Element":"Element","Emag Active Offer":"Oferta activa Emag","Emag documentatie":null,"Emag Documentation":"Documentatie Emag","Emag Offer":"Oferta Emag","Emag pret":null,"Emag Price":"Pret Emag","Emag Valid":null,"Emag":null,"emag":null,"Email can only be edited via the user form":"Emailul poate fi editat doar prin formularul de user","Email":"Email","Emailed At":"Trimis prin e-mail la","Emailed":"Email","Enabled":"Activat","End":"Sfarsit","Enter Fulfilling Mode":"Acceseaza modul Efectuare","Enter the application":"Intra in aplicatie","Enter warehouse mode":"Intra in mod magazie","Enter Warehouse Mode":"Paraseste modul Depozit","Entities":"Entitati","entities":"entitati","Entity Details":"Detalii entitate","Entity":"Entitate","entity":"entitate","Entries":"Intrari","entries":"intrari","Entry":"Intrare","entry":"intrare","Error":"Eroare","Events":"Evenimente","Excel":"Excel","Expanded Menu":"Meniu colapsat","Expanded Sidebar":"Bara laterală extinsă","Expiration Date":"Data expirare","Export available for download: :filename":"Export :filename disponibil pentru descarcare","Export Done":"Export efectuat","Export emailed: :filename":"Export :filename trimis pe email","Export emailed":"Export trimis pe mail","Export error":"Eroare la exportare","Export Notification":"Notificare export","Export started":"Export inceput","Export":"Export","export":"export","exporting rejected":"export refuzate","exports":"exporturi","External":"Extern","Extra Virgin Olive Oils":"Ulei de măsline extravirgin","Facturi clienti":null,"Facturi furnizori":null,"Failed":"Esuat","failed":"esuat","FAQ":null,"Favorites":"Favorite","Favourite products":"Produse favorite","Fax Number":"Numar fax","Fax":"Fax","FEATURED BRANDS":"BRANDURI PROMOVATE","Featured Brands":"Branduri Promovate","Feb":"Feb","February":"Februarie","File name":"Nume fisier","File Size":"Marime fisier","File":"Fisier","File(s)":"Fisier(e)","Files were uploaded successfully":"Fisierele au fost incarcate","Files":"Fisiere","files":"fisiere","Fill":"Completeaza","Filter by name or code":"Filtreaza dupa nume sau cod","Filter":"Filtru","filtered from":"filtrate din","filtered":"filtrat","Filters":"Filtre","Finalize order":"Finalizează comanda","Finalize":"Finalizeaza","Finalized":"Finalizat","finalized":"finalizat","Financial Overview":"Prezentare Financiară","Financials":"Financiar","financials":"financiar","find matches":"găsește potriviri","First Name":"Prenume","Fiscal Code":"Cod fiscal","Fiscal Invoice":"Factura fiscala","Fiscal":null,"Flag Icon Class":"Clasa iconita steag","Flag Sufix":"Sufix steag","Flag":"Steag","Floor":"Etaj","floor":"etaj","Forbidden":"Interzis","Forgot Password?":"Ai uitat parola?","Forgot password":"Parola uitata","Forgot Your Password?":"Ai uitat parola?","Found :total results":":total rezultate gasite","Friday":"Vineri","Frisbo":null,"From":"De la","from":"de la","Fulfilled At":"Efectuat la","Fulfilling":"În procesare","Furnizor":null,"Gender":"Gen","General Settings":"Setari generale","General":null,"Generate":"Genereaza","Generated for order #:number":"Generat pt comanda #:number","Geneva":"Geneva","Get in touch with us":"Contacteaza-ne","Go Home":"Acasă","Google":null,"Got it!":"Am înțeles!","Green":"Verde","Group":"Grup","Groups":"Grupuri","Habits":"Obiceiuri","Harvest 2016\/2017":"Recolta 2016\/2017","Harvest 2017\/2018":"Recolta 2017\/2018","Harvest 2018\/2019":"Recolta 2018\/2019","Harvest 2019\/2020":"Recolta 2019\/2020","Harvest":"Recolta","Has Children":"Are submeniu","Height":"Înălţime","Hello!":"Bună!","Hello":"Salut","Herbs":"Plante aromatice","here":"aici","Hi :name,":"Salut :name,","Hi :name":"Salut :name","Home":"Acasa","Homepage":"Pagina principală","How To Videos":"Clipuri","how to videos":"clipuri","I agree to the":"Sunt de acord cu","I authorise :name to send instructions to the financial institution that issued my card to take payments from my card account in accordance with the terms of my agreement with you":"Autorizez :name sa trimita instructiuni institutiei financiare care a emis cardul meu pentru a face plati din contul meu bancar in momentul achizitiei de catre mine a produselor de pe siteul :name","I authorise":"Autorizez","Ian":"Ian","Icon Class":"Clasa icoana","Icon":"Icoana","If you are having trouble clicking the action button, copy and paste the URL below":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos","If you did not create an account, no further action is required.":"Dacă nu ai creat un cont, poți ignora acest mesaj.","If you did not receive the email":"Dacă nu ai primit e-mailul","If you did not request a password reset, no further action is required.":"Dacă nu ai solicitat o resetare de parolă, poți ignora acest mesaj.","If you’d like to help, tell us what happened below.":"Daca vrei sa ajuti, noteaza mai jos ce s-a intamplat","IFSC":"CIF","Impersonate":"Impersoneaza","Impersonating":"Impersonare","Import Summary":"Sumar import","Import Type":"Tip import","Import":"Import","Importance":"Importanţă","Important":"Important","Imported At":"Importat la","Imported By":"Importat de","Imported Entries":"Intrari importate","ImportType":"Tip import","In a few minutes you will receive a confirmation email":"In cateva minute vei primi un email de confirmare","In Stock":"In stoc","in stock":"în stoc",":days Days Returns":"Retur Gratuit in :days zile","24h Tracked Shipping":"Livrare cu Tracking in 24h","100% Original Products":"Produse 100% Originale","Secure Payments":"Plati securizate","Income":"Venit","index":"index","Indications":"Indicații","Individual":"Persoana Fizica","Industrial":"Industrial","Info":null,"Ingredients":"Ingrediente","Insert in Stock":"Insereaza in stoc","Integrations":"Integrări","Internal #":"Cod intern","Internal Code":"Cod intern","Internal":"Intern","into your web browser":"in browserul dvs.","Invalid signature.":"Semnătură incorectă.","Invalid":null,"Inventory":"Inventar","inventory":"inventar","Invoice Emailed":"Email factura","Invoice for order # :number":"Factura pentru comanda # :number","Invoice for order":"Factura pentru comanda","invoice":"factura","invoices":"facturi","Invoices":"Facturi","Is Active":"Este Activ","Is Cancelled":"Anulat","Is Default":"Este implicit","is-bordered":null,"is-hoverable":null,"is-narrow":null,"is-striped":null,"Issue Invoice":"Emite factura","Issue Payment":"Adauga plata","Issue proforma":"Emite proforma","Issues":"Probleme","It looks like we’re having issues.":"Se pare ca intampinam probleme","Item":"Articol","items":"articole","Items":"Articole","Jams":"Gemuri","January":"Ianuarie","Jar":"Borcan","July":"Iulie","June":"Iunie","Keep tables configurations":"Pastreaza configuratia tabelelor","Key Collector":"Colector chei","Key Name":"Denumire cheie","Key Value":"Valoare cheie","Key":"Cheie","keys found":"chei gasite","Label Generator":"Generator etichete","Label":"Etichetă","Labels":"Etichete","labels":"etichete","Lane":"Alee","Language Item":"Element limba","Language":"Limba","Languages":"Limbi","languages":"limbi","Last Modified":"Ultima modificare","last month":"luna trecuta","Last Name":"Nume","Last updated":"Ultima modificare","last week":"saptamana trecuta","last year":"anul trecut","Learn more":"Află mai multe","Leave Fulfilling Mode":"Paraseste modul Efectuare","Leave Warehouse Mode":"Acceseaza modul Depozit","Left":"Stanga","Length":"Lungime","limited quantity":"cantitate limitată","Limited Stock Limit":"Pragul pt stoc limitat","Limited Stock":"Stoc limitat","Line":"Linie","Link":"Link","List Price":"Pret lista","Page [page] from [toPage]":"Pagina [page] din [toPage]","List Value":"Valoare lista","List":"Lista","Load More":"Incarca mai multe","Load more":"Incarca mai multe","Loading...":"Se incarca...","Loading":"Se incarca","Localisation Index":"Index localizare","Localisation":"Internationalizare","localisation":"internationalizare","Localities":"Localitati","Locality":"Localitate","Log in":"Autentificare in sistem","Log out":"Delogare","Log Out":"Iesiti","log":"log","Login":"Login","login":"login","Logins":"Logari","logins":"logari","logout":"deconectare","Logout":"Iesire","Logs Index":"Index Loguri","Logs":"Loguri","logs":"loguri","Loss":"Pierdere","Made with Bulma":"Realizat cu Bulma","Made with Laravel":"Realizat cu Laravel","Made with Vue":"Realizat cu Vue","Magazie":null,"Main Menu":"Meniu principal","Manage Buttons":"Editeaza butoane","Manage Menus":"Administreaza meniuri","Manage Permissions":"Administreaza permisii","Mandatary":"Mandatar","Manufacturer":"Producător","Manufacturers":"Producatori","Maps key":null,"Mar":"Mar","March":"Martie","Mark all as read":"Marcheaza-le citite","Mark all read":"Marcheaza tot ca citit","Max":null,"May":"Mai","MB":"MB","Measurement Unit":"Unitate de Masură","Measurement Units":"Unitati de masura","measurement units":"unitati de masura","Member Since":"Membru din","Members":"Membri","Menu Collapse":"Restrange meniu","Menu Items":"Elemente meniu","Menu":"Meniu","Menus Index":"Index meniuri","Menus":"Meniuri","menus":"meniuri","Merge all localisation files":"Îmbină toate fisierele de localizare","Mfr #":"Cod produs","Mfr":"Prod","Min":null,"Miss":null,"Mode":"Mod","Monday":"Luni","more":"mai mult","move to favorites":"muta la favorite","Mr":null,"MU":"UM","N\/A":"N\/A","Name":"Nume","Needs matching":"Necesita match","Net Weight":"Greutate netă","New Address":"Adresa noua","New Password":"Parola noua","New team":"Echipa noua","New Topic":"Subiect nou","New":"Nou","Next Page":"Pagina urmatoare","Next":"Urmator","NIN":"CNP","No activity found":"Nu a fost gasita activitate","No keys found":"Nu au fost gasite chei","No locations found":"Nu au fost găsite locații","No options available":"Nu exista optiuni","No records were found":"Nu au fost gasite inregistrari","No reservations found":"Nu au fost găsite rezervări","No search results found":"Nu au fost gasite rezultate","No teams were created yet":"Încă nu au fost create echipe","No":"Nu","Not Found":"Negăsit","not paid":"neplatit","Note":"Observații","Notes":"Note","Nothing found":"Nu a fost gasit nimic","notification":"notificare","Notifications":"Notificari","notifications":"notificari","Number":"Numar","Observations":"Observatii","of":"din","Offices":"Birouri","Oh no":"O, nu","OK":"OK","on behalf of :company":"pe compania :company","On Demand":"In stoc furnizor","on":"pe","Online":null,"Only missing":"Doar negasite","Operation failed because the permission is allocated to existing role(s)":"Operatia a esuat deoarece permisiunea este alocată unui rol existent","Operation was successfull":"Operatiunea a fost efectuata cu succes","order #:number invoice":"factura pentru comanda #:number","order #:number":"comanda #:number","Order #:number":"Comanda #:number","Order details :number":"Detalii comanda :number","Order Line Limit":null,"Order Payment":"Plata","Order Values":"Valorile comenzii","Order":"Comanda","Orders":"Comenzi","Organize Menus":"Ordonare meniuri","our location":"locatia noastra","Our Location":"Locația noastră","Our team has been notified.":"Echipa noastra a fost notificata","Overdue":"Depășit","Own Stock":"Stoc propriu","Owners Index":"Index owneri","Owners":"Entitati","owners":"owneri","Package Content":"Conținutul pachetului","Packaging Units":"Unități de Ambalare","packaging units":"unități de ambalare","Page Expired":"Pagina a expirat","Parade":"Parada","Parent":"Parinte","Part Number":"Cod","Password Confirmation":"Confirmare parola","Password":"Parola","password":"parola","Passwords must be at least six characters and match the confirmation.":"Parola trebuie să fie de cel puțin șase caractere și să se potrivească cu cea de confirmare.","Past Imports":"Importuri anterioare","Pasta":"Paste","Authorize Only":"Doar Autorizare","pay":"plateste","Pay":"Plateste","Payment method":"Metoda de plata","Payment Methods":"Metode de plata","Payment Order":"OP","Payment":"Plata","payments":"plati","Payments":"Plăți","Pays VAT":"Plateste TVA","People":"Persoane","people":"persoane","Permission Group":"Grup de permisii","Permission Groups Index":"Index grupuri de permisii","Permission Groups":"Grupuri de permisii","Permission Name":"Nume permisie","Permission":"Permisie","permissionGroups":"Grupuri de permisii","Permissions Group Items":"Elemente Permisii Grup","Permissions Group":"Grup Permisii","permissions group":"permisii grup","Permissions Groups":"Grupuri Permisii","Permissions Index":"Index permisii","Permissions":"Permisii","permissions":"permisii","Person client":"Client persoana","Person":"Persoana","person":"persoana","Personal Info":"Informatii personale","Personal information can only be edited via the person form":"Informatiile personale pot fi editate numai prin formularul persoanei","Personal":"Personal","Phone Number":"Numar de telefon","Phone":"Telefon","Pic":null,"Pick an option":"Alege o optiune","Picture":"Poza","Piece":"Buc","Place order":"Plasează comanda","Placement":"Pozitie","Plati clienti":null,"Plati furnizor":null,"Please choose":"Alege","Please click the button below to verify your email address.":"Te rugăm să accesezi butonul de mai jos pentru a verifica adresa de e-mail.","Please confirm your password before continuing.":"Te rugăm să confirmi parola înainte de a continua.","Please Fill":"Completeaza","Please find attached the order's invoice.":"Găsești factura pentru această comandă în atașament.","Please review your order and payment details":"Te rugăm să verifici detaliile comenzii","Please set or reset your password by clicking the button below.":"Te rugam sa setezi sau sa resetezi parola facand clic pe butonul de mai jos.","POS Receipt":"Chitanta POS","Position":"Pozitie","Positions":"Pozitii","positions":"poziții","Post":"Trimite","Postal Area":"Cod postal","Postal Code":"Cod postal","Postcode":"Cod postal","posted":"postat","Prepared":"Pregătit","Preview":"Previzualizeaza","Previous Page":"Pagina anterioara","Previous":"Anterior","Price":"Pret","Privacy":"Confidențialitate","processed":"procesat","Processing":"In procesare","processing":"in procesare","Product image coming soon":"Poza urmeaza sa fie adaugata","Product":"Produs","Products per page":"Produse per pagina","Products":"Produse","products":"produse","Produs":null,"Profile":"Profil","Profit":"Profit","Proforma Invoice":"Factura proforma","Proforma":null,"Promissory Note":"Bilet la ordin","publish product":"publica produsul","Purchase Returns":"Retur aprovizionari","purchase returns":"retur aprovizionari","Purchase":"Aprovizionare","Purchases":"Aprovizionari","purchases":"aprovizionari","Purple":"Mov","Qty":"Cant.","Quantity":"Cantitate","rating":"evaluare","Rating":"Evaluare","Ratio":"Aspect","Read":"Citire","Recaptcha key":"Cheie Recaptcha","Recaptcha secret":null,"Receipt":"Chitanta","Received":"Primit","Recent orders":"Comenzi recente","Recommended Products":"Produse recomandate","records":"inregistrari","Red":"Rosu","Reference \\ PO":"Referinta","Regards":"Toate cele bune","register":"fă-ți cont","Register":"Fă-ți cont","Registered Entities":"Entitati inregistrate","Registered Users":"Useri Inregistrati","Registry Of Commerce":"Nr. Inreg. Reg. Com.","Registry of commerce":"Registrul comertului","Rejected Association":"Asociația Respinsă","Rejected Brand":"Brand respins","Rejected Documentation":"Documentație respinsă","Rejected EAN":"EAN respins","Reload":"Reincarca","Remember me":"Tine-ma minte","Remember Me":"Ține-mă minte","Reminder":null,"Remove From Stock":"Scoate din stoc","Remove poster":"Sterge poster","remove":"sterge","Reorder Menu":"Reorganizează meniu","reorder":"reorganizează","Repeat Password":"Repeta parola","Replies":"Raspunsuri","Reply":"Raspunde","Resell":"Revanzare","Reservations":"Rezervări","Reserved":"Rezervat","Reset password request":"Cerere resetare parolă","Reset password":"Reseteaza parola","Reset":"Reset","Residential":"Rezidențial","Resource Prefix":"Prefix resursa","Resource":"Resursa","resource":"resursa","Retur aprovizionari":null,"Retur vanzari":null,"Revenue":"Venit","Reviews":"Recenzii","reviews":"recenzii","Right":"Dreapta","Road":"Drum","Role Item":"Element Rol","Role":"Rol","role":"rol","Roles Index":"Index roluri","Roles List":"Lista roluri","Roles":"Roluri","roles":"roluri","Rotatie":null,"Rotation":"Rotatie","Route":"Ruta","Row":"Rand","Running":"Alergare","Sale Channel":"Canal de vânzare","Sale Channels":"Canale de vânzare","sale channels":"canale de vânzare","Sale Price":"Pret vanzare","Sale Returns":"Retur vanzari","sale returns":"returnarea vânzării","Sale Value":"Valoare vanzare","Sales":"Vanzari","sales":"vanzari","Saturday":"Sambata","Sauces":"Sosuri","Save Configuration":"Salveaza configuratie","Save your work then click here to refresh your page and update to the latest application version":"Salveaza-ti modificarile si apasa aici pentru a reincarca pagina si a migra la cea mai noua vesiune a aplicatiei","Save":"Salveaza","Sea Salt":"Sare de mare","Search category limit":"Limita categorii la cautare","Search in products":"Caută în produse","Search placeholder":"Placeholder pt cautare","Search something":"Căutați ceva","Search within brands":"Cauta in branduri","Search...":"Căutare...","Search":"Cauta","Searching...":"Căutând...","Searching":"Caut","Secret":"Secret","See all":"Vezi tot","Select file for import":"Selecteaza fisier pt import","select":"select","selected":"selectat","Send a password reset link":"Genereaza link pentru reset parola","Send a reset password link":"Trimite un link de resetare parola","Send Password Reset Link":"Trimite link-ul pentru resetarea parolei","Serial":"Serie","Server Error":"Eroare de server","Service Unavailable":"Serviciu indisponibil","Service":"Serviciu","Services":"Servicii","services":"Servicii","Set password":"Seteaza parola","Settings":"Setari","settings":"setări","Share your idea...":"Sharuieste ideea","Share your opinion and rate the product":"Împărtășește-ți opinia și evaluează produsul","Share your opinion...":"Sharuieste parerea","Shelf":"Raft","Shift + Enter to post":"Shift + Enter pt a posta","Shipped":"Expediat","Shipping Address":"Adresa de livrare","Shipping charges may be incurred":"Pot fi aplicate costuri de transport","Shipping charges of :value (+VAT) will be added":"Vor fi adaugate costuri de transport in valoare de :value (+TVA)","Shipping cost":"Cost transport","You will pay":"Cat vei plati","Visit the product page":"Viziteaza pagina produsului","Shop Categories":"Categorii","Shopping Cart":"Cos cumparaturi","Show Log":"Arata log","Show Logs from":"Arata log-uri din","Show":"Arata","show":"arata","Showing :from - :to of :total results":"Se afiseaza de la :from pana la :to din :total de rezultate","Sicilian Honey":"Miere siciliană","Sidebar Toggle":"Alterneaza stil meniu","Similar products limit":"Limita pt produse similare","Site Texts":"Texte Site","Size":"Marime","Sleeping":"Dormit","Some fields were invalid. Please correct the errors and try again.":"Cateva campuri au fost invalide. Corecteaza erorile si reincearca.","Something went wrong...":"Ceva nu a functionat corect...","Special Diet":"Dietă specială","Speciality":"Specialitate","Spendings":"Cheltuieli","Square":"Pătrat","Start Tutorial":"Start tutorial","Started":"Inceput","Starters":"Aperitive","Status":"Status","Stock Rotation":"Rotația stocului","Stock: :stock":"Stoc: :stock","Stock":"Stoc","Stopped":"Oprit","Storage Usage":"Utilizare spatiu","store":"magazin","Storing":"Depozitare","Street Type":"Tip strada","Street":"Strada","Sub Administrative Area":"Zona administrativa subordonata","Submit":"Trimite","Success":"Succes","Successful":"Reusite","Summary":"Sumar","Sunday":"Duminica","Supplier Discounts":"Reduceri de la furnizori","Supplier Invoices":"Facturi furnizori","Supplier Number":"Numar furnizor","Supplier Payments":"Plati furnizor","Supplier Ref":"Ref. Furnizor","Supplier Stock":"Stoc furnizor","Supplier":"Furnizor","suppliers":"furnizori","Sweets":"Dulciuri","System":"Sistem","system":"sistem","Table export done":"Export tabel efectuat","Table export error":"Eroare la exportul de tabel","Table export started":"Exportul de tabel a inceput","Table":"Tabel","Tables State Save":"Pastreaza config","Tags":"Taguri","Tasks":"Sarcini","tasks":"sarcini","team":"echipa","Teams":"Echipe","Template":"Șablon","Tenant":"Chiriaş","terms and conditions":"termenii si conditiile","Terms of use":"Termeni si conditii","Terms Of Use":"Termeni si conditii","terms of use":"termenii si conditiile","Thank you for shopping with us":"Îți multumim pentru cumparaturile facute","Thank you for using our application!":"Îți multumim ca ne folosești aplicatia!","Thank you for your order":"Îți mulțumim pentru comandă","Thank you":"Multumesc","The :filename file is ready":"Fisierul :filename este gata","The address has been successfully updated":"Adresa a fost actualizata cu succes","The address was successfully created":"Adresa a fost creata cu succes","The admin role already has all permissions and does not need syncing":"Rolul de admin deja are toate permisiile si nu are nevoie de sincronizare","The application was updated, please save your work & refresh your browser":"Aplicatia a fost actualizata, salveaza-ti modificarile si reincarca pagina","The Changes have been saved!":"Modificarile au fost salvate!","The changes have been saved":"Modificarile au fost salvate","The company was successfully created":"Compania a fost creata cu succes","The company was successfully deleted":"Compania a fost stearsa cu succes","The company was successfully updated":"Compania a fost actualizata cu succes","The Entity was created!":"Entitatea a fost creata!","The entity was created!":"Entitatea a fost creata!","The export :name could not be completed due to an unknown error":"Exportul :name nu a putut fi finalizat datorita unei erori","The export was cancelled successfully":"Exportul a fost anulat cu succes","The form contains errors":"Formularul contine erori","The generated document has :entries entries":"Documentul are :entries inregistrari","The import was restarted":"Importul a fost repornit","The language files were successfully merged":"Fisiere de limbi au fost concatenate cu succes","The language files were successfully updated":"Fisierele de limba au fost actualizate","The log file":"Fisierul","The log was cleaned":"Log-ul a fost curatat","The menu was created!":"Meniul a fost creat!","The operation was successful":"Operatiunea a fost efectuata cu succes","New order #:number from :channel for :total :currency was placed by :person":"Comanda noua #:number din :channel in valoare de :total a fost plasată de catre :person","Selected payment method: :paymentMethod":"Metoda de plata selectata: :paymentMethod","The permission group was created!":"Grupul de permisii a fost creat!","The permission was created!":"Permisia a fost creata!","The permissions were created!":"Permisiile au fost create!","The person has assigned resources in the system and cannot be deleted":"Persoana are resurse asignate in sistem si nu poate fi stearsa","The Person was successfully created":"Persoana a fost creata cu succes","The person was successfully created":"Persoana a fost creata cu succes","The person was successfully deleted":"Persoana a fost stearsa cu succes","The person was successfully updated":"Persoana a fost actualizata cu succes","The poster was deleted successfully":"Posterul a fost sters cu succes","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul a fost trimis spre generare. Poate dura cateva minute pana cand il vei primi pe mail","The requested report was started. It can take a few minutes before you have it in your inbox":"Raportul solicitat a fost pornit. Poate dura cateva minute inainte de a-l primi in casuta de e-mail","The role was created!":"Rolul a fost creat!","The selected record is about to be deleted. Are you sure?":"Inregistrarea selectata este pe cale sa fie stearsa. Esti sigur?","The team was successfully saved":"Echipa a fost salvata cu succes","The tutorial was created!":"Tutorialul a fost creat!","The tutorial was successfully deleted":"Tutorialul a fost sters cu succes","The user group was successfully created":"Grupul de useri a fost creat cu succes","The user group was successfully deleted":"Grupul de useri a fost sters cu succes","The user has activity in the system and cannot be deleted":"Userul are activitate in sistem si nu poate fi sters","The User was created!":"Userul a fost creat!","The video file was deleted successfully":"Clipul a fost sters cu succes","The video was updated successfully":"Clipul a fost actualizat cu succes","The webshop is still under construction, but we're launching soon...":"Magazinul online este încă în construcție, dar il vom lansa în curând...","Theme Color":"Culoare Tema","Theme":"Tema","There are no active carousel slides":"Nu exista slide-uri de carusel active","There are no addresses added yet":"Nu ai nicio adresă adăugată","There are no companies added yet":"Nu există companii adăugate","There are no credit cards added yet":"Nu ai niciun card adăugat","This action is unauthorized.":"Această acțiune nu este permisă.","this month":"luna aceasta","This password reset link will expire in :count minutes.":"Acest link de resetare a parolei va expira în :count minute.","This password reset token is invalid.":"Codul de resetare a parolei este greșit.","This website uses cookies to deliver its services and to analyze traffic. For more details please visit our":"Acest site web folosește cookie-uri pentru a-și furniza serviciile și pentru a analiza traficul. Pentru mai multe detalii viziteaza","privacy policy":"politica de confidentialitate","this week":"săptămâna aceasta","this year":"anul acesta","Thursday":"Joi","Time":"Timp","Timeline":"Cronologie","Tip":null,"Title...":"Titlu...","Title":"Titlu","title":"titlu","to manage your addresses":"pt a gestiona adresele","to manage your cards":"pt a gestiona cardurile","to manage your companies":"pentru a gestiona companiile","to view your order":"pentru a vedea comanda","To":"la","to":"la","Today":"Astăzi","today":"azi","Toggle navigation":"Comută navigarea","Too Many Attempts.":"Prea multe încercări.","Too Many Requests":"Prea multe cereri","Top Banner Content":"Continut top banner","Top Pick":"Alegere de Top","Total amount for order #:number is :currency:total":"Totalul de plată pentru comanda #:number este :total :currency","total records":"inregistrari","Total":"Total","total":"total","Translations":"Traduceri","Tuesday":"Marti","Tutorial":"Tutorial","Tutorials Index":"Index tutoriale","Tutorials":"Tutoriale","tutorials":"tutoriale","Type a new comment":"Adauga un comentariu","Type":"Tip","type":"tip","Types":"Tipuri","Unable to read file":"Nu se poate citi fiserul","Unauthorized":"Nepermis","Undo Stock Insertion":"Anuleaza insertia in stoc","Undo Stock Removal":"Anuleaza scoaterea din stoc","Unique Identifier":"Identificator unic","Unit. Price":"Pret unit.","Unitary Price":"Pret unitar","untagged":"netaguit","Update":"Updateaza","Updated At":"Updatat la","Updated By":"Actualizat de","updated the members":"actualizat membrii","updated":"actualizat","Updated":"Updatat","Upload Avatar":"Incarca Avatar","Upload Template":"Incarca template","uploads":"uploaduri","Use":"Utilizare","User Details":"Detalii User","user groups":"grupuri user","User Groups":"Grupuri","User Info":"Informatii user","User Profile":"Profil user","User":"User","user":"user","Users Administration":"Administrare useri","Users Index":"Index useri","Users":"Useri","users":"useri","Valability":"Valabilitate","Valid":"Valid","Value in seconds. Use 0 to disable":"Valoarea în secunde. Folosește 0 pentru a dezactiva","Value":"Valoare","Vanzari":null,"VAT":"TVA","VAT Value":"Valoare TVA","ver":"ver","Verify Email Address":"Verificare adresă de e-mail","Verify Your Email Address":"Verifică-ți adresa de e-mail","Video description":"Descriere clip","Video name":"Nume clip","Video":"Video","video":"video","View Cart":"Vezi cos","View your order":"Vezi comanda","Virtual Position ID":"ID Poziție Virtuală","Visible Brands":"Branduri vizibile","Visible Top Banner":"Top banner vizibil","Vista":"Perspectivă","Volume":"Volum","Voucher":null,"waiting":"in asteptare","Warehouse":"Depozit","warehouses":"depozite","Warehouses":"Depozite","Warning":"Avertizare","was changed":"a fost schimbat","was last updated":"a fost modificat","We can't find a user with that e-mail address.":"Nu există niciun user cu această adresă de e-mail.","We have e-mailed your password reset link!":"Am trimis un e-mail cu link-ul de resetare a parolei!","We will keep you updated on its progress":"Te vom tine la curent cu progresul ei","We won't ask for your password again for a few hours.":"Nu îți vom mai solicita adresa de e-mail pentru câteva ore","Webshop Name":"Nume webshop","Webshop Order":"Comanda webshop","webshop":"magazin web","Webshop":"Magazin web","Website":null,"Wednesday":"Miercuri","Welcome Back":"Bine ai revenit","Welcome":"Bun venit","What happened?":"Ce s-a intamplat?","What you need to know":"Ce trebuie sa stii","What":"Ce","When":"Cand","Whoops!":"Oops!","Width":"Lăţime","Write a review":"Scrie o recenzie","Write":"Scriere","Yes":"Da","yesterday":"ieri","You are not authorized for this action":"Nu esti autorizat pentru aceasta actiune","You are not authorized to perform this action":"Nu esti autorizat pentru aceasta actiune","You are receiving this email because we received a password reset request for your account.":"Primești acest mesaj pentru că a fost înregistrată o solicitare de resetare a parolei pentru contul asociat acestei adrese de e-mail.","You can click":"Poti da click","You don't have any favorite products yet":"Nu ai niciun produs adăugat la favorite","You don't have any notifications":"Nu ai notificari","You don't have any orders yet":"Nu ai efectuat nicio comandă","You don't have any products in the shopping cart right now":"Nu ai niciun produs în coș momentan","You have":"Ai","You just got a notification...":"Tocmai ai primit o notificare...","You made too many attempts. Please wait 5 minutes and try again.":"Ai apelat de prea multe ori generarea raportului. Asteapta 5 minute si reincearca","You may also like":"S-ar putea sa-ti placa si","You will find attached the requested report.":"Vei gasi atasat raportul cerut.","Your :shop order :number":"Comanda :shop cu numarul :number","Your account has been disabled. Please contact the administrator":"Ne pare rau, contul tau a fost dezactivat. Te rugam contacteaza administratorul","Your card was successfully saved":"Cardul tău a fost salvat cu succes","Your email address is not verified.":"Adresa ta de e-mail nu este verificată.","Your Message":"Mesajul tău","Your password has been reset!":"Parola a fost resetată!","You need to accept our terms of use first":"Mai întâi trebuie să accepți termenii noștri de utilizare","item":"articol","PO #":"Ref #","Your privacy is important for us":"Confidențialitatea ta este importantă pentru noi","cart":"cos","favourites":"favorite","addresses":"adrese","orders":"comenzi","payment":"plata","summary":"sumar","add":"adauga","rate":"evalueaza","review":"recenzie","star":"stea","stars":"stele","Thank you for contributing":"Îți mulțumim pentru contribuție","Do you own or have used this product?":"Deții sau ai folosit acest produs?","This review is awaiting approval":"Această recenzie așteaptă aprobare","This review was approved":"Această recenzie a fost aprobată","This review was rejected. You may edit and repost it.":"Această recenzie a fost respinsă. Poți să îl editezi și să îl repostezi.","Edit review":"Editează recenzia","category":"categorie","terms-of-use":"termeni-si-conditii","privacy":"confidentialitate","about-us":"despre-noi","favorites":"favorite",":user finalized the :model :label for the partner :partner":":user a finalizat :model :label pentru partenerul :partner",":type quantity and total were successfully updated":"Cantitatea si totalul pentru :type au fost actualizate",":type update":"Actualizare :type","Please find attached the order details":"Regasiti detaliile comenzii in atasament","Succeeded":"Reusita","External Reference":"Referinta externa","Incomplete order (#:number)":"Comanda incompleta (#:number)","On :date you placed an order on our webshop but forgot to finalize the payment.":"Pe data de :date ai plasat o comanda pe magazinul nostru online dar nu ai finalizat plata.","Please click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","New message from the webshop's contact form":"Mesaj nou din pagina de contact a webshop-ului","Your Webshop.":"Magazinul tau.","Message:":"Mesaj:","Contact phone: :phone":"Telefon de contact: :phone","Your order #:number on :shop was successfully placed":"Comanda ta cu numarul #:number de pe :shop a fost plasata cu succes","You have a new webshop order":"Ai o nouă comandă pe webshop","New user registration":"S-a inregistrat un nou utilizator","Before adjusting stock, select the product default supplier":"Înainte de a ajusta stocul, selecteaza furnizorul implicit al produsului","Cannot increment when quantity <= 0":"Nu se poate incrementa când cantitatea <= 0","Cannot decrement when quantity <= 0":"Nu se poate decrementa atunci când cantitatea <= 0","Order already has a :type invoice":"Comanda are deja o factura de tipul :type","Invalid item":"Articol invalid","Cannot update orders that are externally fulfilled":"Nu se pot actualiza comenzile care sunt îndeplinite extern","Order is already in this status":"Comanda are deja acest status","There are no differences on this order":"Nu există diferențe în această comandă","You are not allowed to issue payments without invoices":"Nu este permis sa emiti plati fara facturi","You are not allowed to issue payments on a cancelled invoice'":"Nu este permis sa emiti plati pentru o factura anulata","Sale is already paid":"Vânzarea este deja plătită","You cannot delete a paid order":"Nu poți șterge o comandă plătită","order details":"detaliile comenzii","Delivery Address":"Adresa de livrare","Disc.":"Disc.","M.U.":"U.M.","Product \/ Code":"Produs \/ Cod","registered in doc.":"înregistrat în doc.","received":"primit","U.P acquision":"P.U achiziţie","(no VAT)":"(fara TVA)","Val. acquision":"Val. achizitie","Val. VAT":"Val. TVA","(afferent)":"(aferent)","Info field":"Câmp informativ","additional":"adițional","piece":"buc","Total General":"Total General","Goods Receipt Note":"Nota de receptie a marfurilor","Unit":"Unitate","The undersigned, members of the reception committee, have received the material values provided by":"Subsemnatii, membri ai comitetului de recepție, au primit valorile materiale furnizate de","delegate":"delegat","based on the accompanying documents":"pe baza documentelor însoțitoare","consisting":"constând","car no.":"masina nr.","Optional field, usable in case of observations":"Câmp opțional, utilizabil în caz de observații","Reception committee members name and surname":"Numele și prenumele membrilor comisiei de recepție","Signature":"Semnătură","Manager name and surename":"Numele și prenumele managerului","Manager name and surname":"Numele și prenumele managerului","Reception comitee conclusions":"Concluziile comitetului de primire","Reception committee conclusions":"Concluziile comitetului de primire","Supplier\/carrier point of view":"Punct de vedere furnizor \/ transportator","Other mentions":"Alte mențiuni","The quantity determination was done by":"Determinarea cantității a fost făcută de","The quality determination was made by the sample":"Determinarea calității a fost făcută de eșantionul","no.":"nr.","Sender":"Expeditor","Companion":"Insotitor","Dispatch station":"Stație de expediere","Destination station":"Stația de destinație","Release date":"Data de lansare","Dispatch date":"Data expedierii","Arrival date":"Data sosirii","Supplier delegates, the carrier who participated in the reception":"Delegații furnizorului, curierul care a participat la recepție","ISBN":"ISBN","Total products":"Totalul produselor","Scale indicated weight":"Greutatea indicata pe cantar","Stock Removal":"Scoatere din stoc","Representative of":"Reprezentant al","Name and surname":"Nume si prenume","Identity card":"Card de identitate","TOTAL":"TOTAL","Reception participants":"Participanți la recepție","for Sale":"de vanzare","Emag API call for :action failed":"Apelul API Emag pentru :action a esuat","The action :action on url :url failed with the following error messages:":"Acțiunea :action catre url :url a eșuat cu următoarele mesaje de eroare","New :type callback from emag":"Un nou callback :type de la emag","New :type callback from emag for id :id":"Un nou callback :type de la emag pentru id-ul :id","Missing app product for emag order :id":"Lipseste produsul din aplicatie pentru comanda emag :id","Product :product":"Produsul :product","Offer mismatch for eMag order :id":"Nepotrivirea ofertei pentru comanda eMag :id","For product :code":"Pentru produsul :code","External part number :code":"Cod extern :code","Part number :code":"Cod :code","New eMag order (id: :id) with vouchers:":"Comandă nouă eMag (id: :id) cu vouchere:",":name, value :value":":name, valoare :value","New eMag order (id: :id) with vouchers":"Comandă nouă eMag (id: :id) cu vouchere","Shipping price mismatch for eMag order :order":"Nepotrivirea prețului de expediere pentru comanda eMag :order","Product price mismatch for eMag order :order":"Nepotrivirea prețului produsului pentru comanda eMag :order","Offer with id :id already exists":"Există deja o oferta cu id-ul :id","An offer for the pnk :pnk already exists":"Există deja o ofertă pentru pnk :pnk","An offer with product id :id already exists and needs eMag intervention":"O ofertă cu id-ul produsului :id există deja și necesită intervenția eMag","No order with id :id found":"Nu s-a găsit nicio comandă cu id-ul :id","Write Review For":"Scrie o recenzie pentru","Don't know what to write about?":"Nu știi despre ce să scrii?","Tell us what you like about the purchased product.":"Spune-ne ce iti place la produsul achizitionat.","Does it live up to your expectations?":"Se ridică la nivelul așteptărilor tale?","Are you satisfied with the value for money?":"Esti mulțumit de raportul calitate-preț?","Would you recommend it to others?":"L-ai recomanda altora?","Remove from favorites":"Elimina din favorite","make default":"fă implicit","delivery":"livrare","billing":"facturare","Not Paid":"Neplatit","Requires Action":"Necesită acțiune","verify":"verifica","Verify":"Verifica","confirmation":"confirmare","No addresses defined":"Nu există adrese definite","Part":"Cod","Complete the payment":"Finaliza plata","An extra confirmation is needed to process your payment":"Este necesară o confirmare suplimentară pentru a procesa plata","Order is already paid":"Comanda este deja plătită","Your payment for this order is still processing":"Plata dvs. pentru această comandă este în curs de procesare","Please find the invoice attached":"Găsești factura în atașament","Invoice issued for order #:number":"Factura emisa pentru comanda #:number","Your order #:number":"Comanda dvs #:number","Payment via :type was successful for order :number":"Plata prin :type a reușit pentru comanda :number","A payment was received for order #:number (:total :currency)":"S-a inregistrat plata pentru comanda :number (:total :currency)","Insufficient stock for :product, only :left left":"Stoc insuficient pentru :product, numai :left ramas","Registration is restricted for the moment, please return soon":"Înregistrarea este restricționată pentru moment, te rugăm să revii în curând","Hello :name":"Salut :name","Thank you for creating an account on :shop":"Îți mulțumim pentru că ți-ai creat cont pe :shop","We hope that you will enjoy our products":"Sperăm că te vei bucura de produsele noastre, așa cum ne bucurăm și noi de ele :)","Go to login":"Intră în cont","If you are having trouble clicking the action button, copy and paste the URL below into your web browser":"Daca întampini dificultati in a accesa butonul, copiază adresa de mai jos in browser-ul tau","Payment via :type was successful for order #:number, amount :amount :currency":"Plata prin :type a reușit pentru comanda #:number, suma :amount :currency","View order":"Vezi comanda","Click bellow to view your order and finalize the payment":"Poti sa dai click mai jos pentru a vizualiza comanda si a finaliza plata","A new account was created : :name":"Un cont nou a fost creat: :name","from: :company":"de la: :company","To manage the account please click the link below":"Pentru a gestiona contul, acceseaza linkul de mai jos","View account":"Vezi contul","Details for delivering your order":"Detalii pentru livrarea comenzii","You're just a few steps away from finalizing your order":"Ești la doar câțiva pași distanță de finalizarea comenzii","If you already have an account click":"Dacă ai deja un cont, click","to go to the login page":"pentru a accesa pagina de autentificare","Your account":"Contul tau","I want to create an account":"Vreau să imi creez cont","Company Name":"Numele Companiei","Ship to a different addressed":"Comanda ta #:number a fost plasată cu succes","Skip":"Sari","New order #:number from :channel for :total :currency":"Comanda noua #:number din :channel in valoare de :total :currency","fast-checkout":"checkout-rapid","Fast Checkout":"Checkout Rapid","The action :action failed with the following error code: :code":"Acțiunea :action a eșuat cu următorul cod de eroare: :code","Reported error message: :message":"Mesaj de eroare raportat: :message","Request payload: :payload":"Payload Request: :payload","API call for :action failed":"Apelul API pentru :action a esuat","Notification, :title":"Notificare, :title","New Comment Tag":"Etichetare noua in comentarii","You were just tagged":"Tocmai ai fost etichetat","Comment Tag Notification":"Notificare etichetare in comentariu","Your password will expire soon":"Parola ta va expira curand","You've got :days days left to change it":"Mai ai :days zile ramase pentru a o schimba","You've got until tomorrow to change it":"Mai ai timp pana maine pentru a o schimba","You must change it today":"Trebuie schimbata astazi","Welcome!":"Bine ai venit!","Task Reminder":"Memento Task","This is a reminder for the following task:":"Acesta este un memento pentru următorul task:","View Task":"Vezi task-ul","Task :description":"Task :description","You cannot delete the default address":"Nu poți șterge adresa implicită","You cannot delete an address that you have previously used":"Nu poți șterge o adresă pe care ai folosit-o anterior","You cannot edit this company, please contact support":"Nu poți edita această companie, te rugăm să contactezi echipa de asistenta","Your cart is empty":"Coșul tau este gol","You cannot delete the default card":"Nu poți șterge cardul implicit","You cannot edit this :model, please contact support":"Nu poți edita acest :model, te rugăm să contactezi echipa de asistență","Company information":"Informațiile companiei","Billing address":"Adresa de facturare","Free":"Gratuit","Get to know us":"Cunoaște-ne","Registration successful":"Inregistrare realizata","Your account needs to be activated before you can login":"Contul trebuie să fie activat înainte de a te putea autentifica","You will receive a confirmation email upon approval":"Vei primi un e-mail de confirmare după aprobare","Thank you!":"Iti multumim!","Frequently asked questions":"Intrebari frecvente","Edit address":"Editeaza adresa","Edit company":"Editeaza compania","Pay by Card":"Plătește cu Card","Click":"Click","Not Implemented":"Neimplementat","Approve":"Aproba","Disapprove":"Dezaproba","for \":query\"":"pentru \":query\"","Review was rejected":"Această recenzie a fost respinsă","Review updated for :product":"Recenzie actualizata pentru produsul :product","New review submitted for :product":"Recenzie adaugata pt produsul :product","A product review was updated by :person:":"Recenzie de produs actualizata de :person:","A new product review was posted by :person:":"Recenzie de produs adaugata de :person:","Your review for :product was :approval":"Recenzia ta pentru produsul :product a fost :approval","If you want, you can revise your review here:":"Daca vrei, poti actualiza recenzia ta aici:","Review :approval":"Recenzie :approval","approved":"aprobata","rejected":"respinsa","Terms of Use":"Termeni si conditii","Similar products":"Produse similare","Enter your email to reset your password":"Introdu adresa ta de e-mail pentru a iti reseta parola","We'll send you an email with the instructions to follow":"Iti vom trimite un e-mail cu instrucțiunile de urmat","similar-products":"produse-similare","description":"descriere","characteristics":"caracteristici","about-this-brand":"despre-acest-brand","not in stock":"nu este în stoc","Not In Stock":"Nu este în stoc","Hold tight, your order is being processed. We will email you when your order succeeds":"Ține-te bine, comanda ta este în curs de procesare. Iți vom trimite un e-mail când comanda va reuși","Pay by Wire Transfer":"Plătește prin Transfer Bancar","Grand Total":"Total General","A cancellation request was received for order #:id":"Am primit o cerere de anulare pentru comanda #:id","Cancellation request for order #:id":"Cerere de anulare pentru comanda #:id","Please let us know if you are able to cancel the order":"Va rugam sa ne comunicati daca puteti efectua anularea","Cancellation request for emag order with id :id":"Cerere de anulare pentru comanda emag cu id :id","An emag order cancellation request was received":"Am primit cerere de anulare pentru o comanda emag","Ensure the order may still be cancellable":"Verifica posibilitatea de anulare a comenzii","and optionally contact the client":"si eventual contacteaza clientul","You may access the corresponding sale":"Poti accesa vanzarea corespondenta comenzii","using the button below":"dand click pe butonul de mai jos","If you need to change your email please contact us":"Dacă dorești schimbarea emailului te rugăm contactează-ne","Awb status was updated to \":status\" for emag order #:id":"Statusul Awb pentru comanda emag #:id a fost actualizat in \":status\"","Awb status update for emag order #:id":"Actualizare status awb pentru comanda emag #:id","You just asked for a password reset. To complete the process click the button below.":"Tocmai ai solicitat resetarea parolei. Pentru a finaliza procesul, accesează butonul de mai jos.","Set your new password":"Setează noua parolă","The company already exists in our system. Please contact us about that":"Compania există deja în sistemul nostru. Te rugăm să ne contactezi referitor la această situație","Secure payments with":"Plătește în siguranță prin","We will create an account for your future orders":"Iți vom crea un cont pentru comenzile tale viitoare","Go back to the store":"Întoarce-te în magazin","Added":"Adăugat","A payment method was already set for this order":"O metodă de plată a fost deja stabilită pentru această comandă","Street line 1":"Nume stradă, număr etc.","Street line 2":"Apartament, complex, unitate etc. (opțional)","A new account was created: :name":"A fost creat un cont nou: :name"} \ No newline at end of file diff --git a/resources/lang/ro/auth.php b/resources/lang/ro/auth.php index 93df31304..fbe4355c5 100644 --- a/resources/lang/ro/auth.php +++ b/resources/lang/ro/auth.php @@ -1,6 +1,18 @@ 'Datele de identificare nu pot fi confirmate.', - 'throttle' => 'Prea multe încercari de intrare în cont. Poți încerca din nou peste :seconds secunde.', + 'failed' => 'Datele de identificare nu pot fi confirmate.', + 'password' => 'Parola introdusă, nu este corectă.', + 'throttle' => 'Prea multe încercări de intrare în cont. Puteți încerca din nou peste :seconds secunde.', ]; diff --git a/resources/lang/ro/pagination.php b/resources/lang/ro/pagination.php index cdce621e6..9065660c3 100644 --- a/resources/lang/ro/pagination.php +++ b/resources/lang/ro/pagination.php @@ -1,8 +1,17 @@ '« Înapoi', +return [ 'next' => 'Înainte »', - + 'previous' => '« Înapoi', ]; diff --git a/resources/lang/ro/passwords.php b/resources/lang/ro/passwords.php index 97ea8c41b..3eb3849d1 100644 --- a/resources/lang/ro/passwords.php +++ b/resources/lang/ro/passwords.php @@ -1,9 +1,20 @@ 'Parola trebuie să fie de cel puțin șase caractere și să se potrivească cu cea de confirmare.', - 'reset' => 'Parola a fost resetată!', - 'sent' => 'Am trimis un e-mail cu link-ul de resetare a parolei!', - 'token' => 'Codul de resetare a parolei este greșit.', - 'user' => 'Nu există niciun user cu această adresă de e-mail.', + 'reset' => 'Parola a fost resetată!', + 'sent' => 'Am trimis un e-mail cu link-ul de resetare a parolei!', + 'throttled' => 'Vă rugăm să așteptați înainte de a încerca din nou.', + 'token' => 'Codul de resetare a parolei este greșit.', + 'user' => 'Nu există niciun utilizator cu această adresă de e-mail.', ]; diff --git a/resources/lang/ro/validation-inline.php b/resources/lang/ro/validation-inline.php new file mode 100644 index 000000000..4f6606590 --- /dev/null +++ b/resources/lang/ro/validation-inline.php @@ -0,0 +1,131 @@ + 'Acest câmp trebuie acceptat.', + 'active_url' => 'Aceasta nu este o adresă URL validă.', + 'after' => 'Aceasta trebuie să fie o dată după :date.', + 'after_or_equal' => 'Aceasta trebuie să fie o dată după sau egală cu :date.', + 'alpha' => 'Acest câmp poate conține numai litere.', + 'alpha_dash' => 'Acest câmp poate conține numai litere, numere, liniuțe și sublinieri.', + 'alpha_num' => 'Acest câmp poate conține numai litere și numere.', + 'array' => 'Acest câmp trebuie să fie o matrice.', + 'attached' => 'Acest câmp este deja atașat.', + 'before' => 'Aceasta trebuie să fie o dată înainte de :date.', + 'before_or_equal' => 'Aceasta trebuie să fie o dată înainte sau egală cu :date.', + 'between' => [ + 'array' => 'This content must have between :min and :max items.', + 'file' => 'This file must be between :min and :max kilobytes.', + 'numeric' => 'This value must be between :min and :max.', + 'string' => 'This string must be between :min and :max characters.', + ], + 'boolean' => 'Acest câmp trebuie să fie adevărat sau fals.', + 'confirmed' => 'Confirmarea nu se potrivește.', + 'date' => 'Aceasta nu este o dată validă.', + 'date_equals' => 'Aceasta trebuie să fie o dată egală cu :date.', + 'date_format' => 'Acest lucru nu se potrivește cu formatul :format.', + 'different' => 'Această valoare trebuie să fie diferită de :other.', + 'digits' => 'Acest lucru trebuie să fie :digits cifre.', + 'digits_between' => 'Aceasta trebuie să fie între :min și :max de cifre.', + 'dimensions' => 'Această imagine are dimensiuni nevalide.', + 'distinct' => 'Acest câmp are o valoare duplicată.', + 'email' => 'Aceasta trebuie să fie o adresă de e-mail validă.', + 'ends_with' => 'Aceasta trebuie să se încheie cu una dintre următoarele: :values.', + 'exists' => 'Valoarea selectată este nevalidă.', + 'file' => 'Conținutul trebuie să fie un fișier.', + 'filled' => 'Acest câmp trebuie să aibă o valoare.', + 'gt' => [ + 'array' => 'The content must have more than :value items.', + 'file' => 'The file size must be greater than :value kilobytes.', + 'numeric' => 'The value must be greater than :value.', + 'string' => 'The string must be greater than :value characters.', + ], + 'gte' => [ + 'array' => 'The content must have :value items or more.', + 'file' => 'The file size must be greater than or equal :value kilobytes.', + 'numeric' => 'The value must be greater than or equal :value.', + 'string' => 'The string must be greater than or equal :value characters.', + ], + 'image' => 'Asta trebuie să fie o imagine.', + 'in' => 'Valoarea selectată este nevalidă.', + 'in_array' => 'Această valoare nu există în :other.', + 'integer' => 'Acesta trebuie să fie un număr întreg.', + 'ip' => 'Aceasta trebuie să fie o adresă IP validă.', + 'ipv4' => 'Aceasta trebuie să fie o adresă IPv4 validă.', + 'ipv6' => 'Aceasta trebuie să fie o adresă IPv6 validă.', + 'json' => 'Acesta trebuie să fie un șir JSON valid.', + 'lt' => [ + 'array' => 'The content must have less than :value items.', + 'file' => 'The file size must be less than :value kilobytes.', + 'numeric' => 'The value must be less than :value.', + 'string' => 'The string must be less than :value characters.', + ], + 'lte' => [ + 'array' => 'The content must not have more than :value items.', + 'file' => 'The file size must be less than or equal :value kilobytes.', + 'numeric' => 'The value must be less than or equal :value.', + 'string' => 'The string must be less than or equal :value characters.', + ], + 'max' => [ + 'array' => 'The content may not have more than :max items.', + 'file' => 'The file size may not be greater than :max kilobytes.', + 'numeric' => 'The value may not be greater than :max.', + 'string' => 'The string may not be greater than :max characters.', + ], + 'mimes' => 'Acesta trebuie să fie un fișier de tip: :values.', + 'mimetypes' => 'Acesta trebuie să fie un fișier de tip: :values.', + 'min' => [ + 'array' => 'The value must have at least :min items.', + 'file' => 'The file size must be at least :min kilobytes.', + 'numeric' => 'The value must be at least :min.', + 'string' => 'The string must be at least :min characters.', + ], + 'multiple_of' => 'Valoarea trebuie să fie un multiplu de :value', + 'not_in' => 'Valoarea selectată este nevalidă.', + 'not_regex' => 'Acest format este nevalid.', + 'numeric' => 'Acesta trebuie să fie un număr.', + 'password' => 'Parola este incorectă.', + 'present' => 'Acest câmp trebuie să fie prezent.', + 'prohibited' => 'Acest câmp este interzis.', + 'prohibited_if' => 'Acest câmp este interzis atunci când :other este :value.', + 'prohibited_unless' => 'Acest câmp este interzis, cu excepția cazului în care :other este în :values.', + 'regex' => 'Acest format este nevalid.', + 'relatable' => 'Este posibil ca acest câmp să nu fie asociat cu această resursă.', + 'required' => 'Acest câmp este obligatoriu.', + 'required_if' => 'Acest câmp este necesar atunci când :other este :value.', + 'required_unless' => 'Acest câmp este necesar, cu excepția cazului în :other este în :values.', + 'required_with' => 'Acest câmp este necesar atunci când :values este prezent.', + 'required_with_all' => 'Acest câmp este necesar atunci când :values sunt prezente.', + 'required_without' => 'Acest câmp este necesar atunci când :values nu este prezent.', + 'required_without_all' => 'Acest câmp este necesar atunci când nici unul dintre :values sunt prezente.', + 'same' => 'Valoarea acestui câmp trebuie să se potrivească cu cea de la :other.', + 'size' => [ + 'array' => 'The content must contain :size items.', + 'file' => 'The file size must be :size kilobytes.', + 'numeric' => 'The value must be :size.', + 'string' => 'The string must be :size characters.', + ], + 'starts_with' => 'Aceasta trebuie să înceapă cu una dintre următoarele: :values.', + 'string' => 'Asta trebuie să fie o sfoară.', + 'timezone' => 'Aceasta trebuie să fie o zonă validă.', + 'unique' => 'Acest lucru a fost deja luat.', + 'uploaded' => 'Acest lucru nu a reușit să încarce.', + 'url' => 'Acest format este nevalid.', + 'uuid' => 'Acesta trebuie să fie un UUID valid.', + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + 'attributes' => [], +]; diff --git a/resources/lang/ro/validation.php b/resources/lang/ro/validation.php index 4f4c1bda9..c84918b75 100644 --- a/resources/lang/ro/validation.php +++ b/resources/lang/ro/validation.php @@ -1,120 +1,131 @@ 'Câmpul trebuie să fie acceptat.', - 'active_url' => 'Câmpul nu este un URL valid.', - 'after' => 'Câmpul trebuie să fie o dată după :date.', - 'after_or_equal' => 'Câmpul trebuie să fie o dată egală sau mai noua cu :date.', - 'alpha' => 'Câmpul poate conține doar litere.', - 'alpha_dash' => 'Câmpul poate conține doar litere, numere și cratime.', - 'alpha_num' => 'Câmpul poate conține doar litere și numere.', - 'array' => 'Câmpul trebuie să fie un array.', - 'before' => 'Câmpul trebuie să fie o dată înainte de :date.', - 'before_or_equal' => 'Câmpul trebuie să fie o dată cel mult egală cu :date.', +return [ + 'accepted' => 'Câmpul :attribute trebuie să fie acceptat.', + 'active_url' => 'Câmpul :attribute nu este un URL valid.', + 'after' => 'Câmpul :attribute trebuie să fie o dată după :date.', + 'after_or_equal' => 'Câmpul :attribute trebuie să fie o dată ulterioară sau egală cu :date.', + 'alpha' => 'Câmpul :attribute poate conține doar litere.', + 'alpha_dash' => 'Câmpul :attribute poate conține doar litere, numere și cratime.', + 'alpha_num' => 'Câmpul :attribute poate conține doar litere și numere.', + 'array' => 'Câmpul :attribute trebuie să fie un array.', + 'attached' => 'Acest :attribute este deja atașat.', + 'before' => 'Câmpul :attribute trebuie să fie o dată înainte de :date.', + 'before_or_equal' => 'Câmpul :attribute trebuie să fie o dată înainte sau egală cu :date.', 'between' => [ - 'numeric' => 'Câmpul trebuie să fie între :min și :max.', - 'file' => 'Fisierul trebuie să fie între :min și :max kiloocteți.', - 'string' => 'Câmpul trebuie să fie între :min și :max caractere.', - 'array' => 'Câmpul trebuie să aibă între :min și :max elemente.', + 'array' => 'Câmpul :attribute trebuie să aibă între :min și :max elemente.', + 'file' => 'Câmpul :attribute trebuie să fie între :min și :max kiloocteți.', + 'numeric' => 'Câmpul :attribute trebuie să fie între :min și :max.', + 'string' => 'Câmpul :attribute trebuie să fie între :min și :max caractere.', ], - 'boolean' => 'Câmpul trebuie să fie adevărat sau fals.', - 'confirmed' => 'Confirmarea nu se potrivește.', - 'date' => 'Câmpul nu este o dată validă.', - 'date_equals' => 'Câmpul trebuie să fie o dată egală cu :date.', - 'date_format' => 'Câmpul trebuie să fie în formatul :format.', - 'different' => 'Câmpurile și :other trebuie să fie diferite.', - 'digits' => 'Câmpul trebuie să aibă :digits cifre.', - 'digits_between' => 'Câmpul trebuie să aibă între :min și :max cifre.', - 'dimensions' => 'Câmpul are dimensiuni invalide.', - 'distinct' => 'Câmpul este duplicat.', - 'email' => 'Câmpul trebuie să fie o adresă de e-mail validă.', - 'ends_with' => 'Câmpul trebuie să se termine intr-una din: :values', - 'exists' => 'Câmpul selectat nu este valid.', - 'file' => 'Câmpul trebuie să fie fisier.', - 'filled' => 'Câmpul trebuie completat.', + 'boolean' => 'Câmpul :attribute trebuie să fie adevărat sau fals.', + 'confirmed' => 'Confirmarea :attribute nu se potrivește.', + 'date' => 'Câmpul :attribute nu este o dată validă.', + 'date_equals' => 'Aceasta :attribute trebuie să fie o dată egală cu :date.', + 'date_format' => 'Câmpul :attribute trebuie să fie în formatul :format.', + 'different' => 'Câmpurile :attribute și :other trebuie să fie diferite.', + 'digits' => 'Câmpul :attribute trebuie să aibă :digits cifre.', + 'digits_between' => 'Câmpul :attribute trebuie să aibă între :min și :max cifre.', + 'dimensions' => 'Câmpul :attribute are dimensiuni de imagine nevalide.', + 'distinct' => 'Câmpul :attribute are o valoare duplicat.', + 'email' => 'Câmpul :attribute trebuie să fie o adresă de e-mail validă.', + 'ends_with' => 'Câmpul :attribute trebuie să se încheie cu una din următoarele valori: :values', + 'exists' => 'Câmpul :attribute selectat nu este valid.', + 'file' => 'Câmpul :attribute trebuie să fie un fișier.', + 'filled' => 'Câmpul :attribute trebuie completat.', 'gt' => [ - 'numeric' => 'Câmpul trebuie să fie mai mare de :value.', - 'file' => 'Câmpul trebuie să fie mai mare de :value kiloocteți.', - 'string' => 'Câmpul trebuie să fie mai mare de :value caractere.', - 'array' => 'Câmpul trebuie să aibă mai mult de :value elemente.', + 'array' => 'Câmpul :attribute trebuie să aibă mai multe de :value elemente.', + 'file' => 'Câmpul :attribute trebuie să fie mai mare de :value kilobyți.', + 'numeric' => 'Câmpul :attribute trebuie să fie mai mare de :value.', + 'string' => 'Câmpul :attribute trebuie să fie mai mare de :value caractere.', ], 'gte' => [ - 'numeric' => 'Câmpul trebuie să fie mai mare sau egal cu :value.', - 'file' => 'Câmpul trebuie să fie mai mare sau egal cu :value kiloocteți.', - 'string' => 'Câmpul trebuie să aibă cel putin :value caractere.', - 'array' => 'Câmpul trebuie să aibă cel putin :value elemente.', + 'array' => 'Câmpul :attribute trebuie să aibă :value elemente sau mai multe.', + 'file' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value kilobyți.', + 'numeric' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value.', + 'string' => 'Câmpul :attribute trebuie să fie mai mare sau egal cu :value caractere.', ], - 'image' => 'Câmpul trebuie să fie o imagine.', - 'in' => 'Câmpul selectat nu este valid.', - 'in_array' => 'Valoare nu exista in lista :other.', - 'integer' => 'Câmpul trebuie să fie un număr întreg.', - 'ip' => 'Câmpul trebuie să fie o adresă IP validă.', - 'ipv4' => 'Câmpul trebuie să fie adresă IPv4 validă.', - 'ipv6' => 'Câmpul trebuie să fie adresă IPv6 validă.', - 'json' => 'Câmpul trebuie să fie un string JSON valid.', + 'image' => 'Câmpul :attribute trebuie să fie o imagine.', + 'in' => 'Câmpul :attribute selectat nu este valid.', + 'in_array' => 'Câmpul :attribute nu există în :other.', + 'integer' => 'Câmpul :attribute trebuie să fie un număr întreg.', + 'ip' => 'Câmpul :attribute trebuie să fie o adresă IP validă.', + 'ipv4' => 'Câmpul :attribute trebuie să fie o adresă IPv4 validă.', + 'ipv6' => 'Câmpul :attribute trebuie să fie o adresă IPv6 validă.', + 'json' => 'Câmpul :attribute trebuie să fie un string JSON valid.', 'lt' => [ - 'numeric' => 'Câmpul trebuie să fie mai mic decat :value.', - 'file' => 'Câmpul trebuie să fie mai mic de :value kiloocteți.', - 'string' => 'Câmpul trebuie să fie mai scurt de :value caractere.', - 'array' => 'Câmpul trebuie să aibă mai putin de :value elemente.', + 'array' => 'Câmpul :attribute trebuie să aibă mai puțin de :value elemente.', + 'file' => 'Câmpul :attribute trebuie să fie mai mic de :value kilobyți.', + 'numeric' => 'Câmpul :attribute trebuie să fie mai mic de :value.', + 'string' => 'Câmpul :attribute trebuie să fie mai mic de :value caractere.', ], 'lte' => [ - 'numeric' => 'Câmpul trebuie să fie mai mic sau egal cu :value.', - 'file' => 'Câmpul trebuie să aibă cel mult :value kiloocteți.', - 'string' => 'Câmpul trebuie să aibă cel mult :value caractere.', - 'array' => 'Câmpul trebuie să aibă cel mult :value elemente.', + 'array' => 'Câmpul :attribute trebuie să aibă :value elemente sau mai puține.', + 'file' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value kilobyți.', + 'numeric' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value.', + 'string' => 'Câmpul :attribute trebuie să fie mai mic sau egal cu :value caractere.', ], 'max' => [ - - 'numeric' => 'Câmpul nu poate fi mai mare de :max.', - 'file' => 'Câmpul nu poate avea mai mult de :max kiloocteți.', - 'string' => 'Câmpul nu poate avea mai mult de :max caractere.', - 'array' => 'Câmpul nu poate avea mai mult de :max elemente.', + 'array' => 'Câmpul :attribute nu poate avea mai mult de :max elemente.', + 'file' => 'Câmpul :attribute nu poate avea mai mult de :max kiloocteți.', + 'numeric' => 'Câmpul :attribute nu poate fi mai mare de :max.', + 'string' => 'Câmpul :attribute nu poate avea mai mult de :max caractere.', ], - 'mimes' => 'Câmpul trebuie să fie un fișier de tipul: :values.', + 'mimes' => 'Câmpul :attribute trebuie să fie un fișier de tipul: :values.', + 'mimetypes' => 'Câmpul :attribute trebuie să fie un fișier de tipul: :values.', 'min' => [ - 'numeric' => 'Câmpul nu poate fi mai mic de :min.', - 'file' => 'Câmpul trebuie să aibă cel puțin :min kiloocteți.', - 'string' => 'Câmpul trebuie să aibă cel puțin :min caractere.', - 'array' => 'Câmpul trebuie să aibă cel puțin :min elemente.', + 'array' => 'Câmpul :attribute trebuie să aibă cel puțin :min elemente.', + 'file' => 'Câmpul :attribute trebuie să aibă cel puțin :min kiloocteți.', + 'numeric' => 'Câmpul :attribute nu poate fi mai mic de :min.', + 'string' => 'Câmpul :attribute trebuie să aibă cel puțin :min caractere.', ], - 'not_in' => 'Câmpul selectat nu este valid.', - 'not_regex' => 'Câmpul nu are un format valid.', - 'numeric' => 'Câmpul trebuie să fie un număr.', - 'present' => 'The field must be present.', - 'regex' => 'Câmpul nu are un format valid.', - 'required' => 'Câmpul este obligatoriu.', - 'required_if' => 'Câmpul este necesar când :other este :value.', - 'required_unless' => 'Câmpul este obligatoriu execeptand daca :other este intre valorile :values.', - 'required_with' => 'Câmpul este necesar când există :values.', - 'required_with_all' => 'Câmpul este necesar când există :values.', - 'required_without' => 'Câmpul este necesar când nu există :values.', - 'required_without_all' => 'Câmpul este necesar când niciunul(una) dintre :values nu există.', - 'same' => 'Câmpul și :other trebuie să fie identice.', + 'multiple_of' => ':attribute trebuie să fie un multiplu de :value', + 'not_in' => 'Câmpul :attribute selectat nu este valid.', + 'not_regex' => 'Câmpul :attribute nu are un format valid.', + 'numeric' => 'Câmpul :attribute trebuie să fie un număr.', + 'password' => 'Parola este greșită.', + 'present' => 'Câmpul :attribute trebuie să fie prezent.', + 'prohibited' => 'Câmpul :attribute este interzis.', + 'prohibited_if' => 'Câmpul :attribute este interzis atunci când :other este :value.', + 'prohibited_unless' => 'Câmpul :attribute este interzis, cu excepția cazului în care :other este în :values.', + 'regex' => 'Câmpul :attribute nu are un format valid.', + 'relatable' => 'Acest :attribute nu poate fi asociat cu această resursă.', + 'required' => 'Câmpul :attribute este obligatoriu.', + 'required_if' => 'Câmpul :attribute este necesar când :other este :value.', + 'required_unless' => 'Câmpul :attribute este necesar, cu excepția cazului :other este in :values.', + 'required_with' => 'Câmpul :attribute este necesar când există :values.', + 'required_with_all' => 'Câmpul :attribute este necesar când există :values.', + 'required_without' => 'Câmpul :attribute este necesar când nu există :values.', + 'required_without_all' => 'Câmpul :attribute este necesar când niciunul(una) dintre :values nu există.', + 'same' => 'Câmpul :attribute și :other trebuie să fie identice.', 'size' => [ - 'numeric' => 'Câmpul trebuie să fie :size.', - 'file' => 'Câmpul trebuie să aibă :size kiloocteți.', - 'string' => 'Câmpul trebuie să aibă :size caractere.', - 'array' => 'Câmpul trebuie să aibă :size elemente.', + 'array' => 'Câmpul :attribute trebuie să aibă :size elemente.', + 'file' => 'Câmpul :attribute trebuie să aibă :size kiloocteți.', + 'numeric' => 'Câmpul :attribute trebuie să fie :size.', + 'string' => 'Câmpul :attribute trebuie să aibă :size caractere.', ], - 'starts_with' => 'Câmpul trebuie să inceapă cu una din valorile: :values', - 'string' => 'Câmpul trebuie să fie string.', - 'timezone' => 'Câmpul trebuie să fie un fus orar valid.', - 'unique' => 'Câmpul a fost deja folosit.', - 'uploaded' => 'Câmpul nu a putut fi uploadat.', - 'url' => 'Câmpul nu este un URL valid.', - 'nin' => 'CNP invalid', - 'uuid' => 'Câmpul nu este un UUID valid.', + 'starts_with' => 'Acesta :attribute trebuie să înceapă cu una din următoarele: :values', + 'string' => 'Câmpul :attribute trebuie să fie string.', + 'timezone' => 'Câmpul :attribute trebuie să fie un fus orar valid.', + 'unique' => 'Câmpul :attribute a fost deja folosit.', + 'uploaded' => 'Câmpul :attribute nu a reușit încărcarea.', + 'url' => 'Câmpul :attribute nu este un URL valid.', + 'uuid' => 'Acesta :attribute trebuie să fie un cod UUID valid.', 'custom' => [ - 'attribute-name' => [ - 'rule-name' => 'custom-message', ], ], - 'attributes' => [ - - ], - + 'attributes' => [], ]; diff --git a/resources/lang/ru/auth.php b/resources/lang/ru/auth.php index 0d3be66da..c8866d94c 100644 --- a/resources/lang/ru/auth.php +++ b/resources/lang/ru/auth.php @@ -1,19 +1,18 @@ 'Эти учетные данные не совпадают не с одной нашей записью.', - 'throttle' => 'Слишком много попыток входа. Пожалуйста попробуйте снова через :seconds секунд.', +/* +|-------------------------------------------------------------------------- +| Authentication Language Lines +|-------------------------------------------------------------------------- +| +| The following language lines are used during authentication for various +| messages that we need to display to the user. You are free to modify +| these language lines according to your application's requirements. +| +*/ +return [ + 'failed' => 'Неверное имя пользователя или пароль.', + 'password' => 'Неверный пароль.', + 'throttle' => 'Слишком много попыток входа. Пожалуйста, попробуйте еще раз через :seconds секунд.', ]; diff --git a/resources/lang/ru/pagination.php b/resources/lang/ru/pagination.php index 5a57dc470..21c5783d5 100644 --- a/resources/lang/ru/pagination.php +++ b/resources/lang/ru/pagination.php @@ -1,19 +1,17 @@ '« Предыщущая', - 'next' => 'Следующая »', +/* +|-------------------------------------------------------------------------- +| Pagination Language Lines +|-------------------------------------------------------------------------- +| +| The following language lines are used by the paginator library to build +| the simple pagination links. You are free to change them to anything +| you want to customize your views to better match your application. +| +*/ +return [ + 'next' => 'Вперёд »', + 'previous' => '« Назад', ]; diff --git a/resources/lang/ru/passwords.php b/resources/lang/ru/passwords.php index 72bb74d4b..8c08a6df8 100644 --- a/resources/lang/ru/passwords.php +++ b/resources/lang/ru/passwords.php @@ -1,22 +1,20 @@ 'Ваш пароль был сброшен!', - 'sent' => 'Мы отправили вам ссылку для сброса пароля!', - 'throttled' => 'Пожалуйста подождите перед следующей попыткой.', - 'token' => 'Этот токен сброса пароля недействителен.', - 'user' => 'Пользователь с этим email адресом не найден.', - + 'sent' => 'Ссылка на сброс пароля была отправлена!', + 'throttled' => 'Пожалуйста, подождите перед повторной попыткой.', + 'token' => 'Ошибочный код сброса пароля.', + 'user' => 'Не удалось найти пользователя с указанным электронным адресом.', ]; diff --git a/resources/lang/ru/validation-inline.php b/resources/lang/ru/validation-inline.php new file mode 100644 index 000000000..d8c4afb7a --- /dev/null +++ b/resources/lang/ru/validation-inline.php @@ -0,0 +1,131 @@ + 'Должно быть принято.', + 'active_url' => 'Недействительный URL.', + 'after' => 'Дата должна быть больше :date.', + 'after_or_equal' => 'Дата должна быть больше или равняться :date.', + 'alpha' => 'Здесь могут быть только буквы.', + 'alpha_dash' => 'Здесь могут быть только буквы, цифры, дефис и нижнее подчеркивание.', + 'alpha_num' => 'Здесь могут быть только буквы и цифры.', + 'array' => 'Здесь должен быть массив.', + 'attached' => 'Уже прикреплено.', + 'before' => 'Дата здесь должна быть раньше :date.', + 'before_or_equal' => 'Дата здесь должна быть раньше или равняться :date.', + 'between' => [ + 'array' => 'Количество элементов должно быть между :min и :max.', + 'file' => 'Размер файла должен быть между :min и :max Килобайт(а).', + 'numeric' => 'Значение должно быть между :min и :max.', + 'string' => 'Количество символов должно быть между :min и :max.', + ], + 'boolean' => 'Поле должно иметь значение логического типа.', + 'confirmed' => 'Не совпадает с подтверждением.', + 'date' => 'Не является датой.', + 'date_equals' => 'Дата должна быть равной :date.', + 'date_format' => 'Не соответствует формату :format.', + 'different' => 'Значение должно отличаться от :other', + 'digits' => 'Длина должна быть :digits.', + 'digits_between' => 'Длина должна быть между :min и :max.', + 'dimensions' => 'Изображение имеет недопустимые размеры.', + 'distinct' => 'Поле содержит повторяющееся значение.', + 'email' => 'Электронный адрес должен быть действительным.', + 'ends_with' => 'Должно заканчиваться одним из следующих значений: :values', + 'exists' => 'Выбранное значение некорректно.', + 'file' => 'Содержимое должно быть файлом.', + 'filled' => 'Обязательно для заполнения.', + 'gt' => [ + 'array' => 'Количество элементов должно быть больше :value.', + 'file' => 'Размер файла должен быть больше :value Килобайт(а).', + 'numeric' => 'Значение должно быть больше :value.', + 'string' => 'Количество символов должно быть больше :value.', + ], + 'gte' => [ + 'array' => 'Количество элементов должно быть :value или больше.', + 'file' => 'Размер файла должен быть :value Килобайт(а) или больше.', + 'numeric' => 'Значение должно быть :value или больше.', + 'string' => 'Количество символов должно быть :value или больше.', + ], + 'image' => 'Здесь должно быть изображение.', + 'in' => 'Выбранное значение ошибочно.', + 'in_array' => 'Значение не существует в :other.', + 'integer' => 'Должно быть целое число.', + 'ip' => 'Должен быть действительный IP-адрес.', + 'ipv4' => 'Должен быть действительный IPv4-адрес.', + 'ipv6' => 'Должен быть действительный IPv6-адрес.', + 'json' => 'Должно быть JSON строкой.', + 'lt' => [ + 'array' => 'Количество элементов должно быть меньше :value.', + 'file' => 'Размер файла должен быть меньше :value Килобайт(а).', + 'numeric' => 'Значение должно быть меньше :value.', + 'string' => 'Количество символов должно быть меньше :value.', + ], + 'lte' => [ + 'array' => 'Количество элементов должно быть :value или меньше.', + 'file' => 'Размер файла должен быть :value Килобайт(а) или меньше.', + 'numeric' => 'Значение должно быть :value или меньше.', + 'string' => 'Количество символов должно быть :value или меньше.', + ], + 'max' => [ + 'array' => 'Количество элементов не может превышать :max.', + 'file' => 'Размер файла не может быть больше :max Килобайт(а).', + 'numeric' => 'Значение не может быть больше :max.', + 'string' => 'Количество символов не может превышать :max.', + ], + 'mimes' => 'Должен быть файл одного из следующих типов: :values.', + 'mimetypes' => 'Должен быть файл одного из следующих типов: :values.', + 'min' => [ + 'array' => 'Количество элементов должно быть не меньше :min.', + 'file' => 'Размер файла должен быть не меньше :min Килобайт(а).', + 'numeric' => 'Значение должно быть не меньше :min.', + 'string' => 'Количество символов должно быть не меньше :min.', + ], + 'multiple_of' => 'Значение должно быть кратным :value', + 'not_in' => 'Выбранное значение ошибочно.', + 'not_regex' => 'Выбранный формат ошибочный.', + 'numeric' => 'Здесь должно быть число.', + 'password' => 'Неверный пароль.', + 'present' => 'Значение должно быть.', + 'prohibited' => 'Данное значение запрещено.', + 'prohibited_if' => 'Значение запрещено, когда :other равно :value.', + 'prohibited_unless' => 'Значение запрещено, если :other не входит в :values.', + 'regex' => 'Ошибочный формат.', + 'relatable' => 'Объект не может быть связан с этим ресурсом.', + 'required' => 'Обязательно для заполнения.', + 'required_if' => 'Обязательно для заполнения, когда :other равно :value.', + 'required_unless' => 'Обязательно для заполнения, когда :other не равно :values.', + 'required_with' => 'Обязательно для заполнения, когда :values указано.', + 'required_with_all' => 'Обязательно для заполнения, когда :values указано.', + 'required_without' => 'Обязательно для заполнения, когда :values не указано.', + 'required_without_all' => 'Обязательно для заполнения, когда ни одно из :values не указано.', + 'same' => 'Значение должно совпадать с :other.', + 'size' => [ + 'array' => 'Количество элементов должно быть равным :size.', + 'file' => 'Размер файла должен быть равен :size Килобайт(а).', + 'numeric' => 'Значение должно быть равным :size.', + 'string' => 'Количество символов должно быть равным :size.', + ], + 'starts_with' => 'Значение должно начинаться из одного из следующих значений: :values', + 'string' => 'Здесь должна быть строка.', + 'timezone' => 'Должен быть действительный часовой пояс.', + 'unique' => 'Такое значение уже существует.', + 'uploaded' => 'Загрузка не удалась.', + 'url' => 'Ошибочный формат URL.', + 'uuid' => 'Должен быть корректный UUID.', + 'custom' => [ + 'attribute-name' => [ + 'rule-name' => 'custom-message', + ], + ], + 'attributes' => [], +]; diff --git a/resources/lang/ru/validation.php b/resources/lang/ru/validation.php index 288455948..7df7d9661 100644 --- a/resources/lang/ru/validation.php +++ b/resources/lang/ru/validation.php @@ -1,151 +1,162 @@ ':attribute должен быть принят.', - 'active_url' => ':attribute не действительный URL.', - 'after' => ':attribute должна быть дата после :date.', - 'after_or_equal' => ':attribute должна быть дата после или равна :date.', - 'alpha' => ':attribute может содержать только буквы.', - 'alpha_dash' => ':attribute может содержать только буквы, числа, знаки тире и нижнего подчеркивания.', - 'alpha_num' => ':attribute может содержать только буквы и числа.', - 'array' => ':attribute должен быть массивом.', - 'before' => ':attribute должен быть датой до :date.', - 'before_or_equal' => ':attribute должен быть датой до или равен :date.', - 'between' => [ - 'numeric' => ':attribute должен быть между :min и :max.', - 'file' => ':attribute должен быть между :min и :max килобайтов.', - 'string' => ':attribute должен быть между :min и :max символов.', - 'array' => ':attribute должен быть между :min и :max элементов.', +return [ + 'accepted' => 'Вы должны принять :attribute.', + 'active_url' => 'Поле :attribute содержит недействительный URL.', + 'after' => 'В поле :attribute должна быть дата больше :date.', + 'after_or_equal' => 'В поле :attribute должна быть дата больше или равняться :date.', + 'alpha' => 'Поле :attribute может содержать только буквы.', + 'alpha_dash' => 'Поле :attribute может содержать только буквы, цифры, дефис и нижнее подчеркивание.', + 'alpha_num' => 'Поле :attribute может содержать только буквы и цифры.', + 'array' => 'Поле :attribute должно быть массивом.', + 'attached' => 'Поле :attribute уже прикреплено.', + 'before' => 'В поле :attribute должна быть дата раньше :date.', + 'before_or_equal' => 'В поле :attribute должна быть дата раньше или равняться :date.', + 'between' => [ + 'array' => 'Количество элементов в поле :attribute должно быть между :min и :max.', + 'file' => 'Размер файла в поле :attribute должен быть между :min и :max Килобайт(а).', + 'numeric' => 'Поле :attribute должно быть между :min и :max.', + 'string' => 'Количество символов в поле :attribute должно быть между :min и :max.', ], - 'boolean' => ':attribute поле должно быть true или false.', - 'confirmed' => ':attribute подтверждение не совпало.', - 'date' => ':attribute не действительная дата.', - 'date_equals' => ':attribute должна быть дата равная :date.', - 'date_format' => ':attribute не соответствует формату :format.', - 'different' => ':attribute и :other должны быть разными.', - 'digits' => ':attribute должен быть :digits цифрами.', - 'digits_between' => ':attribute должен быть между :min и :max цифр.', - 'dimensions' => ':attribute имеет недопустимые размеры изображения.', - 'distinct' => ':attribute поле имеет дублирующее значение.', - 'email' => ':attribute должен быть корректным email адресом.', - 'ends_with' => ':attribute должен заканчиватся одним из: :values.', - 'exists' => 'выбранный :attribute не допустим.', - 'file' => ':attribute должен быть файлом.', - 'filled' => ':attribute поле должно быть заполненно.', - 'gt' => [ - 'numeric' => ':attribute должен быть больше чем :value.', - 'file' => ':attribute должен быть больше чем :value килобайтов.', - 'string' => ':attribute должен быть больше чем :value симоволо.', - 'array' => ':attribute должен быть больше чем :value элементов.', + 'boolean' => 'Поле :attribute должно иметь значение логического типа.', + 'confirmed' => 'Поле :attribute не совпадает с подтверждением.', + 'date' => 'Поле :attribute не является датой.', + 'date_equals' => 'Поле :attribute должно быть датой равной :date.', + 'date_format' => 'Поле :attribute не соответствует формату :format.', + 'different' => 'Поля :attribute и :other должны различаться.', + 'digits' => 'Длина цифрового поля :attribute должна быть :digits.', + 'digits_between' => 'Длина цифрового поля :attribute должна быть между :min и :max.', + 'dimensions' => 'Поле :attribute имеет недопустимые размеры изображения.', + 'distinct' => 'Поле :attribute содержит повторяющееся значение.', + 'email' => 'Поле :attribute должно быть действительным электронным адресом.', + 'ends_with' => 'Поле :attribute должно заканчиваться одним из следующих значений: :values', + 'exists' => 'Выбранное значение для :attribute некорректно.', + 'file' => 'Поле :attribute должно быть файлом.', + 'filled' => 'Поле :attribute обязательно для заполнения.', + 'gt' => [ + 'array' => 'Количество элементов в поле :attribute должно быть больше :value.', + 'file' => 'Размер файла в поле :attribute должен быть больше :value Килобайт(а).', + 'numeric' => 'Поле :attribute должно быть больше :value.', + 'string' => 'Количество символов в поле :attribute должно быть больше :value.', ], - 'gte' => [ - 'numeric' => ':attribute должен быть больше или равен :value.', - 'file' => ':attribute должен быть больше или равен :value килобайтам.', - 'string' => ':attribute должен быть больше или равен :value символам.', - 'array' => ':attribute должен иметь :value элеметов или больше.', + 'gte' => [ + 'array' => 'Количество элементов в поле :attribute должно быть :value или больше.', + 'file' => 'Размер файла в поле :attribute должен быть :value Килобайт(а) или больше.', + 'numeric' => 'Поле :attribute должно быть :value или больше.', + 'string' => 'Количество символов в поле :attribute должно быть :value или больше.', ], - 'image' => ':attribute должен быть картинкой.', - 'in' => 'выбранный :attribute не допустим.', - 'in_array' => ':attribute поле не существует в :other.', - 'integer' => ':attribute должен быть целым числом.', - 'ip' => ':attribute должен быть корректным IP адресом.', - 'ipv4' => ':attribute должен быть корректным IPv4 адресом.', - 'ipv6' => ':attribute должен быть корректным IPv6 адресом.', - 'json' => ':attribute должен быть корректной JSON строкой.', - 'lt' => [ - 'numeric' => ':attribute должен быть меньше чем :value.', - 'file' => ':attribute должен быть меньше чем :value килобайтов.', - 'string' => ':attribute должен быть меньше чем :value символов.', - 'array' => ':attribute должен быть меньше чем :value элементов.', + 'image' => 'Поле :attribute должно быть изображением.', + 'in' => 'Выбранное значение для :attribute ошибочно.', + 'in_array' => 'Поле :attribute не существует в :other.', + 'integer' => 'Поле :attribute должно быть целым числом.', + 'ip' => 'Поле :attribute должно быть действительным IP-адресом.', + 'ipv4' => 'Поле :attribute должно быть действительным IPv4-адресом.', + 'ipv6' => 'Поле :attribute должно быть действительным IPv6-адресом.', + 'json' => 'Поле :attribute должно быть JSON строкой.', + 'lt' => [ + 'array' => 'Количество элементов в поле :attribute должно быть меньше :value.', + 'file' => 'Размер файла в поле :attribute должен быть меньше :value Килобайт(а).', + 'numeric' => 'Поле :attribute должно быть меньше :value.', + 'string' => 'Количество символов в поле :attribute должно быть меньше :value.', ], - 'lte' => [ - 'numeric' => ':attribute должен быть меньше или равен :value.', - 'file' => ':attribute должен быть меньше или равен :value килобайтам.', - 'string' => ':attribute должен быть меньше или равен :value символам.', - 'array' => ':attribute не должен иметь больше :value элементов.', + 'lte' => [ + 'array' => 'Количество элементов в поле :attribute должно быть :value или меньше.', + 'file' => 'Размер файла в поле :attribute должен быть :value Килобайт(а) или меньше.', + 'numeric' => 'Поле :attribute должно быть :value или меньше.', + 'string' => 'Количество символов в поле :attribute должно быть :value или меньше.', ], - 'max' => [ - 'numeric' => ':attribute не может быть больше чем :max.', - 'file' => ':attribute не может быть больше чем :max килобайт.', - 'string' => ':attribute не может быть больше чем :max символов.', - 'array' => ':attribute may not have more than :max элементов.', + 'max' => [ + 'array' => 'Количество элементов в поле :attribute не может превышать :max.', + 'file' => 'Размер файла в поле :attribute не может быть больше :max Килобайт(а).', + 'numeric' => 'Поле :attribute не может быть больше :max.', + 'string' => 'Количество символов в поле :attribute не может превышать :max.', ], - 'mimes' => ':attribute должен быть тип файла: :values.', - 'mimetypes' => ':attribute должен быть тип файла: :values.', - 'min' => [ - 'numeric' => ':attribute должен быть как минимум :min.', - 'file' => ':attribute должен быть как минимум :min килобайтов.', - 'string' => ':attribute должен быть как минимум :min символов.', - 'array' => ':attribute должен быть как минимум :min элементов.', + 'mimes' => 'Поле :attribute должно быть файлом одного из следующих типов: :values.', + 'mimetypes' => 'Поле :attribute должно быть файлом одного из следующих типов: :values.', + 'min' => [ + 'array' => 'Количество элементов в поле :attribute должно быть не меньше :min.', + 'file' => 'Размер файла в поле :attribute должен быть не меньше :min Килобайт(а).', + 'numeric' => 'Поле :attribute должно быть не меньше :min.', + 'string' => 'Количество символов в поле :attribute должно быть не меньше :min.', ], - 'not_in' => 'selected :attribute не допустим.', - 'not_regex' => ':attribute формат не допустим.', - 'numeric' => ':attribute должен быть числом.', - 'password' => 'неверный пароль.', - 'present' => ':attribute поле должно присутствовать.', - 'regex' => ':attribute формат не допустим.', - 'required' => ':attribute поле обязательно.', - 'required_if' => ':attribute поле обязательно когда :other равно :value.', - 'required_unless' => ':attribute поле обязательно пока :other не одно из :values.', - 'required_with' => ':attribute поле обязательно когда :values представлены.', - 'required_with_all' => ':attribute поле обязательно когда :values представлены.', - 'required_without' => ':attribute поле обязательно когда :values не представлены.', - 'required_without_all' => ':attribute поле обязательно когда не один из :values не представлен.', - 'same' => ':attribute и :other должны совпадать.', + 'multiple_of' => 'Значение поля :attribute должно быть кратным :value', + 'not_in' => 'Выбранное значение для :attribute ошибочно.', + 'not_regex' => 'Выбранный формат для :attribute ошибочный.', + 'numeric' => 'Поле :attribute должно быть числом.', + 'password' => 'Неверный пароль.', + 'present' => 'Поле :attribute должно присутствовать.', + 'prohibited' => 'Поле :attribute запрещено.', + 'prohibited_if' => 'Поле :attribute запрещено, когда :other равно :value.', + 'prohibited_unless' => 'Поле :attribute запрещено, если :other не входит в :values.', + 'regex' => 'Поле :attribute имеет ошибочный формат.', + 'relatable' => 'Поле :attribute не может быть связано с этим ресурсом.', + 'required' => 'Поле :attribute обязательно для заполнения.', + 'required_if' => 'Поле :attribute обязательно для заполнения, когда :other равно :value.', + 'required_unless' => 'Поле :attribute обязательно для заполнения, когда :other не равно :values.', + 'required_with' => 'Поле :attribute обязательно для заполнения, когда :values указано.', + 'required_with_all' => 'Поле :attribute обязательно для заполнения, когда :values указано.', + 'required_without' => 'Поле :attribute обязательно для заполнения, когда :values не указано.', + 'required_without_all' => 'Поле :attribute обязательно для заполнения, когда ни одно из :values не указано.', + 'same' => 'Значения полей :attribute и :other должны совпадать.', 'size' => [ - 'numeric' => ':attribute должен быть :size.', - 'file' => ':attribute должен быть :size килобайтов.', - 'string' => ':attribute должен быть :size символов.', - 'array' => ':attribute должен содержать :size элементов.', + 'array' => 'Количество элементов в поле :attribute должно быть равным :size.', + 'file' => 'Размер файла в поле :attribute должен быть равен :size Килобайт(а).', + 'numeric' => 'Поле :attribute должно быть равным :size.', + 'string' => 'Количество символов в поле :attribute должно быть равным :size.', ], - 'starts_with' => ':attribute должен начинаться с одного из следующих: :values.', - 'string' => ':attribute должен быть строкой.', - 'timezone' => ':attribute должен быть корректной таймзоной.', - 'unique' => ':attribute уже занят.', - 'uploaded' => ':attribute не удалось загрузить.', - 'url' => ':attribute формат не допустим.', - 'uuid' => ':attribute должен быть корректным UUID.', - - /* - |-------------------------------------------------------------------------- - | Custom Validation Language Lines - |-------------------------------------------------------------------------- - | - | Here you may specify custom validation messages for attributes using the - | convention "attribute.rule" to name the lines. This makes it quick to - | specify a specific custom language line for a given attribute rule. - | - */ - - 'custom' => [ + 'starts_with' => 'Поле :attribute должно начинаться из одного из следующих значений: :values', + 'string' => 'Поле :attribute должно быть строкой.', + 'timezone' => 'Поле :attribute должно быть действительным часовым поясом.', + 'unique' => 'Такое значение поля :attribute уже существует.', + 'uploaded' => 'Загрузка поля :attribute не удалась.', + 'url' => 'Поле :attribute имеет ошибочный формат URL.', + 'uuid' => 'Поле :attribute должно быть корректным UUID.', + 'custom' => [ 'attribute-name' => [ 'rule-name' => 'custom-message', ], ], - - /* - |-------------------------------------------------------------------------- - | Custom Validation Attributes - |-------------------------------------------------------------------------- - | - | The following language lines are used to swap our attribute placeholder - | with something more reader friendly such as "E-Mail Address" instead - | of "email". This simply helps us make our message more expressive. - | - */ - - 'attributes' => [], - + 'attributes' => [ + 'address' => 'Адрес', + 'age' => 'Возраст', + 'available' => 'Доступно', + 'city' => 'Город', + 'content' => 'Контент', + 'country' => 'Страна', + 'current_password' => 'Текущий пароль', + 'date' => 'Дата', + 'day' => 'День', + 'description' => 'Описание', + 'email' => 'E-Mail адрес', + 'excerpt' => 'Выдержка', + 'first_name' => 'Имя', + 'gender' => 'Пол', + 'hour' => 'Час', + 'last_name' => 'Фамилия', + 'minute' => 'Минута', + 'mobile' => 'Моб. номер', + 'month' => 'Месяц', + 'name' => 'Имя', + 'password' => 'Пароль', + 'password_confirmation' => 'Подтверждение пароля', + 'phone' => 'Телефон', + 'second' => 'Секунда', + 'sex' => 'Пол', + 'size' => 'Размер', + 'time' => 'Время', + 'title' => 'Наименование', + 'username' => 'Никнейм', + 'year' => 'Год', + ], ];