├── .editorconfig ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── Language ├── ar │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── bg │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── bn │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── bs │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── cs │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── de │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── el │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── es │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── fa │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── fr │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── gu │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── hu │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── id │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── it │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── ja │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── ko │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── lt │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── lv │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── ml │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── nl │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── no │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Core.php │ ├── Database.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Router.php │ ├── Session.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── pl │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── pt-BR │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── pt │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── ro │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── ru │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── si │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── sk │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── sr │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── sv-SE │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── ta │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── th │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── tr │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── uk │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── RESTful.php │ ├── Router.php │ ├── Session.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── vi │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Errors.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Language.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── zh-CN │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php └── zh-TW │ ├── CLI.php │ ├── Cache.php │ ├── Cast.php │ ├── Cookie.php │ ├── Core.php │ ├── Database.php │ ├── Email.php │ ├── Encryption.php │ ├── Fabricator.php │ ├── Files.php │ ├── Filters.php │ ├── Format.php │ ├── HTTP.php │ ├── Images.php │ ├── Log.php │ ├── Migrations.php │ ├── Number.php │ ├── Pager.php │ ├── Publisher.php │ ├── RESTful.php │ ├── Router.php │ ├── Security.php │ ├── Session.php │ ├── Test.php │ ├── Time.php │ ├── Validation.php │ └── View.php ├── MISSING.md ├── README.md └── composer.json /.editorconfig: -------------------------------------------------------------------------------- 1 | ; This file is for unifying the coding style for different editors and IDEs. 2 | ; More information at http://editorconfig.org 3 | 4 | root = true 5 | 6 | [*] 7 | charset = utf-8 8 | indent_size = 4 9 | indent_style = space 10 | end_of_line = lf 11 | insert_final_newline = true 12 | trim_trailing_whitespace = true 13 | 14 | [*.{yml,yaml}] 15 | indent_size = 2 16 | -------------------------------------------------------------------------------- /Language/ar/Fabricator.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Fabricator language settings 15 | return [ 16 | 'invalidModel' => 'تم توفير نموذج غير صالح للتصنيع.', 17 | 'missingFormatters' => 'لم يتم تعريف أدوات تنسيق صالحة.', 18 | 'createFailed' => 'فشل المصنّع في الإدراج في الجدول "{0}": {1}', 19 | ]; 20 | -------------------------------------------------------------------------------- /Language/ar/Files.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Files language settings 15 | return [ 16 | 'fileNotFound' => 'الملف غير موجود: "{0}"', 17 | 'cannotMove' => 'تعذر نقل الملف "{0}" إلى "{1}". السبب: {2}', 18 | 'expectedDirectory' => '{0} يتوقع دليلًا صالحًا.', 19 | 'expectedFile' => '{0} يتوقع ملفًا صالحًا.', 20 | ]; 21 | -------------------------------------------------------------------------------- /Language/ar/Filters.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Filters language settings 15 | return [ 16 | 'noFilter' => 'يجب أن يحتوي الفلتر "{0}" على اسم مستعار مطابق محدد.', 17 | 'incorrectInterface' => 'يجب أن يقوم "{0}" بتنفيذ CodeIgniter\Filters\FilterInterface.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ar/Format.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Format language settings 15 | return [ 16 | 'invalidFormatter' => '"{0}" ليس فئة منسق (Formatter) صالحة.', 17 | 'invalidJSON' => 'فشل في تحليل سلسلة JSON. الخطأ: {0}', 18 | 'invalidMime' => 'لم يتم تعريف منسق (Formatter) لنوع mime: "{0}".', 19 | 'missingExtension' => 'مكتبة SimpleXML مطلوبة لتنسيق XML.', 20 | ]; 21 | -------------------------------------------------------------------------------- /Language/ar/Language.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // "Language" language settings 15 | return [ 16 | 'invalidMessageFormat' => 'تنسيق رسالة غير صالح: "{0}"، الوسائط: "{1}"', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/ar/Log.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Log language settings 15 | return [ 16 | 'invalidLogLevel' => '"{0}" مستوى سجل غير صالح.', 17 | 'invalidMessageType' => 'نوع الرسالة المحدد "{0}" غير مدعوم.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ar/RESTful.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // RESTful language settings 15 | return [ 16 | 'notImplemented' => 'الإجراء "{0}" غير مطبق.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/ar/Security.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Security language settings 15 | return [ 16 | 'disallowedAction' => 'الإجراء الذي طلبته غير مسموح به.', 17 | 'insecureCookie' => 'تمت محاولة إرسال ملف تعريف ارتباط آمن عبر اتصال غير آمن.', 18 | 19 | // @deprecated 20 | 'invalidSameSite' => 'يجب أن تكون قيمة SameSite إما None أو Lax أو Strict أو سلسلة فارغة. المعطى: "{0}"', 21 | ]; 22 | -------------------------------------------------------------------------------- /Language/ar/Test.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Testing language settings 15 | return [ 16 | 'invalidMockClass' => '"{0}" ليس فئة Mock صالحة', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/bg/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Кешът не може да записва в {0}', 15 | 'invalidHandlers' => 'Конфигурацията на кеша трябва да има масив от $validHandlers.', 16 | 'noBackup' => 'Конфигурацията на кеша трябва да има набор от манипулатор и backupHandler.', 17 | 'handlerNotFound' => 'Конфигурацията на кеша има зададен невалиден манипулатор или резервен манипулатор.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bg/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Невалиден модел, предоставен за производство.', 15 | 'missingFormatters' => 'Няма дефинирани валидни форматиращи програми.', 16 | 'createFailed' => 'Fabricator не успя да вмъкне в таблица {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/bg/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Файлът не е намерен: {0}', 15 | 'cannotMove' => 'Не може да се премести файл {0} в {1} ({2})', 16 | 'expectedDirectory' => '{0} очаква валидна директория.', 17 | 'expectedFile' => '{0} очаква валиден файл.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bg/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} филтърът трябва да има дефиниран съответстващ псевдоним.', 15 | 'incorrectInterface' => '{0} трябва да имплементира CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/bg/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" не е валиден клас за форматиране.', 15 | 'invalidJSON' => 'Неуспешно анализиране на json низ, грешка: "{0}".', 16 | 'invalidMime' => 'Няма дефиниран формат за MIME тип: „{0}“.', 17 | 'missingExtension' => 'Разширението SimpleXML е необходимо за форматиране на XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bg/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} е невалидно ниво на регистър.', 15 | 'invalidMessageType' => 'Даденият тип съобщение "{0}" не се поддържа.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/bg/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => 'Действието "{0}" не е изпълнено.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/bg/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Заявеното от вас действие не е разрешено.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'Стойността SameSite трябва да бъде None, Lax, Strict или празен низ. Дадено: {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bg/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} не е валиден Mock клас', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/bn/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => '{0} এ ক্যাশ লিখতে অক্ষম।', 15 | 'invalidHandlers' => 'ক্যাশ কনফিগারেশনে অবশ্যই $validHandlers এর একটি অ্যারে থাকতে হবে।', 16 | 'noBackup' => 'ক্যাশ কনফিগারে অবশ্যই একটি হ্যান্ডলার এবং ব্যাকআপহ্যান্ডলার সেট থাকতে হবে।', 17 | 'handlerNotFound' => 'ক্যাশ কনফিগারেশনে একটি অবৈধ হ্যান্ডলার বা ব্যাকআপ হ্যান্ডলার নির্দিষ্ট করা আছে।', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bn/Errors.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Errors language settings 13 | return [ 14 | 'pageNotFound' => '৪০৪ - পৃষ্ঠা পাওয়া যায়নি', 15 | 'sorryCannotFind' => 'দুঃখিত! আপনি যে পৃষ্ঠাটি খুঁজছিলেন তা খুঁজে পাওয়া যায়নি বলে মনে হচ্ছে।', 16 | 'whoops' => 'উফফ!', 17 | 'weHitASnag' => 'আমাদের মনে হয় কোনো সমস্যা হয়েছে। পরে আবার চেষ্টা করুন...', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bn/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'বানোয়াটের জন্য অবৈধ মডেল সরবরাহ করা হয়েছে।', 15 | 'missingFormatters' => 'কোন বৈধ ফরম্যাটার সংজ্ঞায়িত করা হয়নি।', 16 | 'createFailed' => 'ফেব্রিকেটর টেবিলে সন্নিবেশ করতে ব্যর্থ হয়েছে {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/bn/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'ফাইল পাওয়া যায়নি: {0}', 15 | 'cannotMove' => 'ফাইল {0} থেকে {1} ({2}) এ সরানো যায়নি।', 16 | 'expectedDirectory' => '{0} একটি বৈধ ডিরেক্টরি আশা করে।', 17 | 'expectedFile' => '{0} একটি বৈধ ফাইল আশা করে।', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bn/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} ফিল্টারে অবশ্যই একটি মিল উপনাম সংজ্ঞায়িত থাকতে হবে।', 15 | 'incorrectInterface' => '{0} অবশ্যই CodeIgniter\Filters\FilterInterface বাস্তবায়ন করতে হবে।', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/bn/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" একটি বৈধ ফরম্যাটার ক্লাস নয়।', 15 | 'invalidJSON' => 'json স্ট্রিং পার্স করতে ব্যর্থ, ত্রুটি: "{0}"।', 16 | 'invalidMime' => 'mime টাইপের জন্য কোন ফরম্যাটার সংজ্ঞায়িত করা হয়নি: "{0}"।', 17 | 'missingExtension' => 'XML ফরম্যাট করার জন্য SimpleXML এক্সটেনশন প্রয়োজন।', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bn/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} একটি অবৈধ লগ লেভেল।', 15 | 'invalidMessageType' => 'প্রদত্ত বার্তা প্রকার "{0}" সমর্থিত নয়।', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/bn/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" অ্যাকশন বাস্তবায়িত হয়নি।', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/bn/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'আপনি যে কর্মের অনুরোধ করেছেন তা অনুমোদিত নয়।', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'SameSite মানটি অবশ্যই None, Lax, Strict, বা একটি ফাঁকা স্ট্রিং হতে হবে। দেওয়া হয়েছে: {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bn/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} একটি বৈধ মক ক্লাস নয়', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/bs/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Nemoguć upis keša na {0}.', 15 | 'invalidHandlers' => 'Keš konfig mora sadržavati niz od $validHandlers.', 16 | 'noBackup' => 'Keš konfig mora imati postavljen handler i backupHandler.', 17 | 'handlerNotFound' => 'Keš konfig ima nevalidan handler ili backup handler.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bs/Errors.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Errors language settings 13 | return [ 14 | 'pageNotFound' => '404 - Stranica nije pronađena', 15 | 'sorryCannotFind' => 'Žao nam je, ali ne možemo pronaći stranicu koju tražite.', 16 | 'whoops' => 'Upsss!', 17 | 'weHitASnag' => 'Izgleda da smo naišli na prepreku. Molimo pokušajte ponovo kasnije...', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bs/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Nevalidan model proslijeđen za fabrikaciju.', 15 | 'missingFormatters' => 'Nema definisanih validnih formatera.', 16 | 'createFailed' => 'Fabrikator nije uspio insertovat u tablicu {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/bs/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Datoteka nije pronađena: {0}', 15 | 'cannotMove' => 'Ne mogu pomjeriti datoteku {0} na {1} ({2}).', 16 | 'expectedDirectory' => '{0} očekuje validan direktorij.', 17 | 'expectedFile' => '{0} očekuje validnu datoteku.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bs/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} Filter mora imati definisan poklapajući alias.', 15 | 'incorrectInterface' => '{0} mora implementirati CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/bs/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" nije validna Formatter klasa.', 15 | 'invalidJSON' => 'Neuspješna obrada json string-a, greška: "{0}".', 16 | 'invalidMime' => 'Nema definisanog formatera za mime tip: "{0}".', 17 | 'missingExtension' => 'SimpleXML ekstenzija je zahtjevana za format XML-a.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bs/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} nije validan log nivo.', 15 | 'invalidMessageType' => 'Dati tip poruke "{0}" nije podržan.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/bs/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" akcija nije implementirana.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/bs/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Akcija koju ste zatražili nije dozvoljena.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'SameSite vrijednost mora biti None, Lax, Strict, ili prazan string. Dato: {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/bs/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} nije validna Mock klasa', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/cs/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Cache nelze uložit do {0}', 15 | 'invalidHandlers' => 'Cache config musí mít pole z $validHandlers.', 16 | 'noBackup' => 'Cache config musí mít nastavený handler a backupHandler.', 17 | 'handlerNotFound' => 'Cache config má neplatný specifikovaný handler nebo záložní handler.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/cs/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Na výrobu byl dodán neplatný model.', 15 | 'missingFormatters' => 'Nejsou definovány žádné platné formátovače.', 16 | 'createFailed' => 'Výrobce se nepodařilo vložit do tabulky {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/cs/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Soubor nebyl nalezen: {0}', 15 | 'cannotMove' => 'Soubor {0} nebylo možné přesunout do {1} ({2})', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/cs/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} filtr musí mít definovaný odpovídající alias.', 15 | 'incorrectInterface' => '{0} musí implementovat CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/cs/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0} "není platná Formatter třída.', 15 | 'invalidJSON' => 'Parsování JSON řetězce selhalo, chyba: "{0}".', 16 | 'invalidMime' => 'Není definován žádný Formatter pro mime type: "{0}".', 17 | 'missingExtension' => 'Rozšíření SimpleXML je nezbytné pro XML formát.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/cs/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} je neplatná úroveň logu.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/cs/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" akce nebyla implementována.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/cs/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => 'Parameter se neshoduje s očekávaným typem.', 15 | 'missingDefaultRoute' => 'Není možné určit co má být zobrazeno. Zvolená cesta nebyla specifikována v routing souboru.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/cs/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Požadovaná akce není povolena.', 15 | 'invalidSameSite' => 'SameSite hodnota musí být None, Lax, Strict nebo prázdný řetězec. Zadané: {0}', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/de/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language strings 13 | return [ 14 | 'invalidModel' => 'Ungültiges Model an Fabricator übergeben.', 15 | 'missingFormatters' => 'Kein gültiger Formatierer definiert.', 16 | 'createFailed' => 'Der Fabricator konnte {1} nicht in Tabelle {0} einfügen.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/de/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Datei nicht gefunden: {0}', 15 | 'cannotMove' => 'Datei konnte nicht von {0} nach {1} verschoben werden ({2}).', 16 | 'expectedDirectory' => '{0} erwartet einen gültigen Ordner.', 17 | 'expectedFile' => '{0} erwartet eine gültige Datei.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/de/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'Für den Filter {0} muss ein passender Alias definiert sein.', 15 | 'incorrectInterface' => '{0} muss CodeIgniter\Filters\FilterInterface implementieren.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/de/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" ist keine gültige Formatiererklasse.', 15 | 'invalidJSON' => 'JSON-String konnte nicht geparst werden. Fehler: "{0}".', 16 | 'invalidMime' => 'Kein Formatierer definiert für den MIME-Typen: "{0}".', 17 | 'missingExtension' => 'Die SimpleXML Erweiterung wird zum Formatieren von XML benötigt.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/de/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Ungültiges Nachrichtenformat: "{0}", Argumente: "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/de/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} ist ein ungültiges Log-Level.', 15 | 'invalidMessageType' => 'Der angegebene Log-Typ "{0}" wird nicht unterstützt.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/de/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => 'Die Aktion "{0}" ist nicht implementiert.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/de/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Die von Ihnen gewünschte Aktion ist nicht zulässig.', 15 | 'insecureCookie' => 'Es wurde versucht, ein sicheres Cookie über eine unsichere Verbindung zu senden.', 16 | 17 | // @deprecated 18 | 'invalidSameSite' => 'Der SameSite-Wert muss None, Lax, Strict, oder ein leerer String sein. Aktueller Wert: {0}', 19 | ]; 20 | -------------------------------------------------------------------------------- /Language/de/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} ist keine gültige Mock-Klasse', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/el/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Μη έγκυρο μοντέλο παρέχεται για κατασκευή.', // 'Invalid model supplied for fabrication.', 15 | 'missingFormatters' => 'Δεν έχουν οριστεί έγκυροι μορφοποιητές.', // 'No valid formatters defined.', 16 | 'createFailed' => 'Απέτυχε η εισαγωγή του Fabricator στον πίνακα "{0}": {1}', // 'Fabricator failed to insert on table "{0}": {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/el/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'Το φίλτρο "{0}" πρέπει να έχει καθορισμένο αντίστοιχο ψευδώνυμο (alias).', // '"{0}" filter must have a matching alias defined.', 15 | 'incorrectInterface' => '"{0}" πρέπει να εφαρμόσει το CodeIgniter\Filters\FilterInterface.', // '"{0}" must implement CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/el/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Μη έγκυρη μορφή μηνύματος: "{0}", args: "{1}"', // 'Invalid message format: "{0}", args: "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/el/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '"{0}" μη έγκυρο επίπεδο καταγραφής.', // '"{0}" is an invalid log level.', 15 | 'invalidMessageType' => 'Ο δεδομένος τύπος μηνύματος "{0}" δεν υποστηρίζεται.', // 'The given message type "{0}" is not supported.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/el/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" η ενέργεια δεν εφαρμόστηκε.', // '"{0}" action not implemented.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/el/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Η ενέργεια που ζητήσατε δεν επιτρέπεται.', // 'The action you requested is not allowed.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'Η τιμή SameSite πρέπει να είναι None, Lax, Strict ή μια κενή συμβολοσειρά. Δόθηκε: "{0}"', // 'The SameSite value must be None, Lax, Strict, or a blank string. Given: "{0}"', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/el/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '"{0}" δεν είναι έγκυρη κλάση Mock', // '"{0}" is not a valid Mock class', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/es/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Suministrado Modelo inválido para fabricación.', // 'Invalid model supplied for fabrication.', 15 | 'missingFormatters' => 'No se han definido formateadores válidos.', // 'No valid formatters defined.', 16 | 'createFailed' => 'El fabricante no pudo insertar en la tabla {0}: {1}', // 'Fabricator failed to insert on table {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/es/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'El filtro {0} debe tener un alias coincidente definido.', // '{0} filter must have a matching alias defined.', 15 | 'incorrectInterface' => '{0} debe implementar CodeIgniter\Filters\FilterInterface.', // '{0} must implement CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/es/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Formato de mensaje no válido: "{0}", argumentos: "{1}"', // 'Invalid message format: "{0}", args: "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/es/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} es un nivel de log inválido.', 15 | 'invalidMessageType' => 'El tipo de mensaje especificado "{0}" no es compatible.', // 'The given message type "{0}" is not supported.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/es/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => 'Acción "{0}" no implementada.', // '"{0}" action not implemented.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/es/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '"{0}" no es una clase Mock válida', // '"{0}" is not a valid Mock class', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/fa/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Cache نمی‌تواند در {0} بنویسد.', 15 | 'invalidHandlers' => 'تنظیمات کش باید شامل آرایه‌ای از $validHandlers باشد.', 16 | 'noBackup' => 'تنظیمات کش باید Cache handler و Backup Handler داشته باشند.', 17 | 'handlerNotFound' => 'در تنظیمات کش، مقدار Cache handler یا Backup handler به درستی مشخص نشده است.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/fa/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'مدل معرفی شده به fabrication نامعتبر است.', 15 | 'missingFormatters' => 'هیچ formatter معتبری تعریف نشده.', 16 | 'createFailed' => 'کلاس Fabricator نتوانست در جدول {0} رکورد را اضافه کند: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/fa/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'فایل {0} پیدا نشد.', 15 | 'cannotMove' => 'انتقال فایل از {0} به {1} به مشکل خورد ({2}).', 16 | 'expectedDirectory' => '{0} باید یه دایرکتوری معتبر باشد.', 17 | 'expectedFile' => '{0} باید یه فایل معتبر باشد.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/fa/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'برای فیلتر {0} باید alias منطبق تعریف شده باشد.', 15 | 'incorrectInterface' => '{0} باید بر اساس اینترفیس CodeIgniter\Filters\FilterInterface پیاده سازی شده باشد.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/fa/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" یک کلاس Formatter معتبر نیست.', 15 | 'invalidJSON' => 'مشکلی در بررسی JSON وجود داشت: "{0}".', 16 | 'invalidMime' => 'Formatter برای نوع داده "{0}" پیدا نشد.', 17 | 'missingExtension' => 'افزونه‌ی SimpleXML برای فرمت‌دهی XML ضروری است.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/fa/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'فرمت پیغام نامعتبر: "{0}", ورودی ها: "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/fa/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} یک log level نامعتبر است.', 15 | 'invalidMessageType' => 'نوع پیام "{0}" پشتیبانی نمی‌شود.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/fa/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => 'عملیات "{0}" پیاده‌سازی نشده است.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/fa/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'عملیات درخواستی شما مجاز نیست.', 15 | 'insecureCookie' => 'تلاشی برای ارسال یک کوکی ایمن از طریق یک اتصال ناامن انجام شده است.', 16 | 17 | // @deprecated 18 | 'invalidSameSite' => 'مقدار SameSite باید یکی از مقادیر None, Lax, Strict یا یک رشته‌ی خالی باشد، مقدار داده شده: {0}', 19 | ]; 20 | -------------------------------------------------------------------------------- /Language/fa/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} یک Mock class معتبر نیست ', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/fr/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Le modèle fourni pour la fabrication n\'est pas valide.', 15 | 'missingFormatters' => 'Aucun formateur valide n\'a été défini.', 16 | 'createFailed' => 'Le fabricant n\'a pas réussi à insérer sur la table {0} : {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/fr/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Fichier non trouvé : {0}', 15 | 'cannotMove' => 'Impossible de déplacer le fichier {0} vers {1} ({2})', 16 | 'expectedDirectory' => '{0} attend un répertoire valide.', 17 | 'expectedFile' => '{0} attend un fichier valide.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/fr/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'Le filtre {0} doit avoir un alias correspondant défini.', 15 | 'incorrectInterface' => '{0} doit implémenter CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/fr/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" n\'est pas une classe Formatter valide.', 15 | 'invalidJSON' => 'Échec de l\'analyse de la chaîne json, erreur : "{0}".', 16 | 'invalidMime' => 'Aucun Formatter défini pour le type mime : "{0}".', 17 | 'missingExtension' => 'L\'extension SimpleXML est nécessaire pour formater le XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/fr/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} est un niveau de log invalide.', 15 | 'invalidMessageType' => 'Le type de message "{0}" n\'est pas pris en charge.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/fr/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => 'L\'action "{0}" n\'est pas implementée.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/fr/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => 'Un paramètre ne correspond pas au type attendu.', 15 | 'missingDefaultRoute' => 'Impossible de déterminer ce qui doit être affiché. Aucune route par défaut n\'a été spécifiée dans le fichier de routage.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/fr/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'L\'action que vous avez demandée n\'est pas autorisée.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'La valeur SameSite doit être None, Lax, Strict ou une chaîne vide. Donnée : {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/fr/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} n\'est pas une class Mock valide', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/gu/Filters.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Filters language settings 15 | return [ 16 | 'noFilter' => '"{0}" ફિલ્ટરનો મેળ ખાતો ઉપનામ (alias) વ્યાખ્યાયિત હોવો આવશ્યક છે.', // '"{0}" filter must have a matching alias defined.' 17 | 'incorrectInterface' => '"{0}" એ CodeIgniter\Filters\FilterInterface અમલમાં મૂકવો આવશ્યક છે.', // '"{0}" must implement CodeIgniter\Filters\FilterInterface.' 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/gu/Language.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // "Language" language settings 15 | return [ 16 | 'invalidMessageFormat' => 'અમાન્ય સંદેશ ફોર્મેટ: "{0}", આર્ગ્યુમેન્ટ્સ: "{1}"', // 'Invalid message format: "{0}", args: "{1}"' 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/gu/Log.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Log language settings 15 | return [ 16 | 'invalidLogLevel' => '"{0}" એ અમાન્ય લોગ લેવલ છે.', // '"{0}" is an invalid log level.' 17 | 'invalidMessageType' => 'આપેલ સંદેશ પ્રકાર "{0}" સપોર્ટેડ નથી.', // 'The given message type "{0}" is not supported.' 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/gu/RESTful.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // RESTful language settings 15 | return [ 16 | 'notImplemented' => '"{0}" ક્રિયા અમલમાં મૂકવામાં આવી નથી.', // '"{0}" action not implemented.' 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/gu/Test.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Testing language settings 15 | return [ 16 | 'invalidMockClass' => '"{0}" એક માન્ય મોક ક્લાસ નથી', // '"{0}" is not a valid Mock class' 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/hu/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Érvénytelen a Fabricatornak megadott modell.', 15 | 'missingFormatters' => 'Nincsenek érvényes formázók megadva.', 16 | 'createFailed' => 'A Fabricatornak nem sikerült beszúrni a(z) {0} táblázatba: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/hu/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'A fájl nem található: {0}', 15 | 'cannotMove' => 'A(z) {0} fájl nem helyezhető át ide: {1} ({2}).', 16 | 'expectedDirectory' => 'A {0} érvényes könyvtárat vár.{0}', 17 | 'expectedFile' => '{0} érvényes fájlt vár.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/hu/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} a szűrőnek egy megfelelő fedőnévvel kell rendelkeznie.', 15 | 'incorrectInterface' => '{0} implementálnia kell a CodeIgniter\Filters\FilterInterface-t.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/hu/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" nem érvényes Formázási osztály.', 15 | 'invalidJSON' => 'Nem sikerült a json karakterlánc elemzése, hiba: "{0}".', 16 | 'invalidMime' => 'Nincs formátum definiálva a MIME típushoz: "{0}".', 17 | 'missingExtension' => 'Az XML formázásához a SimpleXML kiterjesztésre van szükség.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/hu/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} egy érvénytelen naplózási szint.', 15 | 'invalidMessageType' => 'A megadott "{0}" üzenettípus nem támogatott.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/hu/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" művelet nincs megvalósítva.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/hu/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'A kért művelet nem hajtható végre.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'Munkamenet: A SameSite beállításnak None, Lax, Strict vagy üres karakterláncnak kellene lennie. Megadva: {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/hu/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} nem érvényes Mock osztály', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/id/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language strings 13 | return [ 14 | 'invalidModel' => 'Model tidak valid disediakan untuk fabrikasi.', 15 | 'missingFormatters' => 'Tidak ada pemformat valid yang ditentukan.', 16 | 'createFailed' => 'Fabricator gagal dimasukkan ke dalam tabel "{0}": "{1}".', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/id/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Berkas tidak ditemukan: "{0}"', 15 | 'cannotMove' => 'Tidak dapat memindahkan berkas dari "{0}" ke "{1}" ("{2}").', 16 | 'expectedDirectory' => '"{0}" mengharapkan direktori yang valid.', 17 | 'expectedFile' => '"{0}" mengharapkan berkas yang valid.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/id/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'Filter "{0}" harus memiliki kecocokan dengan alias yang ditetapkan.', 15 | 'incorrectInterface' => '"{0}" harus menerapkan CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/id/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" bukan kelas Pemformat yang valid.', 15 | 'invalidJSON' => 'Gagal menguraikan string json, kesalahan: "{0}".', 16 | 'invalidMime' => 'Tidak ada Formatter didefinisikan untuk jenis mime: "{0}".', 17 | 'missingExtension' => 'Ekstensi SimpleXML diperlukan untuk memformat XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/id/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Format pesan tidak valid: "{0}", Yang Anda tulis : "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/id/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '"{0}" adalah sebuah level log yang tidak valid.', 15 | 'invalidMessageType' => 'Jenis pesan yang diberikan "{0}" tidak didukung.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/id/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => 'Tindakan "{0}" tidak dilaksanakan.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/id/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Tindakan yang Anda minta tidak diperbolehkan.', 15 | 'insecureCookie' => 'Upaya mengirim cookie melalui koneksi yang tidak aman.', 16 | 17 | // @deprecated 18 | 'invalidSameSite' => 'Nilai SameSite harus None, Lax, Strict, atau string kosong. Diberikan: "{0}"', 19 | ]; 20 | -------------------------------------------------------------------------------- /Language/id/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '"{0}" bukan kelas Mock yang valid', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/it/Errors.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Errors language settings 13 | return [ 14 | 'pageNotFound' => '404 - pagina non trovata', 15 | 'sorryCannotFind' => 'Spiacente! Non riesco a trovare la pagina che stavi cercando.', 16 | 'whoops' => 'Ops!', 17 | 'weHitASnag' => 'Sembra che abbiamo incontrato un intoppo. Per favore riprova più tardi...', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/it/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language strings 13 | return [ 14 | 'invalidModel' => 'È stato fornito un modello non valido per l\'operazione di fabrication.', 15 | 'missingFormatters' => 'Non è stato definito alcun formatter valido.', 16 | 'createFailed' => 'Fabricator: si è verificato un errore durante l\'inserimento nella tabella {0}: {1}.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/it/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'File non trovato: {0}', 15 | 'cannotMove' => 'Non è possibile spostare il file {0} in {1} ({2})', 16 | 'expectedDirectory' => '{0} si aspetta una directory valida.', 17 | 'expectedFile' => '{0} si aspetta un file valido.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/it/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '\'{0}\' il filtro deve avere un alias di riferimento definito.', 15 | 'incorrectInterface' => '{0} deve implementare CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/it/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" non è una classe Formatter valida.', 15 | 'invalidJSON' => 'Fallita l\'elaborazione della stringa json, errore: "{0}".', 16 | 'invalidMime' => 'Non è stato definito alcun Formatter valido per il mime type: "{0}".', 17 | 'missingExtension' => 'L\'estensione SimpleXML è richiesta per il formato XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/it/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} non è un livello di log valido.', 15 | 'invalidMessageType' => 'Il messaggio di tipo "{0}" non è supportato.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/it/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => 'L\'azione "{0}" non è stata implementata.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/it/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'L\'azione richiesta non è permessa.', 15 | 'invalidSameSite' => 'Il valore della proprietà SameSite deve essere None, Lax, Strict, oppure una stringa vuota. Rilevato: {0}', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/it/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} non è una classe Mock valida', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ja/Errors.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Errors language settings 13 | return [ 14 | 'pageNotFound' => '404 - ページが見つかりません', // '404 - Page Not Found' 15 | 'sorryCannotFind' => '申し訳ありません。お探しのページは見つからないようです。', // 'Sorry! Cannot seem to find the page you were looking for.' 16 | 'whoops' => 'おっと!', // 'Whoops!' 17 | 'weHitASnag' => '問題が発生したようです。後でもう一度お試しください...', // 'We seem to have hit a snag. Please try again later...' 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ja/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language strings 13 | return [ 14 | 'invalidModel' => '制作のために提供されたモデルが無効です。', // 'Invalid model supplied for fabrication.' 15 | 'missingFormatters' => '有効なフォーマッタが定義されていません。', // 'No valid formatters defined.' 16 | 'createFailed' => 'Fabricatorは "{0}" テーブルへの挿入に失敗しました: {1}', // 'Fabricator failed to insert on table "{0}": {1}' 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/ja/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'ファイルがありません: "{0}"', // 'File not found: "{0}"' 15 | 'cannotMove' => '"{0}" から "{1}" へファイルの移動ができません。理由: {2}', // 'Could not move file "{0}" to "{1}". Reason: {2}' 16 | 'expectedDirectory' => '{0} は有効なディレクトリではありません。', // '{0} expects a valid directory.' 17 | 'expectedFile' => '{0} は有効なファイルではありません。', // '{0} expects a valid file.' 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ja/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '"{0}" フィルタには、一致するエイリアスが定義されていなければなりません。', // '"{0}" filter must have a matching alias defined.' 15 | 'incorrectInterface' => '"{0}" は CodeIgniter\Filters\FilterInterface を実装する必要があります。', // '"{0}" must implement CodeIgniter\Filters\FilterInterface.' 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/ja/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => '不正なメッセージフォーマット: "{0}", 引数: "{1}"', // 'Invalid message format: "{0}", args: "{1}"' 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ja/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '"{0}" は無効なログレベルです。', // '"{0}" is an invalid log level.' 15 | 'invalidMessageType' => 'メッセージタイプ "{0}" はサポートされていません。', // 'The given message type "{0}" is not supported.' 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/ja/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" アクションは実装されていません。', // '"{0}" action not implemented.' 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ja/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '"{0}" は有効なモッククラスではありません。', // '"{0}" is not a valid Mock class' 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ko/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => '제공된 모델이 잘못되었습니다.', // 'Invalid model supplied for fabrication.' 15 | 'missingFormatters' => '정의된 포멧터가 없습니다.', // 'No valid formatters defined.' 16 | 'createFailed' => 'Fabricator가 "{0}" 테이블에 삽입하지 못했습니다: {1}.', // 'Fabricator failed to insert on table "{0}": {1}' 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/ko/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => '파일을 찾을 수 없습니다: "{0}"', // 'File not found: "{0}"' 15 | 'cannotMove' => '파일 "{0}" 경우에 "{1}" ({2}) 쪽으로 이동할 수 없습니다.', // 'Could not move file "{0}" to "{1}". Reason: {2}' 16 | 'expectedDirectory' => '{0}에 유효한 디렉토리가 없습니다.', // '{0} expects a valid directory.' 17 | 'expectedFile' => '{0}에 유효한 파일이 없습니다.', // '{0} expects a valid file.' 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ko/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '"{0}" 필터는 매치되는 별칭이 정의되어 있어야 합니다.', // '"{0}" filter must have a matching alias defined.' 15 | 'incorrectInterface' => '"{0}" 경우에는 CodeIgniter\Filters\FilterInterface 인터페이스를 구현해야 합니다.', // '"{0}" must implement CodeIgniter\Filters\FilterInterface.' 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/ko/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => '정확하지 않은 메시지 형식: "{0}", 인수: "{1}"', // 'Invalid message format: "{0}", args: "{1}"' 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ko/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '"{0}" 경우에는 올바르지 않은 로그 레벨입니다.', // '"{0}" is an invalid log level.' 15 | 'invalidMessageType' => '제공된 메시지의 "{0}" 유형을 지원하지 않습니다.', // 'The given message type "{0}" is not supported.' 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/ko/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" 동작이 구현되지 않았습니다.', // '"{0}" action not implemented.' 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ko/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '"{0}"는 유효하지 않은 모의(Mock) 클래스입니다.', // '"{0}" is not a valid Mock class' 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/lt/Errors.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Errors language settings 13 | return [ 14 | 'pageNotFound' => 'Tokio puslapio nėra (klaida 404)', 15 | 'sorryCannotFind' => 'Atsiprašome! Nepavyksta rasti puslapio, kurio ieškote.', 16 | 'whoops' => 'Ech!', 17 | 'weHitASnag' => 'Panašu, kad susidūrėme su kliūtimi. Prašome pamėginti vėliau...', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/lt/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => '„Fabrikavimui“ pateiktas netinkamas modelis.', 15 | 'missingFormatters' => 'Nėra nustatyta galiojančių formatavimo priemonių.', 16 | 'createFailed' => '„Fabricator“ nepavyko įterpti į lentelę „{0}“: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/lt/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Nepavyko rasti failo: „{0}“', 15 | 'cannotMove' => 'Nepavyko perkelti failo „{0}“ į „{1}“ (priežastis: „{2}“)', 16 | 'expectedDirectory' => '{0} tikisi validaus katalogo.', 17 | 'expectedFile' => '{0} tikisi validaus failo.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/lt/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '„{0}“ filtras turi turėti nustatytą slapyvardį.', 15 | 'incorrectInterface' => '„{0}“ turi įgyvendinti CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/lt/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '„{0}“ nėra galiojanti formatatoriaus klasė.', 15 | 'invalidJSON' => 'Nepavyko nuskaityti json eilutės, klaida: „{0}“.', 16 | 'invalidMime' => 'Mime tipui nėra apibrėžto formatatoriaus: „{0}“.', 17 | 'missingExtension' => 'XML formatavimui reikalingas PHP SimpleXML praplėtimas.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/lt/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Neteisingas pranešimo formatas: „{0}“, argumentai: „{1}“', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/lt/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '„{0}“ yra netinkamas žurnalo įrašo lygmuo.', 15 | 'invalidMessageType' => 'Nurodytas žurnalo įrašo tipas „{0}“ nepalaikomas.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/lt/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '„{0}“ veiksmas neįgyvendintas.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/lt/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Jūsų prašomas veiksmas neleidžiamas.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'Reikšmė SameSite turi būti None, Lax, Strict arba tuščia eilutė. Pateikta: „{0}“', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/lt/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '„{0}“ nėra galiojanti Mock klasė', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/lv/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Ražošanai piegādāts nederīgs modelis.', // 'Invalid model supplied for fabrication.' 15 | 'missingFormatters' => 'Nav definēti derīgi formatētāji.', // 'No valid formatters defined.' 16 | 'createFailed' => 'Ražotājam neizdevās ievietot tabulā {0}: {1}.', // 'Fabricator failed to insert on table {0}: {1}' 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/lv/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Fails nav atrasts: {0}', // 'File not found: {0}' 15 | 'cannotMove' => 'Nevarēja pārvietot failu {0} uz {1} ({2})', // 'Could not move file {0} to {1} ({2}).' 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/lv/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} filtram jābūt definētam atbilstošam aizstājvārdam.', // '{0} filter must have a matching alias defined.' 15 | 'incorrectInterface' => '{0} ir jāievieš CodeIgniter\Filters\FilterInterface.', // '{0} must implement CodeIgniter\Filters\FilterInterface.' 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/lv/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} ir nederīgs žurnāla līmenis.', // '{0} is an invalid log level.' 15 | 'invalidMessageType' => 'Norādītais ziņojuma veids `{0}` netiek atbalstīts.', // 'The given message type "{0}" is not supported.' 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/lv/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '`{0}` darbība nav ieviesta.', // '"{0}" action not implemented.' 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/lv/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => 'Parametrs neatbilst gaidītajam tipam.', // 'A parameter does not match the expected type.' 15 | 'missingDefaultRoute' => 'Nevar noteikt, kas jāparāda. Maršrutēšanas failā nav norādīts noklusējuma maršruts.', // 'Unable to determine what should be displayed. A default route has not been specified in the routing file.' 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/lv/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Jūsu pieprasītā darbība nav atļauta.', // 'The action you requested is not allowed.' 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'Vērtībai SameSite ir jābūt: `None`, `Lax`, `Strict` vai tukšai virknei. Norādīts: {0}', // 'The SameSite value must be None, Lax, Strict, or a blank string. Given: {0}' 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ml/Errors.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Errors language settings 13 | return [ 14 | 'pageNotFound' => '৪০৪ - പേജ് കണ്ടെത്തിയില്ല', 15 | 'sorryCannotFind' => 'ക്ഷമിക്കണം!നിങ്ങൾ തിരയുന്ന പേജ് കണ്ടെത്താനായില്ല. ', 16 | 'whoops' => 'ക്ഷമിക്കണം! ', 17 | 'weHitASnag' => 'ഒരു പ്രശ്നമുണ്ടെന്ന് ഞങ്ങൾ കരുതുന്നു.പിന്നീട് വീണ്ടും ശ്രമിക്കുക ... ', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ml/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'ബനവാത്തിനായുള്ള അസാധുവായ മോഡലിനായി നൽകിയിട്ടുണ്ട്. ', 15 | 'missingFormatters' => 'സാധുവായ ഫോർമാറ്ററുകളൊന്നും നിർവചിച്ചിട്ടില്ല. ', 16 | 'createFailed' => 'ഫാബ്രിക്കേറ്റർ ടേബിളിൽ ചേർക്കുന്നതിൽ പരാജയപ്പെട്ടു {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/ml/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'ഫയൽ കണ്ടെത്തിയില്ല: {0} ', 15 | 'cannotMove' => '{0} മുതൽ {1} ({2}) വരെ നീങ്ങാൻ കഴിഞ്ഞില്ല. ', 16 | 'expectedDirectory' => '{0} സാധുവായ ഒരു ഡയറക്ടറി പ്രതീക്ഷിക്കുന്നു. ', 17 | 'expectedFile' => '{0} സാധുവായ ഒരു ഫയൽ പ്രതീക്ഷിക്കുന്നു. ', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ml/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} ഫിൽട്ടറിന് പൊരുത്തപ്പെടുന്ന അപരനാമം നിർവചിച്ചിരിക്കണം.', 15 | 'incorrectInterface' => '{0} Code കോഡ്ഇഗ്നിറ്റർ \ ഫിൽട്ടറുകൾ \ ഫിൽട്ടർ ഇന്റർഫേസ് നടപ്പിലാക്കണം.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/ml/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" സാധുവായ ഫോർമാറ്റർ ക്ലാസ് അല്ല.', 15 | 'invalidJSON' => 'json സ്ട്രിംഗ് പാഴ്‌സ് ചെയ്യുന്നതിൽ പരാജയപ്പെട്ടു, പിശക്: "{0}"।', 16 | 'invalidMime' => 'mime തരത്തിന് ഫോർമാറ്ററൊന്നും നിർവചിച്ചിട്ടില്ല: "{0}"।', 17 | 'missingExtension' => 'XML ഫോർമാറ്റ് ചെയ്യാൻ SimpleXML വിപുലീകരണം ആവശ്യമാണ്.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ml/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} ഒരു അസാധുവായ ലോഗ് നിലയമാണ്', 15 | 'invalidMessageType' => 'നൽകിയ സന്ദേശ തരം "{0}" പിന്തുണയ്ക്കുന്നില്ല.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/ml/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" പ്രവർത്തനം നടപ്പിലാക്കിയില്ല.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ml/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'നിങ്ങൾ അഭ്യർത്ഥിച്ച പ്രവർത്തനം അനുവദനീയമല്ല.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'SameSite മൂല്യം തീർച്ചയായും None, Lax, Stഅല്ലെങ്കിൽ ഒരു ശൂന്യമായ സ്ട്രിംഗ് ആയിരിക്കണം.നൽകിയിട്ടുണ്ട്: {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ml/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} സാധുവായ മോക്ക് ക്ലാസ് അല്ല', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/nl/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Cache kan niet schrijven naar {0}', 15 | 'invalidHandlers' => 'Cache config moet een Array bevatten met $validHandlers.', 16 | 'noBackup' => 'Cache config vereist een Handler en BackupHandler.', 17 | 'handlerNotFound' => 'Cache config bevat een ongeldige Handler of BackupHandler.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/nl/Errors.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Errors language settings 15 | return [ 16 | 'pageNotFound' => '404 - Pagina niet gevonden', 17 | 'sorryCannotFind' => 'Sorry! De pagina die u zoekt kon niet gevonden worden.', 18 | 'whoops' => 'Oeps!', 19 | 'weHitASnag' => 'Er gaat iets fout. Probeer het later nog eens...', 20 | ]; 21 | -------------------------------------------------------------------------------- /Language/nl/Fabricator.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Fabricator language settings 15 | return [ 16 | 'invalidModel' => 'Onjuist model gegeven voor fabricatie.', 17 | 'missingFormatters' => 'Er zijn geen Geldige Formatters gedefinieerd.', 18 | 'createFailed' => 'Fabricator kon geen rij invoegen in de tabel "{0}": {1}', 19 | ]; 20 | -------------------------------------------------------------------------------- /Language/nl/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Bestand niet gevonden: {0}', 15 | 'cannotMove' => 'Kon bestand {0} niet verplaatsen naar {1} ({2})', 16 | 'expectedDirectory' => '{0} verwacht een bestaande map.', 17 | 'expectedFile' => '{0} verwacht een bestaand bestand.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/nl/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'Filter {0} moet een alias gedefineerd hebben.', 15 | 'incorrectInterface' => '{0} moet de interface CodeIgniter\Filters\FilterInterface implementeren.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/nl/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" is een ongeldige Formatter class.', 15 | 'invalidJSON' => 'Parsen van JSON string gefaald, fout: "{0}".', 16 | 'invalidMime' => 'Geen Formatter gedefineerd voor dit mime type: "{0}".', 17 | 'missingExtension' => 'De SimpleXML extension is verplicht voor het formateren van XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/nl/Language.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // "Language" language settings 15 | return [ 16 | 'invalidMessageFormat' => 'Onjuist geformatteerd bericht: "{0}", argumenten: "{1}"', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/nl/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} is een ongeldig log level.', 15 | 'invalidMessageType' => 'Het type bericht "{0}" is niet ondersteund.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/nl/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}"-actie niet geïmplementeerd.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/nl/Test.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Testing language settings 15 | return [ 16 | 'invalidMockClass' => '"{0}" is geen geldige Mock class.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/no/CLI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // CLI language settings 13 | return [ 14 | 'helpUsage' => 'bruke:', 15 | 'helpDescription' => 'Beskrivelse:', 16 | 'helpOptions' => 'alternativer:', 17 | 'helpArguments' => 'argumenter:', 18 | 'invalidColor' => 'Ugyldig {0} farge: {1}.', 19 | ]; 20 | -------------------------------------------------------------------------------- /Language/no/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'invalidHandlers' => '$validHandlers må inneholde en matrise for hurtigbufferkonfigurasjon.', 15 | 'noBackup' => 'Cache-konfigurasjonen må ha en behandler og en backup-håndterer.', 16 | 'handlerNotFound' => 'Cache-konfigurasjonen spesifiserer en ugyldig behandler eller backup-håndterer.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/no/Core.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Core language settings 13 | return [ 14 | 'copyError' => 'Det oppstod en feil under forsøket på å erstatte filen. Forsikre deg om at katalogen er skrivbar.', 15 | 'invalidFile' => 'Ugyldig fil: {0}', 16 | 'missingExtension' => 'Utvidelsen {0} kunne ikke lastes.', 17 | 'noHandlers' => '{0} må tilby minst en behandler.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/no/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Filen ble ikke funnet: {0}', 15 | 'cannotMove' => 'Filen kunne ikke flyttes fra {0} til {1} ({2})', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/no/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'For filter {0} må et matchende alias defineres.', 15 | 'incorrectInterface' => '{0} må implementere CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/no/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidJSON' => 'JSON-streng kunne ikke tolkes. Feil: "{0}".', 15 | 'missingExtension' => 'SimpleXML-utvidelsen er nødvendig for å formatere XML.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/no/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} er et ugyldig loggenivå.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/no/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => 'En parameter samsvarer ikke med den forventede typen.', 15 | 'missingDefaultRoute' => 'Det kunne ikke bestemmes hva som skal vises. Ingen standardrute ble spesifisert i rutefilen.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/pl/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Nieprawidłowy model przekazany do fabrykacji.', 15 | 'missingFormatters' => 'Nie zdefiniowano poprawnych formaterów.', 16 | 'createFailed' => 'Błąd fabrykatora przy dodawaniu do tabeli {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/pl/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Nie znaleziono pliku: {0}', 15 | 'cannotMove' => 'Nie można przenieść pliku {0} do {1} ({2})', 16 | 'expectedDirectory' => '{0} oczekiwał prawidłowego katalogu.', 17 | 'expectedFile' => '{0} oczekiwał prawidłowego pliku.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/pl/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'Filtr \'{0}\' musi mieć zdefiniowany pasujący alias.', 15 | 'incorrectInterface' => '{0} musi implementować CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/pl/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" nie jest prawidłową klasą formatującą.', 15 | 'invalidJSON' => 'Nie można przeanalizować łańcucha JSON, błąd: "{0}".', 16 | 'invalidMime' => 'Nie ma zdefiniowanego formatowania dla typu mime: "{0}".', 17 | 'missingExtension' => 'Rozszerzenie SimpleXML jest wymagane do formatowania XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/pl/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Nieprawidłowy format wiadomości: "{0}", argumenty: "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/pl/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} jest nieprawidłowym poziomem zapisywania Logów.', 15 | 'invalidMessageType' => 'Przekazany typ komunikatu "{0}" nie jest obsługiwany.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/pl/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => 'Akcja "{0}" nie jest zaimplementowana.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/pl/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Żądana akcja nie jest dozwolona.', 15 | 'insecureCookie' => 'Próba wysłania bezpiecznego pliku cookie przez niezabezpieczone połączenie.', 16 | 17 | // @deprecated 18 | 'invalidSameSite' => 'Wartość SameSite musi mieć wartość "None", "Lax", "Strict" lub być pustym ciągiem. Podano: {0}', 19 | ]; 20 | -------------------------------------------------------------------------------- /Language/pl/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} nie jest prawidłową klasą Mock', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/pt-BR/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language strings 13 | return [ 14 | 'invalidModel' => 'Model fornecido para fabricação é inválido.', // 'Invalid model supplied for fabrication.', 15 | 'missingFormatters' => 'Nenhum formatador válido definido.', // 'No valid formatters defined.', 16 | 'createFailed' => 'Fabricator falhou ao inserir na tabela "{0}": "{1}".', // 'Fabricator failed to insert on table "{0}": {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/pt-BR/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'O filtro "{0}" deve ter um alias correspondente definido.', // '"{0}" filter must have a matching alias defined.', 15 | 'incorrectInterface' => '"{0}" deve implementar CodeIgniter\Filters\FilterInterface.', // '"{0}" must implement CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/pt-BR/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Formato de mensagem inválido: "{0}", argumentos: "{1}"', // 'Invalid message format: "{0}", args: "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/pt-BR/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '"{0}" é um log de nível inválido.', // '"{0}" is an invalid log level.', 15 | 'invalidMessageType' => 'O tipo de mensagem "{0}" fornecido não é suportado.', // 'The given message type "{0}" is not supported.' 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/pt-BR/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" ação não implementada.', // '"{0}" action not implemented.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/pt-BR/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '"{0}" não é uma classe Mock válida', // '"{0}" is not a valid Mock class', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/pt/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Modelo fornecido invalido para fabricação', 15 | 'missingFormatters' => 'Nenhum formador valido defenido.', 16 | 'createFailed' => 'O fabricador falhou a inserir na tabela "{0}": {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/pt/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Arquivo não encontrado: {0}', 15 | 'cannotMove' => 'Não foi possível mover o arquivo {0} para {1} ({2})', 16 | 'expectedDirectory' => '{0} espera um diretório valido.', 17 | 'expectedFile' => '{0} espera um ficheiro valido.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/pt/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'O filtro \'{0}\' deve ter um alias (alcunha) correspondente definido.', 15 | 'incorrectInterface' => '{0} deve ser implementado CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/pt/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" não é uma classe Formatter Valida.', 15 | 'invalidJSON' => 'Falha ao analisar o texto json, erro: "{0}".', 16 | 'invalidMime' => 'Nenhum Formatter defenido para o mime tipo: "{0}".', 17 | 'missingExtension' => 'A extensão SimpleXML é necessária para formatar XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/pt/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Formato de mensagem Invalido: "{0}", args: "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/pt/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} é um nível de log inválido.', 15 | 'invalidMessageType' => 'O tipo de mensagem "{0}" não é suportado.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/pt/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" acção não implementada.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/pt/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'A ação requesitada não é permitida.', 15 | 'insecureCookie' => 'Tentativa de enviar uma cookie segura por uma conexão insegura.', 16 | 17 | // @deprecated 18 | 'invalidSameSite' => 'O atributo SameSite deve ser None, Lax, Strict, ou uma string vazia. Dado: {0}', 19 | ]; 20 | -------------------------------------------------------------------------------- /Language/pt/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '"{0}" não é uma class Mock valida', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ro/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Memoria cache nu poate scrie {0}.', 15 | 'invalidHandlers' => 'Configurația cache trebuie să aibă un array de $validHandlers.', 16 | 'noBackup' => 'Configurația cache-ului trebuie să aibă setat un handler și backupHandler.', 17 | 'handlerNotFound' => 'Configurația cache are un handler invalid sau un handler de rezervă specificat.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ro/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Model invalid furnizat pentru fabricație.', 15 | 'missingFormatters' => 'Nu au fost definite formatoare valide.', 16 | 'createFailed' => 'Fabricatorul nu a putut introduce pe tabel {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/ro/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Fișierul nu a fost găsit: {0}', 15 | 'cannotMove' => 'Nu s-a putut muta fișierul {0} la {1} ({2}).', 16 | 'expectedDirectory' => '{0} așteaptă un director valid.', 17 | 'expectedFile' => '{0} așteaptă un fișier valid.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ro/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} filtrul trebuie să aibă o potrivire cu aliasul definit.', 15 | 'incorrectInterface' => '{0} trebuie implementat CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/ro/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" nu este o clasă de formatare validă.', 15 | 'invalidJSON' => 'Nu s-a putut analiza șirul json, eroare: "{0}".', 16 | 'invalidMime' => 'Niciun formatator definit pentru tipul MIME: "{0}".', 17 | 'missingExtension' => 'Extensia SimpleXML este necesară pentru formatul XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ro/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} este un nivel de log invalid.', 15 | 'invalidMessageType' => 'Tipul de mesaj dat "{0}" nu este suportat.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/ro/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" acțiuni neimplementate.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ro/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Acțiunea pe care ați solicitat-o nu este permisă.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'Valoarea SameSite trebuie să fie None, Lax, Strict sau un șir gol. Dată fiind: {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ro/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} nu este o clasă simulată validă', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ru/Fabricator.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Fabricator language settings 15 | return [ 16 | 'invalidModel' => 'Поставляемая модель недопустима для изготовления.', 17 | 'missingFormatters' => 'Действительные форматеры не определены.', 18 | 'createFailed' => 'Не удалось создать вставку таблицы "{0}": {1}', 19 | ]; 20 | -------------------------------------------------------------------------------- /Language/ru/Files.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Files language settings 15 | return [ 16 | 'fileNotFound' => 'Файл {0} не найден.', 17 | 'cannotMove' => 'Не удалось переместить файл из {0} в {1}. ({2})', 18 | 'expectedDirectory' => '{0} ожидает допустимый каталог.', 19 | 'expectedFile' => '{0} ожидает допустимый файл.', 20 | ]; 21 | -------------------------------------------------------------------------------- /Language/ru/Filters.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Filters language settings 15 | return [ 16 | 'noFilter' => '{0} фильтр должен иметь соответствующий алиас.', 17 | 'incorrectInterface' => '{0} необходимо реализовать CodeIgniter\Filters\FilterInterface.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ru/Format.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Format language settings 15 | return [ 16 | 'invalidFormatter' => '"{0}" неверный Formatter класс.', 17 | 'invalidJSON' => 'Не удалось разобрать строку в JSON, Ошибка: "{0}".', 18 | 'invalidMime' => 'Нет определён MIME-тип: "{0}".', 19 | 'missingExtension' => 'Расширение SimpleXML требуется для форматирования XML.', 20 | ]; 21 | -------------------------------------------------------------------------------- /Language/ru/Language.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // "Language" language settings 15 | return [ 16 | 'invalidMessageFormat' => 'Недопустимый формат сообщения: "{0}", аргументы: "{1}"', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/ru/Log.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Log language settings 15 | return [ 16 | 'invalidLogLevel' => '{0} - это недопустимый уровень ведения журнала.', 17 | 'invalidMessageType' => 'Данный тип сообщения "{0}" не поддерживается.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ru/RESTful.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // RESTful language settings 15 | return [ 16 | 'notImplemented' => '"{0}" действие не реализовано.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/ru/Security.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Security language settings 15 | return [ 16 | 'disallowedAction' => 'Запрошенное вами действие не разрешено.', 17 | 'insecureCookie' => 'Попытка отправить защищенный файл cookie через незащищенное соединение.', 18 | 19 | // @deprecated 20 | 'invalidSameSite' => 'Значение SameSite должно быть None, Lax, Strict или пустая строка. Дано: "{0}"', 21 | ]; 22 | -------------------------------------------------------------------------------- /Language/ru/Test.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Testing language settings 15 | return [ 16 | 'invalidMockClass' => '"{0}" неверный Mock класс', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/si/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'ෆැබ්රිකේෂන් සඳහා වැරදි මොඩලයක් සපයා ඇත.', // Invalid model supplied for fabrication. 15 | 'missingFormatters' => 'නිවැරිදි ෆෝමැටර්ස් දක්වා නොමැත.', // No valid formatters defined. 16 | 'createFailed' => 'ෆැබ්රිකේටරය අසමත් වුනා ඇතුලත් කරන්න {0} ටේබලයට: {1}.', // Fabricator failed to insert on table {0}: {1}. 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/si/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'ගොනුව හමු නොවිණි: {0}', // File not found: {0} 15 | 'cannotMove' => 'ගොනුව ගෙනයාමට නොහැකි විය {0} සිට {1} ({2})', // Could not move file {0} to {1} ({2}) 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/si/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} filter යට ගැලපෙන අන්වර්ථ නාමයක් අර්ථ දක්වා තිබිය යුතුය.', // {0} filter must have a matching alias defined. 15 | 'incorrectInterface' => '{0} මගින් CodeIgniter\Filters\FilterInterface භාවිතා කල යුතුය.', // {0} must implement CodeIgniter\Filters\FilterInterface. 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/si/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} අවලංගු ලොග් මට්ටමකි.', // {0} is an invalid log level. 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/si/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" ක්‍රියාව ක්‍රියාත්මක කර නොමැත.', // "{0}" action not implemented. 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/si/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => 'පැරාමීටරයක් අපේක්ෂිත වර්ගය සමග ගැලපෙන්නේ නැත.', // A parameter does not match the expected type. 15 | 'missingDefaultRoute' => 'පෙන්විය යුතු දේ තීරණය කිරීමට නොහැක. ඩිෆෝල්ට් රවුට් එකක් රවුටින් ගොනුවේ සඳහන් කර නොමැත.', // Unable to determine what should be displayed. A default route has not been specified in the routing file. 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/si/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'ඔබ ඉල්ලූ ක්‍රියාවට අවසර නැත.', // The action you requested is not allowed. 15 | 'invalidSameSite' => 'SameSite හි අගය None, Lax, Strict හෝ blank string විය යුතුය. දී තිබෙන්නේ: {0}', // The SameSite value must be None, Lax, Strict, or a blank string. Given: {0} 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/sk/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Cache nie je možné uložiť do {0}', 15 | 'invalidHandlers' => 'Cache config musí mať pole z $validHandlers.', 16 | 'noBackup' => 'Cache config musí mať nastavený handler a backupHandler.', 17 | 'handlerNotFound' => 'Cache config má neplatný špecifikovaný handler alebo záložný handler.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/sk/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Na výrobu bol dodaný neplatný model.', 15 | 'missingFormatters' => 'Nie sú definované žiadne platné formátory.', 16 | 'createFailed' => 'Výrobcu sa nepodarilo vložiť do tabuľky {0}: {1}.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/sk/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Súbor nebol nájdený: {0}', 15 | 'cannotMove' => 'Súbor {0} nebolo možné presunúť do {1} ({2})', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/sk/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} filter musí mať definovaný zhodujúci sa alias.', 15 | 'incorrectInterface' => '{0} musí implementovať CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/sk/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" nie je platná Formatter trieda.', 15 | 'invalidJSON' => 'Parsovanie JSON reťazca zlyhalo, chyba: "{0}".', 16 | 'invalidMime' => 'Nie je definovaný žiadny Formatter pre mime type: "{0}".', 17 | 'missingExtension' => 'Rozšírenie SimpleXML je nevyhnutné pre XML formát.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/sk/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} je neplatná úroveň logu.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/sk/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" akcia nie je implementovaná.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/sk/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => 'Parameter sa nezhoduje s očakávaným typom.', 15 | 'missingDefaultRoute' => 'Nemôžné určiť, čo by malo byť zobrazené. Predvolená cesta nebola špecifikovaná v routing súbore.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/sk/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Požadovaná akcia nie je povolená.', 15 | 'invalidSameSite' => 'SameSite hodnota musí byť None, Lax, Strict, alebo prázdny reťazec. Zadané: {0}', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/sr/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Nije moguć upis keša na {0}.', 15 | 'invalidHandlers' => 'Keš konfig mora sadržati niz od $validHandlers.', 16 | 'noBackup' => 'Keš konfig mora imati postavljen handler i backupHandler.', 17 | 'handlerNotFound' => 'Keš konfig nema validan handler ili backup handler.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/sr/Errors.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Errors language settings 13 | return [ 14 | 'pageNotFound' => '404 - Stranica nije pronađena', 15 | 'sorryCannotFind' => 'Žao nam je, ali ne možemo pronaći stranicu koju tražite.', 16 | 'whoops' => 'Upsss!', 17 | 'weHitASnag' => 'Izgleda da smo naišli na prepreku. Molimo pokušajte ponovo kasnije...', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/sr/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Nevalidan model prosleđen za fabrikaciju.', 15 | 'missingFormatters' => 'Nema definisanih validnih formatera.', 16 | 'createFailed' => 'Fabrikator nije uspeo dodati u tabelu {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/sr/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Datoteka nije pronađena: {0}', 15 | 'cannotMove' => 'Ne mogu pomeriti datoteku {0} na {1} ({2}).', 16 | 'expectedDirectory' => '{0} očekuje validan direktorijum.', 17 | 'expectedFile' => '{0} očekuje validnu datoteku.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/sr/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} Filter mora imati definisan poklapajući alias.', 15 | 'incorrectInterface' => '{0} mora implementirati CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/sr/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" nije validna Formater klasa.', 15 | 'invalidJSON' => 'Neuspešna obrada json string-a, greška: "{0}".', 16 | 'invalidMime' => 'Nema definisanog formatera za mime tip: "{0}".', 17 | 'missingExtension' => 'SimpleXML ekstenzija je zahtevana za format XML-a.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/sr/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} nije validan log nivo.', 15 | 'invalidMessageType' => 'Dati tip poruke "{0}" nije podržan.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/sr/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" akcija nije implementirana.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/sr/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Akcija koju ste zatražili nije dozvoljena.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'SameSite vrednost mora biti None, Lax, Strict, ili prazan string. Dato: {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/sr/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} nije validna Mock klasa', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/sv-SE/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | return [ 13 | 'unableToWrite' => 'Cache kan ej skriva till "{0}"', 14 | 'invalidHandlers' => 'Cache-inställningarna måste innehålla en array $validHandlers.', 15 | 'noBackup' => 'Cache-inställningarna måste ha en handler och backupHandler satt.', 16 | 'handlerNotFound' => 'Cache-inställningarna har en felaktig handler eller backup handler satt.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/sv-SE/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | return [ 13 | 'invalidModel' => 'Ogiltig modell angiven.', 14 | 'missingFormatters' => 'Ingen giltig formaterare definierad.', 15 | 'createFailed' => 'Fabricator kunde inte göra insert i tabellen "{0}": {1}.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/sv-SE/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | return [ 13 | 'fileNotFound' => 'Kunde inte hitta filen: "{0}"', 14 | 'cannotMove' => 'Kunde inte flytta filen "{0}" till "{1}". Anledning: {2}', 15 | 'expectedDirectory' => '{0} kräver en giltig katalog.', 16 | 'expectedFile' => '{0} kräver en giltig fil.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/sv-SE/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | return [ 13 | 'noFilter' => 'Filtret "{0}" måste ha ett matchande alias definierat.', 14 | 'incorrectInterface' => '"{0}" måste implementera CodeIgniter\Filters\FilterInterface.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/sv-SE/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | return [ 13 | 'invalidFormatter' => '"{0}" är inte en giltig Formatter-klass.', 14 | 'invalidJSON' => 'Kunde inte avkoda JSON-strängen. Fel: {0}.', 15 | 'invalidMime' => 'Ingen Formatter definierad för mime-typ: "{0}".', 16 | 'missingExtension' => 'SimpleXML extension behövs för att formatera XML.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/sv-SE/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | return [ 13 | 'invalidMessageFormat' => 'Ogiltigt meddelandeformat: "{0}", argument: "{1}"', 14 | ]; 15 | -------------------------------------------------------------------------------- /Language/sv-SE/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | return [ 13 | 'invalidLogLevel' => '"{0}" är inte en giltig loggnivå.', 14 | 'invalidMessageType' => 'Det givna meddelandet av typen "{0}" stödjs inte.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/sv-SE/Number.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | return [ 13 | 'terabyteAbbr' => 'TB', 14 | 'gigabyteAbbr' => 'GB', 15 | 'megabyteAbbr' => 'MB', 16 | 'kilobyteAbbr' => 'KB', 17 | 'bytes' => 'Bytes', 18 | 19 | // don't forget the space in front of these! 20 | 'thousand' => ' tusen', 21 | 'million' => ' miljoner', 22 | 'billion' => ' miljarder', 23 | 'trillion' => ' biljon', 24 | 'quadrillion' => ' biljard', 25 | ]; 26 | -------------------------------------------------------------------------------- /Language/sv-SE/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | return [ 13 | 'notImplemented' => 'Funktionen "{0}" är inte implementerad.', 14 | ]; 15 | -------------------------------------------------------------------------------- /Language/sv-SE/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | return [ 13 | 'disallowedAction' => 'Funktionen du efterfrågade är inte tillåten.', 14 | 'insecureCookie' => 'Försökte att skicka en säker cookie över en icke säker förbindelse.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'Inställningen SameSite måste vara None, Lax, Strict, eller en blank sträng. Givet: "{0}"', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/sv-SE/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '"{0}" är inte en giltig Mock-klass', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/ta/Language.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // "Language" language settings 15 | return [ 16 | 'invalidMessageFormat' => 'தவறான செய்தி வடிவம்: "{0}", args: "{1}"', // 'Invalid message format: "{0}", args: "{1}"', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/ta/Log.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Log language settings 15 | return [ 16 | 'invalidLogLevel' => '"{0}" என்பது தவறான பதிவு நிலை.', // '"{0}" is an invalid log level.', 17 | 'invalidMessageType' => 'கொடுக்கப்பட்ட செய்தி வகை "{0}" ஆதரிக்கப்படவில்லை.', // 'The given message type "{0}" is not supported.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/ta/RESTful.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // RESTful language settings 15 | return [ 16 | 'notImplemented' => '"{0}" செயல் செயல்படுத்தப்படவில்லை.', // '"{0}" action not implemented.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/ta/Test.php: -------------------------------------------------------------------------------- 1 | 9 | * 10 | * For the full copyright and license information, please view 11 | * the LICENSE file that was distributed with this source code. 12 | */ 13 | 14 | // Testing language settings 15 | return [ 16 | 'invalidMockClass' => '"{0}" என்பது சரியான மாதிரி வகுப்பு அல்ல.', // '"{0}" is not a valid Mock class', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/th/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'ไม่สามารถเขียนแคชไปยัง {0}', 15 | 'invalidHandlers' => 'การกำหนดค่าแคชจะต้องมีอาร์เรย์ของ $validHandlers อยู่ด้วย', 16 | 'noBackup' => 'การกำหนดค่าแคชจะต้อมีการกำหนด handler และ backupHandler', 17 | 'handlerNotFound' => 'การกำหนดค่าแคชจะต้องมีตัวรับ (handler) ที่ถูกต้องหรือมีการระบุตัวรับสำรอง(backup handler)', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/th/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'โมเดลสำรับการสร้างข้อมูลที่ระบุไม่ถูกต้อง', 15 | 'missingFormatters' => 'ไม่มีการกำหนดรูปแบบที่ถูกต้อง', 16 | 'createFailed' => 'ตัวสร้างข้อมูลไม่สามารถแทรกขอมูลลงในตาราง {0}: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/th/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'ไม่พบไฟล์: {0}', 15 | 'cannotMove' => 'ไม่สามารถย้ายไฟล์ {0} ไปยัง {1} ({2})', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/th/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'ตัวกรอง {0} ต้องมีชื่อแทนที่ตรงกันที่กำหนดไว้', 15 | 'incorrectInterface' => '{0} จะต้องอิมพลีเม้นต์คลาส CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/th/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" ไม่ใช่คลาส Formatter ที่ถูกต้อง', 15 | 'invalidJSON' => 'แยกวิเคราะห์สตริง json ไม่สำเร็จ ข้อผิดพลาด: "{0}"', 16 | 'invalidMime' => 'ไม่มีตัวจัดรูปแบบที่กำหนดไว้สำหรับประเภท mime: "{0}"', 17 | 'missingExtension' => 'จำเป็นต้องมีส่วนขยาย SimpleXML เพื่อจัดรูปแบบ XML', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/th/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} เป็นระดับบันทึกที่ไม่ถูกต้อง', 15 | 'invalidMessageType' => 'ไม่รองรับประเภทข้อความที่ระบุ "{0}"', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/th/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => 'ไม่ได้ใช้งานการดำเนินการ "{0}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/th/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => 'พารามิเตอร์ไม่ตรงกับประเภทที่คาดไว้', 15 | 'missingDefaultRoute' => 'ไม่สามารถระบุได้ว่าควรแสดงอะไร ไม่ได้ระบุเส้นทางเริ่มต้นในไฟล์เส้นทาง', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/th/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'การกระทำที่คุณร้องขอไม่ได้รับอนุญาต', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'ค่า SameSite ต้องเป็น None, Lax, Strict หรือสตริงว่าง ให้: {0}', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/tr/Errors.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Errors language settings 13 | return [ 14 | 'pageNotFound' => '404 - Sayfa Bulunamadı', 15 | 'sorryCannotFind' => 'Üzgünüz! Aradığınız sayfa bulunamıyor gibi görünüyor.', 16 | 'whoops' => 'Tüh!', 17 | 'weHitASnag' => 'Bir sorunla karşılaştık gibi görünüyor. Lütfen daha sonra tekrar deneyin...', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/tr/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => 'Fabrication (imalat) için verilen model geçersiz.', 15 | 'missingFormatters' => 'Geçerli biçimlendiriciler tanımlanmamış.', 16 | 'createFailed' => 'Fabricator, "{0}" tablosuna ekleme yapamadı: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/tr/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Dosya bulunamadı: "{0}"', 15 | 'cannotMove' => '"{0}" dosyası "{1}" konumuna taşınamadı. Sebep: {2}', 16 | 'expectedDirectory' => '{0}, geçerli bir dizin bekliyor.', 17 | 'expectedFile' => '{0}, geçerli bir dosya bekliyor.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/tr/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '"{0}" filtresi, tanımlanmış eşleşen bir takma ad (alias) içermelidir.', 15 | 'incorrectInterface' => '"{0}", CodeIgniter\Filters\FilterInterface arayüzünü uygulamalıdır.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/tr/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" geçerli bir Biçimlendirici (Formatter) sınıfı değil.', 15 | 'invalidJSON' => 'JSON dizgisi ayrıştırılamadı. Hata: {0}', 16 | 'invalidMime' => '"{0}" MIME türü için tanımlanmış bir Biçimlendirici bulunmamaktadır.', 17 | 'missingExtension' => 'XML\'i biçimlendirmek için SimpleXML eklentisi gereklidir.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/tr/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Geçersiz mesaj formatı: "{0}", argümanlar: "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/tr/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '"{0}" geçersiz bir günlük seviyesi.', 15 | 'invalidMessageType' => 'Verilen mesaj türü "{0}" desteklenmiyor.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/tr/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" eylemi uygulanmadı.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/tr/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'İstediğiniz eyleme izin verilmiyor.', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'SameSite değeri None, Lax, Strict veya boş bir dizgi olmalıdır. Verilen: "{0}"', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/tr/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '"{0}" geçerli bir Mock sınıfı değil', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/uk/CLI.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // CLI language settings 13 | return [ 14 | 'commandNotFound' => 'Команду "{0}" не знайдено.', 15 | 'helpUsage' => 'Використання:', 16 | 'helpDescription' => 'Опис:', 17 | 'helpOptions' => 'Опції:', 18 | 'helpArguments' => 'Аргументи:', 19 | 'invalidColor' => 'Неприпустимий {0} колір: {1}.', 20 | ]; 21 | -------------------------------------------------------------------------------- /Language/uk/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Не вдається записати кеш в {0}', 15 | 'invalidHandlers' => 'Змінна $validHandlers в конфігурації кешу повинна містити масив.', 16 | 'noBackup' => 'В конфігурації кешування не вказаний обробник $backupHandler.', 17 | 'handlerNotFound' => 'В конфігурації кешування вказаний недопустимий обробник.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/uk/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language strings 13 | return [ 14 | 'invalidModel' => 'Недійсна модель, надана для виготовлення.', 15 | 'missingFormatters' => 'Не визначені допустимі форматування.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/uk/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Файл {0} не знайдено.', 15 | 'cannotMove' => 'Не вдалось переместити файл з {0} в {1}. ({2})', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/uk/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} фільтр мусить мати відповідний аліас.', 15 | 'incorrectInterface' => '{0} слід реалізувати CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/uk/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidJSON' => 'Не вдалось розібрати рядок в JSON, Помилка: "{0}".', 15 | 'missingExtension' => 'Розширення SimpleXML мусить бути для форматування XML.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/uk/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} - некорректний рівень ведення журналу.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/uk/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" дія не реалізована.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/uk/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => 'Параметр не відповідає очікуваному типу.', 15 | 'missingDefaultRoute' => 'Неможливо визначити, що слід відображати. Маршрут за замовчуванням не вказаний у файлі маршрутизації.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/vi/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => 'Không thể ghi cache vào {0}', 15 | 'invalidHandlers' => '$validHandlers phải chứa một mảng cấu hình cache.', 16 | 'noBackup' => 'Cấu hình cache phải có một trình xử lý và một trình xử lý dự phòng.', 17 | 'handlerNotFound' => 'Có một trình xử lý hoặc trình xử lý dự phòng không hợp lệ trong cấu hình cache.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/vi/Errors.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Errors language settings 13 | return [ 14 | 'pageNotFound' => '404 - Không tìm thấy trang', 15 | 'sorryCannotFind' => 'Xin lỗi! Trang yêu cầu không thể tìm thấy.', 16 | 'whoops' => 'Ôi!', 17 | 'weHitASnag' => 'Chúng tôi gặp phải một vấn đề. Vui lòng thử lại sau...', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/vi/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language strings 13 | return [ 14 | 'invalidModel' => 'Model không hợp lệ đã được chuyển đến Fabricator.', 15 | 'missingFormatters' => 'Không có định dạng hợp lệ nào được định nghĩa.', 16 | 'createFailed' => 'Fabricator không thể chèn {1} vào bảng {0}.', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/vi/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => 'Không tìm thấy tệp: {0}', 15 | 'cannotMove' => 'Không thể di chuyển tệp từ {0} đến {1} ({2}).', 16 | 'expectedDirectory' => '{0} yêu cầu một thư mục hợp lệ.', 17 | 'expectedFile' => '{0} yêu cầu một tệp hợp lệ.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/vi/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => 'Phải định nghĩa một bí danh phù hợp cho bộ lọc {0}.', 15 | 'incorrectInterface' => '{0} phải triển khai CodeIgniter\Filters\FilterInterface.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/vi/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" không phải là một lớp định dạng hợp lệ.', 15 | 'invalidJSON' => 'Chuỗi JSON không thể được phân tích. Lỗi: "{0}".', 16 | 'invalidMime' => 'Không có định dạng nào được định nghĩa cho loại MIME: "{0}".', 17 | 'missingExtension' => 'Tiện ích mở rộng SimpleXML cần thiết để định dạng XML.', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/vi/Language.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // "Language" language settings 13 | return [ 14 | 'invalidMessageFormat' => 'Định dạng tin nhắn không hợp lệ: "{0}", Tham số: "{1}"', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/vi/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} là mức độ ghi nhật ký không hợp lệ.', 15 | 'invalidMessageType' => 'Loại ghi nhật ký được chỉ định "{0}" không được hỗ trợ.', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/vi/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '"{0}" hành động không được thực hiện.', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/vi/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => 'Hành động bạn yêu cầu là không được phép.', 15 | 'insecureCookie' => 'Đã cố gắng gửi một cookie bảo mật qua một kết nối không an toàn.', 16 | 17 | // @deprecated 18 | 'invalidSameSite' => 'Giá trị SameSite phải là None, Lax, Strict, hoặc một chuỗi rỗng. Giá trị hiện tại: {0}', 19 | ]; 20 | -------------------------------------------------------------------------------- /Language/vi/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} không phải là lớp mô phỏng hợp lệ', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/zh-CN/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => '无法将缓存写入到 {0}。', 15 | 'invalidHandlers' => '缓存必须配置有 $validHandlers 数组。', 16 | 'noBackup' => '缓存必须配置有处理器 (handler) 和备用处理器 (backupHandler)。', 17 | 'handlerNotFound' => '缓存配置了无效的处理器 (handler) 或备用处理器 (backupHandler)。', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/zh-CN/Encryption.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Encryption language settings 13 | return [ 14 | 'noDriverRequested' => '没有指定的加密处理程序。', 15 | 'noHandlerAvailable' => '指定的加密处理程序 "{0}" 不可用。', 16 | 'unKnownHandler' => '未知的加密处理程序 "{0}"。', 17 | 'starterKeyNeeded' => '加密器需要一个密钥。', 18 | 'authenticationFailed' => '解密: 认证失败。', 19 | 'encryptionFailed' => '加密失败。', 20 | ]; 21 | -------------------------------------------------------------------------------- /Language/zh-CN/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => '给构造器提供的模型无效。', 15 | 'missingFormatters' => '没有定义有效的格式化器', 16 | 'createFailed' => '构造器在表 {0} 中插入数据失败。错误: {1}', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/zh-CN/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => '未找到文件: {0}', 15 | 'cannotMove' => '无法将文件 {0} 移动到 {1} ({2})。', 16 | 'expectedDirectory' => '{0} 应为有效的目录。', 17 | 'expectedFile' => '{0} 应为有效的文件。', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/zh-CN/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '过滤器 {0} 必须有一个匹配的别名定义。', 15 | 'incorrectInterface' => '{0} 必须实现 CodeIgniter\Filters\FilterInterface。', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/zh-CN/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" 不是一个有效的格式化器。', 15 | 'invalidJSON' => '解析 json 字符串失败,错误: "{0}"', 16 | 'invalidMime' => '没有为 mime 类型 "{0}" 定义格式化器。', 17 | 'missingExtension' => '需要 SimpleXML 扩展来格式化 XML。', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/zh-CN/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} 是一个无效的日志级别。', 15 | 'invalidMessageType' => '不支持给定的消息类别 "{0}"。', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/zh-CN/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => '操作 "{0}" 未实现。', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/zh-CN/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => '一个参数不符合预期的类型。', 15 | 'missingDefaultRoute' => '无法确定应显示的内容。路由文件中没有指定默认路由。', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/zh-CN/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => '当前请求操作不被允许。', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'SameSite 的值必须是 None, Lax, Strict 或者空白字符串。当前是 {0}。', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/zh-CN/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} 不是一个有效的 Mock 类', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/zh-CN/View.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // View language settings 13 | return [ 14 | 'invalidCellMethod' => '{class}::{method} 不是有效的方法。', 15 | 'missingCellParameters' => '{class}::{method} 不需要参数。', 16 | 'invalidCellParameter' => '{0} 不是有效的参数名。', 17 | 'noCellClass' => '没有提供视图组件类。', 18 | 'invalidCellClass' => '无法找到视图组件类: {0}', 19 | 'tagSyntaxError' => '你的解析器标签中有一个语法错误: {0}', 20 | ]; 21 | -------------------------------------------------------------------------------- /Language/zh-TW/Cache.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Cache language settings 13 | return [ 14 | 'unableToWrite' => '無法寫入快取 {0} 。', 15 | 'invalidHandlers' => '快取設置必須具有 $validHandlers 陣列。', 16 | 'noBackup' => '快取設置必須具有處理器(handler)以及備份處理器(backupHandler)。', 17 | 'handlerNotFound' => '快取設置中指定了無效的處理器(handler)或備份處理器(backupHandler)。', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/zh-TW/Fabricator.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Fabricator language settings 13 | return [ 14 | 'invalidModel' => '提供了無效的模型給 fabrication 。', 15 | 'missingFormatters' => '並沒有宣告有效的 formatters 。', 16 | 'createFailed' => 'Fabricator 無法在表 {0} 上插入 {1} 。', 17 | ]; 18 | -------------------------------------------------------------------------------- /Language/zh-TW/Files.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Files language settings 13 | return [ 14 | 'fileNotFound' => '找不到檔案:{0}', 15 | 'cannotMove' => '無法將檔案從 {0} 移動到 {1}。({2})', 16 | 'expectedDirectory' => '{0} 需要是一個有效的目錄。', 17 | 'expectedFile' => '{0} 需要一個有效的檔。', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/zh-TW/Filters.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Filters language settings 13 | return [ 14 | 'noFilter' => '{0} 過濾器必續定義一個匹配的別名。', 15 | 'incorrectInterface' => '{0} 必需實作介面: CodeIgniter\Filters\FilterInterface ', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/zh-TW/Format.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Format language settings 13 | return [ 14 | 'invalidFormatter' => '"{0}" 並非有效的 Formatter 類別。', 15 | 'invalidJSON' => '解析JSON字串失敗,錯誤:"{0}" 。', 16 | 'invalidMime' => '並沒有為 mime 類型:"{0}" 定義 Formatter。', 17 | 'missingExtension' => '格式化XML需要使用到SimpleXML擴充元件。', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/zh-TW/Log.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Log language settings 13 | return [ 14 | 'invalidLogLevel' => '{0} 是無效的紀錄層級(log level)。', 15 | 'invalidMessageType' => '不支援給定的 "{0}" 訊息類型。', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/zh-TW/Publisher.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Publisher language settings 13 | return [ 14 | 'collision' => '分發器在 將{1} 複製 到{2} 時遇到意外 {0}。', 15 | 'destinationNotAllowed' => '目標不在分發器目錄的允許清單中:{0}', 16 | 'fileNotAllowed' => '{0}未通過以下限制 {1}: {2}{0}。', 17 | 18 | // Publish Command 19 | 'publishMissing' => '在所有命名空間中未檢測到 {0} 分發器類。', 20 | 'publishSuccess' => '{0} 已發 佈{1} 檔 到{2}。', 21 | 'publishFailure' => '{0} 未能發佈到 {1}!', 22 | ]; 23 | -------------------------------------------------------------------------------- /Language/zh-TW/RESTful.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // RESTful language settings 13 | return [ 14 | 'notImplemented' => "'{0}' 動詞(action)未執行。", 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/zh-TW/Router.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Router language settings 13 | return [ 14 | 'invalidParameter' => '參數與預期型別不匹配。', 15 | 'missingDefaultRoute' => '尚未在路由檔案中指定預設路由,導致無法顯示內容。', 16 | ]; 17 | -------------------------------------------------------------------------------- /Language/zh-TW/Security.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Security language settings 13 | return [ 14 | 'disallowedAction' => '您請求了不允許的行動(action)。', 15 | 16 | // @deprecated 17 | 'invalidSameSite' => 'SameSite 必須設定為 None、Lax、Strict 或是空字串,而數值卻是:{0} 。', 18 | ]; 19 | -------------------------------------------------------------------------------- /Language/zh-TW/Test.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // Testing language settings 13 | return [ 14 | 'invalidMockClass' => '{0} 不是有效的 Mock 類', 15 | ]; 16 | -------------------------------------------------------------------------------- /Language/zh-TW/View.php: -------------------------------------------------------------------------------- 1 | 7 | * 8 | * For the full copyright and license information, please view 9 | * the LICENSE file that was distributed with this source code. 10 | */ 11 | 12 | // View language settings 13 | return [ 14 | 'invalidCellMethod' => '{class}::{method} 不是有效的方法。', 15 | 'missingCellParameters' => '{class}::{method} 沒有參數。', 16 | 'invalidCellParameter' => '{0} 不是有效的參數名稱。', 17 | 'noCellClass' => '沒有提供視圖元件類別。', 18 | 'invalidCellClass' => '無法找到視圖元件類別: {0}.', 19 | 'tagSyntaxError' => '您的解析器標籤(Parser tags)中存在著語法錯誤: {0}', 20 | ]; 21 | --------------------------------------------------------------------------------