mirror of
https://github.com/appwrite/appwrite.git
synced 2026-05-26 13:51:13 +00:00
Merge remote-tracking branch 'appwrite/master' into japanese
This commit is contained in:
+15
-2
@@ -1,3 +1,16 @@
|
||||
# Version 0.3.0 (PRE-RELEASE)
|
||||
|
||||
## Planned Issues
|
||||
|
||||
* Added 7 new locales for locale service and email templates (af, ar, cz, hu, lt, no, ru, si, sv, ta, vi, zh-cn, zh-tw)
|
||||
* New users service routes to allow updates pref and name update
|
||||
* 2 stage Docker build
|
||||
* New database rule validation options
|
||||
* Update docs example with auth info
|
||||
* Limit HTTP origin check only to browser integrations
|
||||
* Allow electron apps to not pass origin header
|
||||
* New OAuth adapters (Amazon, Dropbox, Microsoft, Slack, VK)
|
||||
|
||||
# Version 0.2.0 (PRE-RELEASE)
|
||||
|
||||
## Features
|
||||
@@ -5,7 +18,7 @@
|
||||
* Added option to limit access to the Appwrite console
|
||||
* Added option to disable abuse check and rate limits
|
||||
* Added input field with the server API endpoint for easy access
|
||||
* Added new OAuth providers for Google and Gitlab
|
||||
* Added new OAuth providers for Google, Bitbucket and GitLab
|
||||
* Added 15 new locales for locale service and email templates (cat, de, es, fi, fr, gr, hi, id, it, nl, pt-br, pt-pt, ro, tr, ua)
|
||||
* Improved test coverage for the project and synced DEV & CI environments settings
|
||||
|
||||
@@ -20,4 +33,4 @@
|
||||
* Changed auth service 'redirect' param to 'confirm' for better clarity
|
||||
* Updated all SDKs to sync with API changes
|
||||
|
||||
# Version 0.1.15 (NOT-RELEASED)
|
||||
# Version 0.1.15 (NOT-RELEASED)
|
||||
|
||||
+2
-2
@@ -3,9 +3,9 @@
|
||||
## Our Pledge
|
||||
|
||||
In the interest of fostering an open and welcoming environment, we as
|
||||
contributors and maintainers pledge to making participation in our project and
|
||||
contributors and maintainers pledge to make participation in our project and
|
||||
our community a harassment-free experience for everyone, regardless of age, body
|
||||
size, disability, ethnicity, sex characteristics, gender identity and expression,
|
||||
size, disability, ethnicity, sex characteristics, gender identity, expression,
|
||||
level of experience, education, socio-economic status, nationality, personal
|
||||
appearance, race, religion, or sexual identity and orientation.
|
||||
|
||||
|
||||
+13
-13
@@ -1,6 +1,6 @@
|
||||
# Contributing
|
||||
|
||||
We would ❤️ for you to contribute to Appwrite and help make it better! As a contributor, here are the guidelines we would like you to follow:
|
||||
We would ❤️ for you to contribute to Appwrite and help make it better! As a contributor, here are the guidelines we would like you to follow:
|
||||
|
||||
## Code of Conduct
|
||||
|
||||
@@ -8,7 +8,7 @@ Help us keep Appwrite open and inclusive. Please read and follow our [Code of Co
|
||||
|
||||
## Technology Stack
|
||||
|
||||
To start helping us to improve Appwrite server, prior knowledge of Appwrite technology stack can help you with getting started.
|
||||
To start helping us to improve Appwrite server, prior knowledge of Appwrite's technology stack can help you with getting started.
|
||||
|
||||
Appwrite stack is combined from a variety of open-source technologies and tools. Appwrite backend API is written primarily with PHP version 7 and above on top of the Utopia PHP framework. Appwrite frontend is built with tools like gulp, less and litespeed.js. We use Docker as the container technology to package the Appwrite server for easy integration on cloud, on-premise or local hosts.
|
||||
|
||||
@@ -26,9 +26,9 @@ Appwrite stack is combined from a variety of open-source technologies and tools.
|
||||
|
||||
## Package Managers
|
||||
|
||||
Appwrite is using a package manager for managing code dependencies for both backend and frontend development. We try our best to avoid creating any unnecessary and any new dependency to the project is subjected to a lead developer review and approval.
|
||||
Appwrite uses a package manager for managing code dependencies for both backend and frontend development. We try our best to avoid creating any unnecessary and any new dependency to the project is subjected to a lead developer review and approval.
|
||||
|
||||
Many of Appwrite internal modules are also used as dependencies to allow other Appwrite's projects to reuse them and as a way to contribute them back to the community.
|
||||
Many of Appwrite's internal modules are also used as dependencies to allow other Appwrite's projects to reuse them and as a way to contribute them back to the community.
|
||||
|
||||
Appwrite uses PHPs Composer for managing dependencies on the server-side and JS NPM for managing dependencies on the frontend side.
|
||||
|
||||
@@ -42,9 +42,9 @@ We use prettier for our JS coding standards and for auto-formatting our code.
|
||||
|
||||
Appwrite is built to scale. Please keep in mind that the Appwrite stack can run in different environments and different scales.
|
||||
|
||||
We wish Appwrite will be as easy to set up and in a single, local host and easy to grow to a large environment with thousands and even hundreds of instances.
|
||||
We wish Appwrite will be as easy to set up and in a single, localhost and easy to grow to a large environment with thousands and even hundreds of instances.
|
||||
|
||||
When contributing code please take into account the following considerations:
|
||||
When contributing code, please take into account the following considerations:
|
||||
|
||||
* Response Time
|
||||
* Throughput
|
||||
@@ -57,17 +57,17 @@ When contributing code please take into account the following considerations:
|
||||
|
||||
## Architecture
|
||||
|
||||
Appwrite current structure is a combination of both Monolithic and Microservice architectures, but our final goal, as we grow is to be using only microservices.
|
||||
Appwrite's current structure is a combination of both Monolithic and Microservice architectures, but our final goal, as we grow is to be using only microservices.
|
||||
|
||||
### The Monolithic Part
|
||||
|
||||
Appwrite main API container is designed as a monolithic app. This is a decision we made to allow us to develop the project faster while still being a very small team.
|
||||
Appwrite's main API container is designed as a monolithic app. This is a decision we made to allow us to develop the project faster while still being a very small team.
|
||||
|
||||
Although the Appwrite API is a monolithic app, it has a very clear separation of concern as each internal service or worker is separated by its container which will allow us as we grow to start breaking services for better maintenance and scalability.
|
||||
|
||||
### The Microservice Part
|
||||
|
||||
Each container in Appwrite is a microservice by its own. Each service is an independent process which can scale without regard to any of the other services.
|
||||
Each container in Appwrite is a microservice on its own. Each service is an independent process that can scale without regard to any of the other services.
|
||||
|
||||
Currently, all of the Appwrite microservices are intended to communicate using TCP protocol over a private network. You should be aware to not expose any of the services to the public-facing network, besides the public port 80 and 443 who by default are used to expose the Appwrite HTTP API.
|
||||
|
||||
@@ -93,10 +93,10 @@ This is also important for the Appwrite lead developers to be able to give techn
|
||||
|
||||
## Setup
|
||||
|
||||
To set up a working development environment just clone the project git repository and install the backend and frontend dependencies using the proper package manager and create run the docker-compose stack.
|
||||
To set up a working development environment just fork the project git repository and install the backend and frontend dependencies using the proper package manager and create run the docker-compose stack.
|
||||
|
||||
```bash
|
||||
git clone git@github.com:appwrite/appwrite.git
|
||||
git clone git@github.com:[YOUR_FORK_HERE]/appwrite.git
|
||||
|
||||
cd appwrite
|
||||
|
||||
@@ -121,6 +121,6 @@ Before running the command make sure you have proper write permissions to Appwri
|
||||
|
||||
## Tutorials
|
||||
|
||||
From time to time our team will add tutorials that will help contributors find there way in the Appwrite source code. Below is a list of currently available tutorials:
|
||||
From time to time our team will add tutorials that will help contributors find their way in the Appwrite source code. Below is a list of currently available tutorials:
|
||||
|
||||
* [Adding Support for a New OAuth Provider](./docs/AddOAuthProvider.md)
|
||||
* [Adding Support for a New OAuth Provider](./docs/tutorials/add-oauth-provider.md)
|
||||
|
||||
@@ -11,14 +11,15 @@
|
||||
[](https://gitter.im/appwrite/community?utm_source=share-link&utm_medium=link&utm_campaign=share-link)
|
||||
[](https://travis-ci.org/appwrite/appwrite)
|
||||
[](https://stackshare.io/appwrite)
|
||||
[](https://app.releasly.co/sites/appwrite/appwrite?utm_source=github_badge)
|
||||
|
||||
---
|
||||
|
||||
Appwrite is a simple self-hosted backend server for web and mobile developers with a shiny dashboard and a very easy to use REST API.
|
||||
|
||||
Appwrite API services aims to make developers life a lot easier by hiding the complexity of common and repetitive software development tasks.
|
||||
Appwrite API services aim to make developer's life a lot easier by hiding the complexity of common and repetitive software development tasks.
|
||||
|
||||
Using Appwrite you can easily manage user authentication with multiple sign-in methods, database for storing and querying user and teams data, storage and file management, image manipulation and cropping, scheduled cron tasks and many other features to help you get more results in faster times and with a lot less code.
|
||||
Using Appwrite you can easily manage user authentication with multiple sign-in methods, a database for storing and querying user and teams data, storage and file management, image manipulation and cropping, scheduled cron tasks and many other features to help you get more results in faster times and with a lot less code.
|
||||
|
||||
[https://appwrite.io](https://appwrite.io)
|
||||
|
||||
@@ -26,9 +27,9 @@ Using Appwrite you can easily manage user authentication with multiple sign-in m
|
||||
|
||||
## Installation
|
||||
|
||||
Appwrite backend server is designed to run in a container environment. Running your server is as easy as running one command from your terminal. You can run Appwrite on your localhost using docker-compose or on any other container orchestration tool like Kubernetes, Docker Swarm or Rancher.
|
||||
Appwrite backend server is designed to run in a container environment. Running your server is as easy as running one command from your terminal. You can either run Appwrite on your localhost using docker-compose or on any other container orchestration tool like Kubernetes, Docker Swarm or Rancher.
|
||||
|
||||
The easiest way to start running your Appwrite server is by running our docker compose file:
|
||||
The easiest way to start running your Appwrite server is by running our docker-compose file:
|
||||
|
||||
```bash
|
||||
mkdir appwrite-ce && \
|
||||
@@ -41,7 +42,7 @@ docker-compose up -d --remove-orphans
|
||||
Once the Docker installation completes, go to http://localhost to access the Appwrite console from your browser. Please notice that on non-linux native hosts, the server might take a few minutes to start after installation completes.
|
||||
|
||||
|
||||
For advanced, production and custom installation, check out our Docker [environment variables](/docs/EnviornementVariables.md) docs.
|
||||
For advanced, production and custom installation, check out our Docker [environment variables](docs/tutorials/environment-variables.md) docs.
|
||||
|
||||
### Changing Port Number
|
||||
|
||||
@@ -59,15 +60,15 @@ Getting started with Appwrite is as easy as creating a new project, choosing you
|
||||
### Services
|
||||
|
||||
* [**Auth**](https://appwrite.io/docs/auth) - Manage user authentication using multiple sign-in methods and account recovery.
|
||||
* [**Account**](https://appwrite.io/docs/account) - Manage current user account. Track and manage the user sessions, devices and security audit log.
|
||||
* [**Account**](https://appwrite.io/docs/account) - Manage current user account. Track and manage the user sessions, devices, and security audit log.
|
||||
* [**Users**](https://appwrite.io/docs/users) - Manage and list all project users when in admin mode.
|
||||
* [**Teams**](https://appwrite.io/docs/teams) - Manage and group users in teams. Manage memberships, invites and users roles within a team.
|
||||
* [**Database**](https://appwrite.io/docs/database) - Manage database collections and document. Read, create, update and delete documents and filter lists of documents collections using advanced filter with graph like capabilities.
|
||||
* [**Storage**](https://appwrite.io/docs/storage) - Manage storage files. Read, create, delete and preview files. Manipulate your files preview to fit your app perfectly. All files are scanned by ClamAV and stored in a secure and encrypted way.
|
||||
* [**Locale**](https://appwrite.io/docs/locale) - Track users location, and manage your app locale based data.
|
||||
* [**Avatars**](https://appwrite.io/docs/avatars) - Manage your users avatars, countries flags, browser icons, credit card symbols and generate QR codes.
|
||||
* [**Teams**](https://appwrite.io/docs/teams) - Manage and group users in teams. Manage memberships, invites and user roles within a team.
|
||||
* [**Database**](https://appwrite.io/docs/database) - Manage database collections and document. Read, create, update and delete documents and filter lists of documents collections using an advanced filter with graph-like capabilities.
|
||||
* [**Storage**](https://appwrite.io/docs/storage) - Manage storage files. Read, create, delete and preview files. Manipulate the preview of your files to fit your app perfectly. All files are scanned by ClamAV and stored in a secure and encrypted way.
|
||||
* [**Locale**](https://appwrite.io/docs/locale) - Track user's location, and manage your app locale-based data.
|
||||
* [**Avatars**](https://appwrite.io/docs/avatars) - Manage your user's avatars, country's flags, browser icons, credit card symbols and generate QR codes.
|
||||
|
||||
For the complete API documentation, visit [https://appwrite.io/docs](https://appwrite.io/docs). For more tutorials, news and announcments checkout our [blog](https://medium.com/appwrite-io).
|
||||
For the complete API documentation, visit [https://appwrite.io/docs](https://appwrite.io/docs). For more tutorials, news and announcements check out our [blog](https://medium.com/appwrite-io).
|
||||
|
||||
### SDKs
|
||||
|
||||
@@ -94,32 +95,34 @@ Join our growing community around the world! Follow us on [Twitter](https://twit
|
||||
|
||||
All code contributions - including those of people having commit access - must go through a pull request and approved by a core developer before being merged. This is to ensure proper review of all the code.
|
||||
|
||||
We really ❤️ pull requests! If you wish to help, you can learn more about how you can contribute to this project in the [contribution guide](CONTRIBUTING.md).
|
||||
We truly ❤️ pull requests! If you wish to help, you can learn more about how you can contribute to this project in the [contribution guide](CONTRIBUTING.md).
|
||||
|
||||
## Credits
|
||||
|
||||
Created by [Eldad Fux](https://twitter.com/eldadfux) with the amazing help of our **amazing contributors:**
|
||||
|
||||
* 🇺🇸 Justin Dorfman ([Github](https://github.com/jdorfman), [Twitter](https://twitter.com/jdorfman))
|
||||
* 🇺🇳 0xflotus ([Github](https://github.com/0xflotus))
|
||||
* 🇳🇴 Petter Charles Redfern ([Github](https://github.com/Chaaarles))
|
||||
* 🇧🇷 Jessé Souza ([Github](https://github.com/jessescn))
|
||||
* 🇪🇸 Esther Álvarez Feijoo ([Github](https://github.com/EstherAF))
|
||||
* 🇮🇳 Christy Jacob ([Github](https://github.com/christyjacob4), [Linkedin](https://www.linkedin.com/in/christyjacob4/))
|
||||
* 🇺🇦 Dmitriy Danilov ([Github](https://github.com/daniloff200), [Twitter](https://twitter.com/daniloff200))
|
||||
* 🇮🇩 Zeet ([Github](https://github.com/Kiy4h))
|
||||
* 🇫🇮 Pessi Päivärinne ([Github](https://github.com/pessip))
|
||||
* 🇺🇳 Sergi Vos ([Github](https://github.com/sergivb01), [Twitter](https://twitter.com/sergivb01), [Linkedin](https://www.linkedin.com/in/sergivb01/))
|
||||
* 🇮🇱 Tomer Cohen ([Github](https://github.com/tomer), [Twitter](https://twitter.com/tomer))
|
||||
* 🇮🇹 Tatiana ([Github](https://github.com/tacoelho))
|
||||
* 🇬🇷 Panagiotis Skarlas ([Github](https://github.com/1qk1), [Twitter](https://twitter.com/qktweets))
|
||||
* 🇷🇺 Alexey Pyltsyn ([Github](https://github.com/lex111))
|
||||
* 🇩🇪 Robin C ([Github](https://github.com/Taminoful))
|
||||
* 🇮🇳 Parikshit Hooda ([Github](https://github.com/Parikshit-Hooda))
|
||||
* 🇫🇷 Corentin Le Fur ([Github](https://github.com/crtlf))
|
||||
* 🇬🇧 Callum Lowry ([Github](https://github.com/Girxffe))
|
||||
* 🇷🇴 Bogdan Covrig ([Github](https://github.com/BogDAAAMN), [Twitter](https://twitter.com/BogdanCovrig))
|
||||
* 🇳🇱 Kolkies ([Github](https://github.com/kolkies.dev))
|
||||
* 🇹🇷 Mustafa Dur ([Github](https://github.com/tosbaha))
|
||||
* 🇵🇹 Luís Pinto ([Github](https://github.com/LiTO773))
|
||||
* 🇮🇳 Saksham Saxena ([Github](https://github.com/sakkshm))
|
||||
* 🇺🇸 Justin Dorfman ([GitHub](https://github.com/jdorfman), [Twitter](https://twitter.com/jdorfman))
|
||||
* 🇺🇳 0xflotus ([GitHub](https://github.com/0xflotus))
|
||||
* 🇳🇴 Petter Charles Redfern ([GitHub](https://github.com/Chaaarles))
|
||||
* 🇧🇷 Jessé Souza ([GitHub](https://github.com/jessescn))
|
||||
* 🇪🇸 Esther Álvarez Feijoo ([GitHub](https://github.com/EstherAF))
|
||||
* 🇮🇳 Christy Jacob ([GitHub](https://github.com/christyjacob4), [LinkedIn](https://www.linkedin.com/in/christyjacob4/))
|
||||
* 🇺🇦 Dmitriy Danilov ([GitHub](https://github.com/daniloff200), [Twitter](https://twitter.com/daniloff200))
|
||||
* 🇮🇩 Zeet ([GitHub](https://github.com/Kiy4h))
|
||||
* 🇫🇮 Pessi Päivärinne ([GitHub](https://github.com/pessip))
|
||||
* 🇺🇳 Sergi Vos ([GitHub](https://github.com/sergivb01), [Twitter](https://twitter.com/sergivb01), [LinkedIn](https://www.linkedin.com/in/sergivb01/))
|
||||
* 🇮🇱 Tomer Cohen ([GitHub](https://github.com/tomer), [Twitter](https://twitter.com/tomer))
|
||||
* 🇮🇹 Tatiana ([GitHub](https://github.com/tacoelho))
|
||||
* 🇬🇷 Panagiotis Skarlas ([GitHub](https://github.com/1qk1), [Twitter](https://twitter.com/qktweets))
|
||||
* 🇷🇺 Alexey Pyltsyn ([GitHub](https://github.com/lex111))
|
||||
* 🇩🇪 Robin C ([GitHub](https://github.com/Taminoful))
|
||||
* 🇮🇳 Parikshit Hooda ([GitHub](https://github.com/Parikshit-Hooda))
|
||||
* 🇫🇷 Corentin Le Fur ([GitHub](https://github.com/crtlf))
|
||||
* 🇬🇧 Callum Lowry ([GitHub](https://github.com/Girxffe))
|
||||
* 🇷🇴 Bogdan Covrig ([GitHub](https://github.com/BogDAAAMN), [Twitter](https://twitter.com/BogdanCovrig))
|
||||
* 🇳🇱 Kolkies ([GitHub](https://github.com/kolkies.dev))
|
||||
* 🇹🇷 Mustafa Dur ([GitHub](https://github.com/tosbaha))
|
||||
* 🇵🇹 Luís Pinto ([GitHub](https://github.com/LiTO773))
|
||||
* 🇮🇳 Saksham Saxena ([GitHub](https://github.com/sakkshm))
|
||||
* 🇮🇱 Dima Vishnevetsky ([GitHub](https://github.com/dimshik100), [Twitter](https://twitter.com/dimshik100))
|
||||
* 🇭🇺 lacexd ([GitHub](https://github.com/lacexd))
|
||||
|
||||
+5
-9
@@ -435,14 +435,10 @@ $utopia->get('/v1/proxy')
|
||||
$utopia->get('/v1/open-api-2.json')
|
||||
->label('scope', 'public')
|
||||
->label('docs', false)
|
||||
->param('platform', 'client', function () {
|
||||
return new WhiteList(['client', 'server']);
|
||||
}, 'Choose target platform.', true)
|
||||
->param('extensions', 0, function () {
|
||||
return new Range(0, 1);
|
||||
}, 'Show extra data.', true)
|
||||
->param('platform', 'client', function () {return new WhiteList(['client', 'server']);}, 'Choose target platform.', true)
|
||||
->param('extensions', 0, function () {return new Range(0, 1);}, 'Show extra data.', true)
|
||||
->action(
|
||||
function ($platform, $extensions) use ($response, $request, $utopia, $domain, $version, $services) {
|
||||
function ($platform, $extensions) use ($response, $request, $utopia, $domain, $services) {
|
||||
function fromCamelCase($input)
|
||||
{
|
||||
preg_match_all('!([A-Z][A-Z0-9]*(?=$|[A-Z][a-z0-9])|[A-Za-z][a-z0-9]+)!', $input, $matches);
|
||||
@@ -480,7 +476,7 @@ $utopia->get('/v1/open-api-2.json')
|
||||
$output = [
|
||||
'swagger' => '2.0',
|
||||
'info' => [
|
||||
'version' => $version,
|
||||
'version' => APP_VERSION_STABLE,
|
||||
'title' => APP_NAME,
|
||||
'description' => 'Appwrite backend as a service cuts up to 70% of the time and costs required for building a modern application. We abstract and simplify common development tasks behind a REST APIs, to help you develop your app in a fast and secure way. For full API documentation and tutorials go to [https://appwrite.io/docs](https://appwrite.io/docs)',
|
||||
'termsOfService' => 'https://appwrite.io/policy/terms',
|
||||
@@ -494,7 +490,7 @@ $utopia->get('/v1/open-api-2.json')
|
||||
'url' => 'https://raw.githubusercontent.com/appwrite/appwrite/master/LICENSE',
|
||||
],
|
||||
],
|
||||
'host' => $domain,
|
||||
'host' => $request->getServer('_APP_HOME', $domain),
|
||||
'basePath' => '/v1',
|
||||
'schemes' => ['https'],
|
||||
'consumes' => ['application/json', 'multipart/form-data'],
|
||||
|
||||
@@ -197,7 +197,7 @@ $collections = [
|
||||
'key' => 'name',
|
||||
'type' => 'text',
|
||||
'default' => '',
|
||||
'required' => true,
|
||||
'required' => false,
|
||||
'array' => false,
|
||||
],
|
||||
[
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afrika',
|
||||
'AN' => 'Antarktika',
|
||||
'AS' => 'Asië',
|
||||
'EU' => 'Europa',
|
||||
'NA' => 'Noord-Amerika',
|
||||
'OC' => 'Oseanië',
|
||||
'SA' => 'Suid-Amerika',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afghanistan',
|
||||
'AO' => 'Angola',
|
||||
'AL' => 'Albanië',
|
||||
'AD' => 'Andorra',
|
||||
'AE' => 'Verenigde Arabiese Emirate',
|
||||
'AR' => 'Argentinië',
|
||||
'AM' => 'Armenië',
|
||||
'AG' => 'Antigua en Barbuda',
|
||||
'AU' => 'Australië',
|
||||
'AT' => 'Oostenryk',
|
||||
'AZ' => 'Azerbaijan',
|
||||
'BI' => 'Burundi',
|
||||
'BE' => 'België',
|
||||
'BJ' => 'Benin',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BD' => 'Bangladesj',
|
||||
'BG' => 'Bulgarye',
|
||||
'BH' => 'Bahrain',
|
||||
'BS' => 'Bahamas',
|
||||
'BA' => 'Bosnië en Herzegovina',
|
||||
'BY' => 'Belarus',
|
||||
'BZ' => 'Belize',
|
||||
'BO' => 'Bolivia',
|
||||
'BR' => 'Brasilië',
|
||||
'BB' => 'Barbados',
|
||||
'BN' => 'Brunei',
|
||||
'BT' => 'Bhoetan',
|
||||
'BW' => 'Botswana',
|
||||
'CF' => 'Central African Republic',
|
||||
'CA' => 'Kanada',
|
||||
'CH' => 'Switserland',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'Sjina',
|
||||
'CI' => 'Ivoorkus',
|
||||
'CM' => 'Kameroen',
|
||||
'CD' => 'Demokratiese Republiek van die Kongo',
|
||||
'CG' => 'Republiek van die Kongo',
|
||||
'CO' => 'Colombia',
|
||||
'KM' => 'Comoros',
|
||||
'CV' => 'Kaap Verde',
|
||||
'CR' => 'Costa Rica',
|
||||
'CU' => 'Kuba',
|
||||
'CY' => 'Ciprus',
|
||||
'CZ' => 'Tsjeggiese Republiek',
|
||||
'DE' => 'Duitsland',
|
||||
'DJ' => 'Djiboeti',
|
||||
'DM' => 'Dominica',
|
||||
'DK' => 'Denemarke',
|
||||
'DO' => 'Dominikaanse Republiek',
|
||||
'DZ' => 'Algerië',
|
||||
'EC' => 'Ecuador',
|
||||
'EG' => 'Egipte',
|
||||
'ER' => 'Eritrea',
|
||||
'ES' => 'Spanje',
|
||||
'EE' => 'Estland',
|
||||
'ET' => 'Ethiopië',
|
||||
'FI' => 'Finland',
|
||||
'FJ' => 'Fidji',
|
||||
'FR' => 'Frankryk',
|
||||
'FM' => 'Mikronesië',
|
||||
'GA' => 'Gaboen',
|
||||
'GB' => 'Verenigde Koninkryk',
|
||||
'GE' => 'Georgia',
|
||||
'GH' => 'Ghana',
|
||||
'GN' => 'Guinee',
|
||||
'GM' => 'Gambië',
|
||||
'GW' => 'Guinee-Bissau',
|
||||
'GQ' => 'Ekwatoriaal-Guinee',
|
||||
'GR' => 'Griekeland',
|
||||
'GD' => 'Grenada',
|
||||
'GT' => 'Guatemala',
|
||||
'GY' => 'Guyana',
|
||||
'HN' => 'Honduras',
|
||||
'HR' => 'Kroasië',
|
||||
'HT' => 'Haiti',
|
||||
'HU' => 'Hongarye',
|
||||
'ID' => 'Indonesië',
|
||||
'IN' => 'Indië',
|
||||
'IE' => 'Ireland',
|
||||
'IR' => 'Iran',
|
||||
'IQ' => 'Irak',
|
||||
'IS' => 'Ysland',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Italië',
|
||||
'JM' => 'Jamaica',
|
||||
'JO' => 'Jordan',
|
||||
'JP' => 'Japan',
|
||||
'KZ' => 'Kazakstan',
|
||||
'KE' => 'Kenia',
|
||||
'KG' => 'Kyrgyzstan',
|
||||
'KH' => 'Kambodja',
|
||||
'KI' => 'Kiribati',
|
||||
'KN' => 'Saint Kitts en Nevis',
|
||||
'KR' => 'Suid-Korea',
|
||||
'KW' => 'Kuwait',
|
||||
'LA' => 'Laos',
|
||||
'LB' => 'Libanon',
|
||||
'LR' => 'Liberië',
|
||||
'LY' => 'Libië',
|
||||
'LC' => 'Saint Lucia',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LK' => 'Sri Lanka',
|
||||
'LS' => 'Lesotho',
|
||||
'LT' => 'Litaue',
|
||||
'LU' => 'Luxemburg',
|
||||
'LV' => 'Latvia',
|
||||
'MA' => 'Marokko',
|
||||
'MC' => 'Monaco',
|
||||
'MD' => 'Moldawië',
|
||||
'MG' => 'Madagaskar',
|
||||
'MV' => 'Maldives',
|
||||
'MX' => 'Meksiko',
|
||||
'MH' => 'Marshall-eilande',
|
||||
'MK' => 'Macedonië',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MM' => 'Myanmar',
|
||||
'ME' => 'Montenegro',
|
||||
'MN' => 'Mongolië',
|
||||
'MZ' => 'Mosambiek',
|
||||
'MR' => 'Mauritanië',
|
||||
'MU' => 'Mauritius',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Maleisië',
|
||||
'NA' => 'Namibië',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigerië',
|
||||
'NI' => 'Nicaragua',
|
||||
'NL' => 'Nederland',
|
||||
'NO' => 'Noorweë',
|
||||
'NP' => 'Nepal',
|
||||
'NR' => 'Nauru',
|
||||
'NZ' => 'Nieu-Seeland',
|
||||
'OM' => 'Oman',
|
||||
'PK' => 'Pakistan',
|
||||
'PA' => 'Panama',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Filippyne',
|
||||
'PW' => 'Palau',
|
||||
'PG' => 'Papoea-Nieu-Guinee',
|
||||
'PL' => 'Pole',
|
||||
'KP' => 'Noord-Korea',
|
||||
'PT' => 'Portugal',
|
||||
'PY' => 'Paraguay',
|
||||
'QA' => 'Katar',
|
||||
'RO' => 'Roemenië',
|
||||
'RU' => 'Rusland',
|
||||
'RW' => 'Rwanda',
|
||||
'SA' => 'Saoedi-Arabië',
|
||||
'SD' => 'Soedan',
|
||||
'SN' => 'Senegal',
|
||||
'SG' => 'Singapore',
|
||||
'SB' => 'Salomo-eilande',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SV' => 'El Salvador',
|
||||
'SM' => 'San Marino',
|
||||
'SO' => 'Somalië',
|
||||
'RS' => 'Serwië',
|
||||
'SS' => 'Suid-Soedan',
|
||||
'ST' => 'São Tomé en Príncipe',
|
||||
'SR' => 'Suriname',
|
||||
'SK' => 'Slowakye',
|
||||
'SI' => 'Slowenië',
|
||||
'SE' => 'Swede',
|
||||
'SZ' => 'Swaziland',
|
||||
'SC' => 'Seychelle',
|
||||
'SY' => 'Sirië',
|
||||
'TD' => 'Chad',
|
||||
'TG' => 'Togo',
|
||||
'TH' => 'Thailand',
|
||||
'TJ' => 'Tadjikistan',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TL' => 'Oos-Timor',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad en Tobago',
|
||||
'TN' => 'Tunisië',
|
||||
'TR' => 'Turkye',
|
||||
'TV' => 'Tuvalu',
|
||||
'TZ' => 'Tanzanië',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Oekraïne',
|
||||
'UY' => 'Uruguay',
|
||||
'US' => 'Verenigde State',
|
||||
'UZ' => 'Oesbekistan',
|
||||
'VA' => 'Vatikaanstad',
|
||||
'VC' => 'Sint Vincent en die Grenadines',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Viëtnam',
|
||||
'VU' => 'Vanuatu',
|
||||
'WS' => 'Samoa',
|
||||
'YE' => 'Jemen',
|
||||
'ZA' => 'Suid-Afrika',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
];
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"Wie nie waag nie, sal nie wen nie."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'af',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => '%s span',
|
||||
'auth.emails.confirm.title' => 'Profiel Bevestiging',
|
||||
'auth.emails.confirm.body' => 'af.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Verander Wagwoord',
|
||||
'auth.emails.recovery.body' => 'af.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Uitnodiging na %s span by %s',
|
||||
'auth.emails.invitation.body' => 'af.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Onbekend',
|
||||
|
||||
'countries' => include 'af.countries.php',
|
||||
'continents' => include 'af.continents.php',
|
||||
];
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'أفريقيا',
|
||||
'AN' => 'القارة القطبية الجنوبية',
|
||||
'AS' => 'آسيا',
|
||||
'EU' => 'أوروبا',
|
||||
'NA' => 'امريكا الشمالية',
|
||||
'OC' => 'أوقيانوسيا',
|
||||
'SA' => 'امريكا الجنوبية',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'أفغانستان',
|
||||
'AO' => 'أنغولا',
|
||||
'AL' => 'ألبانيا',
|
||||
'AD' => 'أندورا',
|
||||
'AE' => 'الإمارات العربية المتحدة',
|
||||
'AR' => 'الأرجنتين',
|
||||
'AM' => 'أرمينيا',
|
||||
'AG' => 'أنتيغوا وبربودا',
|
||||
'AU' => 'أستراليا',
|
||||
'AT' => 'النمسا',
|
||||
'AZ' => 'أذربيجان',
|
||||
'BI' => 'بوروندي',
|
||||
'BE' => 'بلجيكا',
|
||||
'BJ' => 'بنين',
|
||||
'BF' => 'بوركينا فاسو',
|
||||
'BD' => 'بنغلاديش',
|
||||
'BG' => 'بلغاريا',
|
||||
'BH' => 'البحرين',
|
||||
'BS' => 'جزر البهاما',
|
||||
'BA' => 'البوسنة والهرسك',
|
||||
'BY' => 'بيلاروسيا',
|
||||
'BZ' => 'بليز',
|
||||
'BO' => 'بوليفيا',
|
||||
'BR' => 'البرازيل',
|
||||
'BB' => 'بربادوس',
|
||||
'BN' => 'بروناي',
|
||||
'BT' => 'بوتان',
|
||||
'BW' => 'بوتسوانا',
|
||||
'CF' => 'جمهورية إفريقيا الوسطى',
|
||||
'CA' => 'كندا',
|
||||
'CH' => 'سويسرا',
|
||||
'CL' => 'تشيلي',
|
||||
'CN' => 'الصين',
|
||||
'CI' => 'ساحل العاج',
|
||||
'CM' => 'الكاميرون',
|
||||
'CD' => 'جمهورية الكونغو الديمقراطية',
|
||||
'CG' => 'جمهورية الكونغو',
|
||||
'CO' => 'كولومبيا',
|
||||
'KM' => 'جزر القمر',
|
||||
'CV' => 'الرأس الأخضر',
|
||||
'CR' => 'كوستاريكا',
|
||||
'CU' => 'كوبا',
|
||||
'CY' => 'قبرص',
|
||||
'CZ' => 'تشيكيا',
|
||||
'DE' => 'ألمانيا',
|
||||
'DJ' => 'جيبوتي',
|
||||
'DM' => 'دومينيكا',
|
||||
'DK' => 'الدنمارك',
|
||||
'DO' => 'جمهورية الدومينيكان',
|
||||
'DZ' => 'الجزائر',
|
||||
'EC' => 'إكوادور',
|
||||
'EG' => 'مصر',
|
||||
'ER' => 'إريتريا',
|
||||
'ES' => 'إسبانيا',
|
||||
'EE' => 'إستونيا',
|
||||
'ET' => 'إثيوبيا',
|
||||
'FI' => 'فنلندا',
|
||||
'FJ' => 'فيجي',
|
||||
'FR' => 'فرنسا',
|
||||
'FM' => 'ميكرونيزيا',
|
||||
'GA' => 'الغابون',
|
||||
'GB' => 'المملكة المتحدة',
|
||||
'GE' => 'جورجيا',
|
||||
'GH' => 'غانا',
|
||||
'GN' => 'غينيا',
|
||||
'GM' => 'غامبيا',
|
||||
'GW' => 'غينيا بيساو',
|
||||
'GQ' => 'غينيا الاستوائية',
|
||||
'GR' => 'اليونان',
|
||||
'GD' => 'غرينادا',
|
||||
'GT' => 'غواتيمالا',
|
||||
'GY' => 'غيانا',
|
||||
'HN' => 'هندوراس',
|
||||
'HR' => 'كرواتيا',
|
||||
'HT' => 'هايتي',
|
||||
'HU' => 'المجر',
|
||||
'ID' => 'إندونيسيا',
|
||||
'IN' => 'الهند',
|
||||
'IE' => 'أيرلندا',
|
||||
'IR' => 'إيران',
|
||||
'IQ' => 'العراق',
|
||||
'IS' => 'أيسلندا',
|
||||
'IL' => 'إسرائيل',
|
||||
'IT' => 'إيطاليا',
|
||||
'JM' => 'جامايكا',
|
||||
'JO' => 'الأردن',
|
||||
'JP' => 'اليابان',
|
||||
'KZ' => 'كازاخستان',
|
||||
'KE' => 'كينيا',
|
||||
'KG' => 'قيرغيزستان',
|
||||
'KH' => 'كمبوديا',
|
||||
'KI' => 'كيريباتي',
|
||||
'KN' => 'سانت كيتس ونيفيس',
|
||||
'KR' => 'كوريا الجنوبية',
|
||||
'KW' => 'الكويت',
|
||||
'LA' => 'لاوس',
|
||||
'LB' => 'لبنان',
|
||||
'LR' => 'ليبيريا',
|
||||
'LY' => 'ليبيا',
|
||||
'LC' => 'سانت لوسيا',
|
||||
'LI' => 'ليختنشتاين',
|
||||
'LK' => 'سري لانكا',
|
||||
'LS' => 'ليسوتو',
|
||||
'LT' => 'ليتوانيا',
|
||||
'LU' => 'لوكسمبورغ',
|
||||
'LV' => 'لاتفيا',
|
||||
'MA' => 'المغرب',
|
||||
'MC' => 'موناكو',
|
||||
'MD' => 'مولدوفا',
|
||||
'MG' => 'مدغشقر',
|
||||
'MV' => 'جزر المالديف',
|
||||
'MX' => 'المكسيك',
|
||||
'MH' => 'جزر مارشال',
|
||||
'MK' => 'مقدونيا',
|
||||
'ML' => 'مالي',
|
||||
'MT' => 'مالطا',
|
||||
'MM' => 'ميانمار',
|
||||
'ME' => 'الجبل الأسود',
|
||||
'MN' => 'منغوليا',
|
||||
'MZ' => 'موزمبيق',
|
||||
'MR' => 'موريتانيا',
|
||||
'MU' => 'موريشيوس',
|
||||
'MW' => 'ملاوي',
|
||||
'MY' => 'ماليزيا',
|
||||
'NA' => 'ناميبيا',
|
||||
'NE' => 'النيجر',
|
||||
'NG' => 'نيجيريا',
|
||||
'NI' => 'نيكاراغوا',
|
||||
'NL' => 'هولندا',
|
||||
'NO' => 'النرويج',
|
||||
'NP' => 'نيبال',
|
||||
'NR' => 'ناورو',
|
||||
'NZ' => 'نيوزيلندا',
|
||||
'OM' => 'عمان',
|
||||
'PK' => 'باكستان',
|
||||
'PA' => 'بنما',
|
||||
'PE' => 'بيرو',
|
||||
'PH' => 'الفلبين',
|
||||
'PW' => 'بالاو',
|
||||
'PG' => 'بابوا غينيا الجديدة',
|
||||
'PL' => 'بولندا',
|
||||
'KP' => 'كوريا الشمالية',
|
||||
'PT' => 'البرتغال',
|
||||
'PY' => 'باراجواي',
|
||||
'QA' => 'قطر',
|
||||
'RO' => 'رومانيا',
|
||||
'RU' => 'روسيا',
|
||||
'RW' => 'رواندا',
|
||||
'SA' => 'المملكة العربية السعودية',
|
||||
'SD' => 'السودان',
|
||||
'SN' => 'السنغال',
|
||||
'SG' => 'سنغافورة',
|
||||
'SB' => 'جزر سليمان',
|
||||
'SL' => 'سيراليون',
|
||||
'SV' => 'السلفادور',
|
||||
'SM' => 'سان مارينو',
|
||||
'SO' => 'الصومال',
|
||||
'RS' => 'صربيا',
|
||||
'SS' => 'جنوب السودان',
|
||||
'ST' => 'ساو تومي وبرينسيبي',
|
||||
'SR' => 'سورينام',
|
||||
'SK' => 'سلوفاكيا',
|
||||
'SI' => 'سلوفينيا',
|
||||
'SE' => 'السويد',
|
||||
'SZ' => 'سوازيلند',
|
||||
'SC' => 'سيشيل',
|
||||
'SY' => 'سوريا',
|
||||
'TD' => 'تشاد',
|
||||
'TG' => 'توغو',
|
||||
'TH' => 'تايلاند',
|
||||
'TJ' => 'طاجيكستان',
|
||||
'TM' => 'تركمانستان',
|
||||
'TL' => 'تيمور الشرقية',
|
||||
'TO' => 'تونجا',
|
||||
'TT' => 'ترينيداد وتوباغو',
|
||||
'TN' => 'تونس',
|
||||
'TR' => 'تركيا',
|
||||
'TV' => 'توفالو',
|
||||
'TZ' => 'تنزانيا',
|
||||
'UG' => 'أوغندا',
|
||||
'UA' => 'أوكرانيا',
|
||||
'UY' => 'أوروغواي',
|
||||
'UK' => 'الولايات المتحدة',
|
||||
'UZ' => 'أوزبكستان',
|
||||
'VA' => 'مدينة الفاتيكان',
|
||||
'VC' => 'سانت فنسنت وجزر غرينادين',
|
||||
'VE' => 'فنزويلا',
|
||||
'VN' => 'فيتنام',
|
||||
'VU' => 'فانواتو',
|
||||
'WS' => 'ساموا',
|
||||
'YE' => 'اليمن',
|
||||
'ZA' => 'جنوب إفريقيا',
|
||||
'ZM' => 'زامبيا',
|
||||
'ZW' => 'زيمبابوي',
|
||||
];
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"فن الحكمة هو فن معرفة ما يجب التغاضي عنه."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'ar',
|
||||
'settings.direction' => 'rtl',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => 'فريق %s',
|
||||
'auth.emails.confirm.title' => 'تأكيد الحساب',
|
||||
'auth.emails.confirm.body' => 'ar.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'إعادة تعيين كلمة المرور',
|
||||
'auth.emails.recovery.body' => 'ar.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'دعوة لفريق %s في %s',
|
||||
'auth.emails.invitation.body' => 'ar.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'مجهول',
|
||||
|
||||
'countries' => include 'ar.countries.php',
|
||||
'continents' => include 'ar.continents.php',
|
||||
];
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afrika',
|
||||
'AN' => 'Antarktida',
|
||||
'AS' => 'Asie',
|
||||
'EU' => 'Evropa',
|
||||
'NA' => 'Severní Amerika',
|
||||
'OC' => 'Oceánie',
|
||||
'SA' => 'Jižní Amerika',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afghánistán',
|
||||
'AO' => 'Angola',
|
||||
'AL' => 'Albánie',
|
||||
'AD' => 'Andorra',
|
||||
'AE' => 'Spojené arabské emiráty',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Arménie',
|
||||
'AG' => 'Antigua a Barbuda',
|
||||
'AU' => 'Austrálie',
|
||||
'AT' => 'Rakousko',
|
||||
'AZ' => 'Ázerbájdžán',
|
||||
'BI' => 'Burundi',
|
||||
'BE' => 'Belgie',
|
||||
'BJ' => 'Benin',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BD' => 'Bangladesh',
|
||||
'BG' => 'Bulharsko',
|
||||
'BH' => 'Bahrain',
|
||||
'BS' => 'Bahamy',
|
||||
'BA' => 'Bosna a Hercegovina',
|
||||
'BY' => 'Belarus',
|
||||
'BZ' => 'Belize',
|
||||
'BO' => 'Bolívie',
|
||||
'BR' => 'Brazílie',
|
||||
'BB' => 'Barbados',
|
||||
'BN' => 'Brunej',
|
||||
'BT' => 'Bhútán',
|
||||
'BW' => 'Botswana',
|
||||
'CF' => 'Středoafrická republika',
|
||||
'CA' => 'Canada',
|
||||
'CH' => 'Švýcarsko',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'China',
|
||||
'CI' => 'Pobřeží slonoviny',
|
||||
'CM' => 'Kamerun',
|
||||
'CD' => 'DR Kongo',
|
||||
'CG' => 'Konžská republika',
|
||||
'CO' => 'Colombia',
|
||||
'KM' => 'Komory',
|
||||
'CV' => 'Cape Verde',
|
||||
'CR' => 'Kostarika',
|
||||
'CU' => 'Kuba',
|
||||
'CY' => 'Cyprus',
|
||||
'CZ' => 'Česko',
|
||||
'DE' => 'Německo',
|
||||
'DJ' => 'Djibouti',
|
||||
'DM' => 'Dominika',
|
||||
'DK' => 'Denmark',
|
||||
'DO' => 'Dominikánská republika',
|
||||
'DZ' => 'Alžírsko',
|
||||
'EC' => 'Ekvádor',
|
||||
'EG' => 'Egypt',
|
||||
'ER' => 'Eritrea',
|
||||
'ES' => 'Španělsko',
|
||||
'EE' => 'Estonsko',
|
||||
'ET' => 'Etiopie',
|
||||
'FI' => 'Finsko',
|
||||
'FJ' => 'Fidži',
|
||||
'FR' => 'France',
|
||||
'FM' => 'Mikronésie',
|
||||
'GA' => 'Gabun',
|
||||
'GB' => 'Spojené království',
|
||||
'GE' => 'Georgia',
|
||||
'GH' => 'Ghana',
|
||||
'GN' => 'Guinea',
|
||||
'GM' => 'Gambia',
|
||||
'GW' => 'Guinea-Bissau',
|
||||
'GQ' => 'Rovníková Guinea',
|
||||
'GR' => 'Řecko',
|
||||
'GD' => 'Grenada',
|
||||
'GT' => 'Guatemala',
|
||||
'GY' => 'Guyana',
|
||||
'HN' => 'Honduras',
|
||||
'HR' => 'Chorvatsko',
|
||||
'HT' => 'Haiti',
|
||||
'HU' => 'Maďarsko',
|
||||
'ID' => 'Indonésie',
|
||||
'IN' => 'India',
|
||||
'IE' => 'Irsko',
|
||||
'IR' => 'Iran',
|
||||
'IQ' => 'Irák',
|
||||
'IS' => 'Island',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Itálie',
|
||||
'JM' => 'Jamajka',
|
||||
'JO' => 'Jordan',
|
||||
'JP' => 'Japan',
|
||||
'KZ' => 'Kazachstán',
|
||||
'KE' => 'Keňa',
|
||||
'KG' => 'Kyrgyzstán',
|
||||
'KH' => 'Kambodža',
|
||||
'KI' => 'Kiribati',
|
||||
'KN' => 'Svatý Kryštof a Nevis',
|
||||
'KR' => 'Jižní Korea',
|
||||
'KW' => 'Kuvajt',
|
||||
'LA' => 'Laos',
|
||||
'LB' => 'Lebanon',
|
||||
'LR' => 'Libérie',
|
||||
'LY' => 'Libya',
|
||||
'LC' => 'Svatá Lucie',
|
||||
'LI' => 'Lichtenštejnsko',
|
||||
'LK' => 'Srí Lanka',
|
||||
'LS' => 'Lesotho',
|
||||
'LT' => 'Litva',
|
||||
'LU' => 'Luxembourg',
|
||||
'LV' => 'Latvia',
|
||||
'MA' => 'Maroko',
|
||||
'MC' => 'Monaco',
|
||||
'MD' => 'Moldavsko',
|
||||
'MG' => 'Madagaskar',
|
||||
'MV' => 'Maledivy',
|
||||
'MX' => 'Mexico',
|
||||
'MH' => 'Marshallovy ostrovy',
|
||||
'MK' => 'Macedonia',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MM' => 'Myanmar',
|
||||
'ME' => 'Montenegro',
|
||||
'MN' => 'Mongolia',
|
||||
'MZ' => 'Mozambik',
|
||||
'MR' => 'Mauritania',
|
||||
'MU' => 'Mauricius',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malajsie',
|
||||
'NA' => 'Namibie',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NI' => 'Nikaragua',
|
||||
'NL' => 'Netherlands',
|
||||
'NO' => 'Norway',
|
||||
'NP' => 'Nepál',
|
||||
'NR' => 'Nauru',
|
||||
'NZ' => 'Nový Zéland',
|
||||
'OM' => 'Omán',
|
||||
'PK' => 'Pákistán',
|
||||
'PA' => 'Panama',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Filipíny',
|
||||
'PW' => 'Palau',
|
||||
'PG' => 'Papua Nová Guinea',
|
||||
'PL' => 'Polsko',
|
||||
'KP' => 'Severní Korea',
|
||||
'PT' => 'Portugal',
|
||||
'PY' => 'Paraguay',
|
||||
'QA' => 'Katar',
|
||||
'RO' => 'Rumunsko',
|
||||
'RU' => 'Russia',
|
||||
'RW' => 'Rwanda',
|
||||
'SA' => 'Saúdská Arábie',
|
||||
'SD' => 'Súdán',
|
||||
'SN' => 'Senegal',
|
||||
'SG' => 'Singapur',
|
||||
'SB' => 'Šalamounovy ostrovy',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SV' => 'Salvador',
|
||||
'SM' => 'San Marino',
|
||||
'SO' => 'Somalia',
|
||||
'RS' => 'Srbsko',
|
||||
'SS' => 'Jižní Súdán',
|
||||
'ST' => 'São Tomé a Príncipe',
|
||||
'SR' => 'Surinam',
|
||||
'SK' => 'Slovakia',
|
||||
'SI' => 'Slovinsko',
|
||||
'SE' => 'Švédsko',
|
||||
'SZ' => 'Svazijsko',
|
||||
'SC' => 'Seychely',
|
||||
'SY' => 'Sýrie',
|
||||
'TD' => 'Čad',
|
||||
'TG' => 'Togo',
|
||||
'TH' => 'Thajsko',
|
||||
'TJ' => 'Tádžikistán',
|
||||
'TM' => 'Turkmenistán',
|
||||
'TL' => 'Timor-Leste',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad a Tobago',
|
||||
'TN' => 'Tunisko',
|
||||
'TR' => 'Turecko',
|
||||
'TV' => 'Tuvalu',
|
||||
'TZ' => 'Tanzanie',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraine',
|
||||
'UY' => 'Uruguay',
|
||||
'US' => 'United States',
|
||||
'UZ' => 'Uzbekistán',
|
||||
'VA' => 'Vatikán',
|
||||
'VC' => 'Svatý Vincenc a Grenadiny',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnam',
|
||||
'VU' => 'Vanuatu',
|
||||
'WS' => 'Samoa',
|
||||
'YE' => 'Jemen',
|
||||
'ZA' => 'Jižní Afrika',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
];
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"Umění moudrosti je umění vědět, co přehlédnout."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'cz',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => '%s tým',
|
||||
'auth.emails.confirm.title' => 'Potvrzení účtu',
|
||||
'auth.emails.confirm.body' => 'cz.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Resetovat heslo',
|
||||
'auth.emails.recovery.body' => 'cz.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Pozvánka do týmu% s na% s',
|
||||
'auth.emails.invitation.body' => 'cz.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Neznámý',
|
||||
|
||||
'countries' => include 'cz.countries.php',
|
||||
'continents' => include 'cz.continents.php',
|
||||
];
|
||||
@@ -37,14 +37,14 @@ return [
|
||||
'CI' => 'Costa de Marfil',
|
||||
'CM' => 'Camerún',
|
||||
'CD' => 'República Democrática del Congo',
|
||||
'CG' => 'República del congo',
|
||||
'CG' => 'República del Congo',
|
||||
'CO' => 'Colombia',
|
||||
'KM' => 'Comoras',
|
||||
'CV' => 'Cabo Verde',
|
||||
'CR' => 'Costa Rica',
|
||||
'CU' => 'Cuba',
|
||||
'CY' => 'Chipre',
|
||||
'CZ' => 'Chequia',
|
||||
'CZ' => 'República Checa',
|
||||
'DE' => 'Alemania',
|
||||
'DJ' => 'Yibuti',
|
||||
'DM' => 'Dominica',
|
||||
@@ -80,7 +80,7 @@ return [
|
||||
'ID' => 'Indonesia',
|
||||
'IN' => 'India',
|
||||
'IE' => 'Irlanda',
|
||||
'IR' => 'Iran',
|
||||
'IR' => 'Irán',
|
||||
'IQ' => 'Irak',
|
||||
'IS' => 'Islandia',
|
||||
'IL' => 'Israel',
|
||||
@@ -115,7 +115,7 @@ return [
|
||||
'MX' => 'Mexico',
|
||||
'MH' => 'Islas Marshall',
|
||||
'MK' => 'Macedonia',
|
||||
'ML' => 'Mali',
|
||||
'ML' => 'Malí',
|
||||
'MT' => 'Malta',
|
||||
'MM' => 'Myanmar',
|
||||
'ME' => 'Montenegro',
|
||||
|
||||
@@ -6,7 +6,7 @@ return [
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => '%s Equipo',
|
||||
'auth.emails.team' => 'Equipo %s',
|
||||
'auth.emails.confirm.title' => 'Confirmación de la cuenta',
|
||||
'auth.emails.confirm.body' => 'es.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Reestablecer contraseña',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"बुद्धिमान होने कला यह जानने की कला है कि क्या अनदेखी करना चाहिए।"', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.inspire' => '"यह जान लेना की क्या अनदेखा किया जा सकता है, ही बुद्धिमता का प्रतीक है |"', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'hi',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
@@ -14,7 +14,7 @@ return [
|
||||
'auth.emails.invitation.title' => 'इनविटेशन %s टीम %s',
|
||||
'auth.emails.invitation.body' => 'hi.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Unknown',
|
||||
'locale.country.unknown' => 'अज्ञात',
|
||||
|
||||
'countries' => include 'hi.countries.php',
|
||||
'continents' => include 'hi.continents.php',
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afrika',
|
||||
'AN' => 'Antarktika',
|
||||
'AS' => 'Ázsia',
|
||||
'EU' => 'Európa',
|
||||
'NA' => 'Észak-Amerika',
|
||||
'OC' => 'Óceánia',
|
||||
'SA' => 'Dél-Amerika',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afganisztán',
|
||||
'AO' => 'Angola',
|
||||
'AL' => 'Albánia',
|
||||
'AD' => 'Andorra',
|
||||
'AE' => 'Egyesült Arab Emírségek',
|
||||
'AR' => 'Argentína',
|
||||
'AM' => 'Örményország',
|
||||
'AG' => 'Antigua és Barbuda',
|
||||
'AU' => 'Ausztrália',
|
||||
'AT' => 'Ausztria',
|
||||
'AZ' => 'Azerbajdzsán',
|
||||
'BI' => 'Burundi',
|
||||
'BE' => 'Belgium',
|
||||
'BJ' => 'Benin',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BD' => 'Banglades',
|
||||
'BG' => 'Bulgaria',
|
||||
'BH' => 'Bahrein',
|
||||
'BS' => 'Bahamák',
|
||||
'BA' => 'Bosznia-Hercegovina',
|
||||
'BY' => 'Fehéroroszország',
|
||||
'BZ' => 'Belize',
|
||||
'BO' => 'Bolívia',
|
||||
'BR' => 'Brazília',
|
||||
'BB' => 'Barbadosz',
|
||||
'BN' => 'Brunei',
|
||||
'BT' => 'Bhután',
|
||||
'BW' => 'Botswana',
|
||||
'CF' => 'Közép-afrikai Köztársaság',
|
||||
'CA' => 'Kanada',
|
||||
'CH' => 'Svájc',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'Kína',
|
||||
'CI' => 'Elefántcsontpart',
|
||||
'CM' => 'Kamerun',
|
||||
'CD' => 'Kongói Demokratikus Köztársaság',
|
||||
'CG' => 'Kongói Köztársaság',
|
||||
'CO' => 'Kolumbia',
|
||||
'KM' => 'Comoros',
|
||||
'CV' => 'Zöld-foki Köztársaság',
|
||||
'CR' => 'Costa Rica',
|
||||
'CU' => 'Kuba',
|
||||
'CY' => 'Ciprus',
|
||||
'CZ' => 'Csehország',
|
||||
'DE' => 'Németország',
|
||||
'DJ' => 'Djibouti',
|
||||
'DM' => 'Dominika',
|
||||
'DK' => 'Dánia',
|
||||
'DO' => 'Dominikai Köztársaság',
|
||||
'DZ' => 'Algíria',
|
||||
'EC' => 'Ecuador',
|
||||
'EG' => 'Egyiptom',
|
||||
'ER' => 'Eritrea',
|
||||
'ES' => 'Spanyolország',
|
||||
'EE' => 'Észtország',
|
||||
'ET' => 'Etiópia',
|
||||
'FI' => 'Finnország',
|
||||
'FJ' => 'Fidzsi-szigetek',
|
||||
'FR' => 'Franciaország',
|
||||
'FM' => 'Mikronéziai Szövetségi Államok',
|
||||
'GA' => 'Gabon',
|
||||
'GB' => 'Egyesült Királyság',
|
||||
'GE' => 'Grúzia',
|
||||
'GH' => 'Ghána',
|
||||
'GN' => 'Guinea',
|
||||
'GM' => 'Gambia',
|
||||
'GW' => 'Guinea-Bissau',
|
||||
'GQ' => 'Egyenlítői-Guinea',
|
||||
'GR' => 'Görögország',
|
||||
'GD' => 'Grenada',
|
||||
'GT' => 'Guatemala',
|
||||
'GY' => 'Guyana',
|
||||
'HN' => 'Honduras',
|
||||
'HR' => 'Horvátország',
|
||||
'HT' => 'Haiti',
|
||||
'HU' => 'Magyarország',
|
||||
'ID' => 'Indonézia',
|
||||
'IN' => 'India',
|
||||
'IE' => 'Írország',
|
||||
'IR' => 'Irán',
|
||||
'IQ' => 'Iraq',
|
||||
'IS' => 'Izland',
|
||||
'IL' => 'Izrael',
|
||||
'IT' => 'Olaszország',
|
||||
'JM' => 'Jamaika',
|
||||
'JO' => 'Jordánia',
|
||||
'JP' => 'Japán',
|
||||
'KZ' => 'Kazakhsztán',
|
||||
'KE' => 'Kenya',
|
||||
'KG' => 'Kirgizisztán',
|
||||
'KH' => 'Kambodzsa',
|
||||
'KI' => 'Kiribati',
|
||||
'KN' => 'Saint Kitts és Nevis',
|
||||
'KR' => 'Dél Korea',
|
||||
'KW' => 'Kuwait',
|
||||
'LA' => 'Laosz',
|
||||
'LB' => 'Libanon',
|
||||
'LR' => 'Libéria',
|
||||
'LY' => 'Líbia',
|
||||
'LC' => 'Saint Lucia',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LK' => 'Sri Lanka',
|
||||
'LS' => 'Lesotho',
|
||||
'LT' => 'Litvánia',
|
||||
'LU' => 'Luxembourg',
|
||||
'LV' => 'Lettország',
|
||||
'MA' => 'Marokkó',
|
||||
'MC' => 'Monaco',
|
||||
'MD' => 'Moldova',
|
||||
'MG' => 'Madagaszkár',
|
||||
'MV' => 'Maldív-szigetek',
|
||||
'MX' => 'Mexikó',
|
||||
'MH' => 'Marshall-szigetek',
|
||||
'MK' => 'Macedónia',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Málta',
|
||||
'MM' => 'Mianmar',
|
||||
'ME' => 'Montenegró',
|
||||
'MN' => 'Mongólia',
|
||||
'MZ' => 'Mozambik',
|
||||
'MR' => 'Mauritánia',
|
||||
'MU' => 'Mauritius',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malajzia',
|
||||
'NA' => 'Namíbia',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NI' => 'Nikaragua',
|
||||
'NL' => 'Hollandia',
|
||||
'NO' => 'Norvégia',
|
||||
'NP' => 'Nepál',
|
||||
'NR' => 'Nauru',
|
||||
'NZ' => 'Új-Zéland',
|
||||
'OM' => 'Omán',
|
||||
'PK' => 'Pakisztán',
|
||||
'PA' => 'Panama',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Fülöp-szigetek',
|
||||
'PW' => 'Palau',
|
||||
'PG' => 'Pápua Új-Guinea',
|
||||
'PL' => 'Lengyelország',
|
||||
'KP' => 'Észak-Korea',
|
||||
'PT' => 'Portugália',
|
||||
'PY' => 'Paraguay',
|
||||
'QA' => 'Qatar',
|
||||
'RO' => 'Románia',
|
||||
'RU' => 'Oroszország',
|
||||
'RW' => 'Rwanda',
|
||||
'SA' => 'Szaúd-Arábia',
|
||||
'SD' => 'Szudán',
|
||||
'SN' => 'Szenegál',
|
||||
'SG' => 'Szingapúr',
|
||||
'SB' => 'Salamon-szigetek',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SV' => 'El Salvador',
|
||||
'SM' => 'San Marino',
|
||||
'SO' => 'Szomália',
|
||||
'RS' => 'Szerbia',
|
||||
'SS' => 'Dél-Szudán',
|
||||
'ST' => 'São Tomé és Príncipe',
|
||||
'SR' => 'Szurinám',
|
||||
'SK' => 'Szlovákia',
|
||||
'SI' => 'Szlovénia',
|
||||
'SE' => 'Svédország',
|
||||
'SZ' => 'Swaziland',
|
||||
'SC' => 'Seychelles-szigetek',
|
||||
'SY' => 'Szíria',
|
||||
'TD' => 'Csád',
|
||||
'TG' => 'Togo',
|
||||
'TH' => 'Tájföld',
|
||||
'TJ' => 'Tádzsikisztán',
|
||||
'TM' => 'Türkmenisztán',
|
||||
'TL' => 'Timor-Leste',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad és Tobago',
|
||||
'TN' => 'Tunézia',
|
||||
'TR' => 'Törökország',
|
||||
'TV' => 'Tuvalu',
|
||||
'TZ' => 'Tanzania',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraina',
|
||||
'UY' => 'Uruguay',
|
||||
'US' => 'Egyesült Államok',
|
||||
'UZ' => 'Üzbegisztán',
|
||||
'VA' => 'Vatikánváros',
|
||||
'VC' => 'Saint Vincent és a Grenadine-szigetek',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnám',
|
||||
'VU' => 'Vanuatu',
|
||||
'WS' => 'Szamoa',
|
||||
'YE' => 'Yemen',
|
||||
'ZA' => 'Dél-Afrikai Köztársaság',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
];
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"The art of being wise is the art of knowing what to overlook."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'hu',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => '%s Csapat',
|
||||
'auth.emails.confirm.title' => 'Fiók megerősítés',
|
||||
'auth.emails.confirm.body' => 'hu.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Jelszó Visszaállítás',
|
||||
'auth.emails.recovery.body' => 'hu.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Meghívás a %s Csapathoz %s',
|
||||
'auth.emails.invitation.body' => 'hu.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Ismeretlen',
|
||||
|
||||
'countries' => include 'hu.countries.php',
|
||||
'continents' => include 'hu.continents.php',
|
||||
];
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"The art of being wise is the art of knowing what to overlook."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.inspire' => '"Seni menjadi bijak adalah seni mengetahui apa yang harus diabaikan."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'id',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
|
||||
@@ -29,22 +29,22 @@ return [
|
||||
'BN' => 'Brunei',
|
||||
'BT' => 'Bhutan',
|
||||
'BW' => 'Botswana',
|
||||
'CF' => 'Repubblica centrafricana',
|
||||
'CF' => 'Repubblica Centrafricana',
|
||||
'CA' => 'Canada',
|
||||
'CH' => 'Svizzera',
|
||||
'CL' => 'Cile',
|
||||
'CN' => 'Cina',
|
||||
'CI' => 'Costa d\'Avorio',
|
||||
'CM' => 'Camerun',
|
||||
'CD' => 'DR Congo',
|
||||
'CD' => 'Repubblica Democratica del Congo',
|
||||
'CG' => 'Repubblica del Congo',
|
||||
'CO' => 'Colombia',
|
||||
'KM' => 'Comore',
|
||||
'KM' => 'Unione delle Comore',
|
||||
'CV' => 'Capo Verde',
|
||||
'CR' => 'Costa Rica',
|
||||
'CU' => 'Cuba',
|
||||
'CY' => 'Cipro',
|
||||
'CZ' => 'Czechia',
|
||||
'CZ' => 'Repubblica Ceca',
|
||||
'DE' => 'Germania',
|
||||
'DJ' => 'Gibuti',
|
||||
'DM' => 'Dominica',
|
||||
@@ -59,7 +59,7 @@ return [
|
||||
'ET' => 'Etiopia',
|
||||
'FI' => 'Finlandia',
|
||||
'FJ' => 'Figi',
|
||||
'FR' => 'France',
|
||||
'FR' => 'Francia',
|
||||
'FM' => 'Micronesia',
|
||||
'GA' => 'Gabon',
|
||||
'GB' => 'Regno Unito',
|
||||
@@ -140,7 +140,7 @@ return [
|
||||
'PE' => 'Perù',
|
||||
'PH' => 'Filippine',
|
||||
'PW' => 'Palau',
|
||||
'PG' => 'Papua New Guinea',
|
||||
'PG' => 'Papua Nuova Guinea',
|
||||
'PL' => 'Polonia',
|
||||
'KP' => 'Corea del Nord',
|
||||
'PT' => 'Portogallo',
|
||||
@@ -160,7 +160,7 @@ return [
|
||||
'SO' => 'Somalia',
|
||||
'RS' => 'Serbia',
|
||||
'SS' => 'Sudan del Sud',
|
||||
'ST' => 'São Tomé and Príncipe',
|
||||
'ST' => 'São Tomé e Príncipe',
|
||||
'SR' => 'Suriname',
|
||||
'SK' => 'Slovacchia',
|
||||
'SI' => 'Slovenia',
|
||||
|
||||
@@ -4,15 +4,18 @@ return [
|
||||
'settings.inspire' => '"L\'arte di essere saggi è l\'arte di sapere cosa trascurare."', // Questa è la riga stampata nella homepage e nella console 'view-source'
|
||||
'settings.locale' => 'it',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Servizio - Utenti
|
||||
'auth.emails.team' => '%s Squadra',
|
||||
'auth.emails.team' => 'Team %s',
|
||||
'auth.emails.confirm.title' => 'Conferma dell\'account',
|
||||
'auth.emails.confirm.body' => 'en.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Reimpostazione della password',
|
||||
'auth.emails.recovery.title' => 'Recupero password',
|
||||
'auth.emails.recovery.body' => 'en.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Invito a %s squadra %s',
|
||||
'auth.emails.invitation.title' => 'Invito al team %s di %s',
|
||||
'auth.emails.invitation.body' => 'en.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Sconosciuto',
|
||||
|
||||
'countries' => include 'it.countries.php',
|
||||
'continents' => include 'it.continents.php',
|
||||
];
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afrika',
|
||||
'AN' => 'Antartika',
|
||||
'AS' => 'Asia',
|
||||
'EU' => 'Eropa',
|
||||
'NA' => 'Amérika Lor',
|
||||
'OC' => 'Oseania',
|
||||
'SA' => 'Amérika Kidul',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afghanistan',
|
||||
'AO' => 'Angola',
|
||||
'AL' => 'Albania',
|
||||
'AD' => 'Andorra',
|
||||
'AE' => 'Uni Emirat Arab',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Armenia',
|
||||
'AG' => 'Antigua lan Barbuda',
|
||||
'AU' => 'Australia',
|
||||
'AT' => 'Austria',
|
||||
'AZ' => 'Azerbaijan',
|
||||
'BI' => 'Burundi',
|
||||
'BE' => 'Belgia',
|
||||
'BJ' => 'Benin',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BD' => 'Bangladesh',
|
||||
'BG' => 'Bulgaria',
|
||||
'BH' => 'Bahrain',
|
||||
'BS' => 'Bahamas',
|
||||
'BA' => 'Bosnia lan Herzegovina',
|
||||
'BY' => 'Belarus',
|
||||
'BZ' => 'Belize',
|
||||
'BO' => 'Bolivia',
|
||||
'BR' => 'Brasil',
|
||||
'BB' => 'Barbados',
|
||||
'BN' => 'Brunei',
|
||||
'BT' => 'Bhutan',
|
||||
'BW' => 'Botswana',
|
||||
'CF' => 'Republik Afrika Tengah',
|
||||
'CA' => 'Kanada',
|
||||
'CH' => 'Swiss',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'China',
|
||||
'CI' => 'Pantai Gading',
|
||||
'CM' => 'Kamerun',
|
||||
'CD' => 'DR Kongo',
|
||||
'CG' => 'Republik Kongo',
|
||||
'CO' => 'Kolombia',
|
||||
'KM' => 'Comoros',
|
||||
'CV' => 'Cape Verde',
|
||||
'CR' => 'Costa Rica',
|
||||
'CU' => 'Kuba',
|
||||
'CY' => 'Siprus',
|
||||
'CZ' => 'Czechia',
|
||||
'DE' => 'Jerman',
|
||||
'DJ' => 'Djibouti',
|
||||
'DM' => 'Dominika',
|
||||
'DK' => 'Denmark',
|
||||
'DO' => 'Republik Dominika',
|
||||
'DZ' => 'Algeria',
|
||||
'EC' => 'Ekuador',
|
||||
'EG' => 'Mesir',
|
||||
'ER' => 'Eritrea',
|
||||
'ES' => 'Spanyol',
|
||||
'EE' => 'Estonia',
|
||||
'ET' => 'Ethiopia',
|
||||
'FI' => 'Finlandia',
|
||||
'FJ' => 'Fiji',
|
||||
'FR' => 'Prancis',
|
||||
'FM' => 'Mikronesia',
|
||||
'GA' => 'Gabon',
|
||||
'GB' => 'Inggris',
|
||||
'GE' => 'Georgia',
|
||||
'GH' => 'Ghana',
|
||||
'GN' => 'Guinea',
|
||||
'GM' => 'Gambia',
|
||||
'GW' => 'Guinea-Bissau',
|
||||
'GQ' => 'Guinea Khatulistiwa',
|
||||
'GR' => 'Yunani',
|
||||
'GD' => 'Grenada',
|
||||
'GT' => 'Guatemala',
|
||||
'GY' => 'Guyana',
|
||||
'HN' => 'Honduras',
|
||||
'HR' => 'Croatia',
|
||||
'HT' => 'Haiti',
|
||||
'HU' => 'Hongaria',
|
||||
'ID' => 'Indonesia',
|
||||
'IN' => 'India',
|
||||
'IE' => 'Irlandia',
|
||||
'IR' => 'Iran',
|
||||
'IQ' => 'Irak',
|
||||
'IS' => 'Islandia',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Italia',
|
||||
'JM' => 'Jamaika',
|
||||
'JO' => 'Yordania',
|
||||
'JP' => 'Jepang',
|
||||
'KZ' => 'Kazakhstan',
|
||||
'KE' => 'Kenya',
|
||||
'KG' => 'Kyrgyzstan',
|
||||
'KH' => 'Kamboja',
|
||||
'KI' => 'Kiribati',
|
||||
'KN' => 'Saint Kitts lan Nevis',
|
||||
'KR' => 'Korea Kidul',
|
||||
'KW' => 'Kuwait',
|
||||
'LA' => 'Laos',
|
||||
'LB' => 'Libanon',
|
||||
'LR' => 'Liberia',
|
||||
'LY' => 'Libya',
|
||||
'LC' => 'Saint Lucia',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LK' => 'Sri Lanka',
|
||||
'LS' => 'Lesotho',
|
||||
'LT' => 'Lithuania',
|
||||
'LU' => 'Luksemburg',
|
||||
'LV' => 'Latvia',
|
||||
'MA' => 'Maroko',
|
||||
'MC' => 'Monaco',
|
||||
'MD' => 'Moldova',
|
||||
'MG' => 'Madagascar',
|
||||
'MV' => 'Maldives',
|
||||
'MX' => 'Meksiko',
|
||||
'MH' => 'Kepulauan Marshall',
|
||||
'MK' => 'Makedonia',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MM' => 'Myanmar',
|
||||
'ME' => 'Montenegro',
|
||||
'MN' => 'Mongolia',
|
||||
'MZ' => 'Mozambique',
|
||||
'MR' => 'Mauritania',
|
||||
'MU' => 'Mauritius',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malaysia',
|
||||
'NA' => 'Namibia',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NI' => 'Nikaragua',
|
||||
'NL' => 'Belanda',
|
||||
'NO' => 'Norwegia',
|
||||
'NP' => 'Nepal',
|
||||
'NR' => 'Nauru',
|
||||
'NZ' => 'Selandia Anyar',
|
||||
'OM' => 'Oman',
|
||||
'PK' => 'Pakistan',
|
||||
'PA' => 'Panama',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Filipina',
|
||||
'PW' => 'Palau',
|
||||
'PG' => 'Papua Nugini',
|
||||
'PL' => 'Polandia',
|
||||
'KP' => 'Korea Lor',
|
||||
'PT' => 'Portugal',
|
||||
'PY' => 'Paraguay',
|
||||
'QA' => 'Qatar',
|
||||
'RO' => 'Romania',
|
||||
'RU' => 'Rusia',
|
||||
'RW' => 'Rwanda',
|
||||
'SA' => 'Arab Saudi',
|
||||
'SD' => 'Sudan',
|
||||
'SN' => 'Senegal',
|
||||
'SG' => 'Singapura',
|
||||
'SB' => 'Kepulauan Solomon',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SV' => 'El Salvador',
|
||||
'SM' => 'San Marino',
|
||||
'SO' => 'Somalia',
|
||||
'RS' => 'Serbia',
|
||||
'SS' => 'Sudan Kidul',
|
||||
'ST' => 'São Tomé lan Príncipe',
|
||||
'SR' => 'Suriname',
|
||||
'SK' => 'Slowakia',
|
||||
'SI' => 'Slovenia',
|
||||
'SE' => 'Swedia',
|
||||
'SZ' => 'Swaziland',
|
||||
'SC' => 'Seychelles',
|
||||
'SY' => 'Suriah',
|
||||
'TD' => 'Chad',
|
||||
'TG' => 'Togo',
|
||||
'TH' => 'Thailand',
|
||||
'TJ' => 'Tajikistan',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TL' => 'Timor-Leste',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad lan Tobago',
|
||||
'TN' => 'Tunisia',
|
||||
'TR' => 'Turki',
|
||||
'TV' => 'Tuvalu',
|
||||
'TZ' => 'Tanzania',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraina',
|
||||
'UY' => 'Uruguay',
|
||||
'US' => 'Amerika Serikat',
|
||||
'UZ' => 'Uzbekistan',
|
||||
'VA' => 'Kota Vatikan',
|
||||
'VC' => 'Saint Vincent lan Grenadines',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnam',
|
||||
'VU' => 'Vanuatu',
|
||||
'WS' => 'Samoa',
|
||||
'YE' => 'Yaman',
|
||||
'ZA' => 'Afrika Kidul',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
];
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"Kesenian sing wicaksana yaiku seni sing ngerti apa sing kudu dilalekake."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'jv',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => 'Tim %s',
|
||||
'auth.emails.confirm.title' => 'Konfirmasi akun',
|
||||
'auth.emails.confirm.body' => 'jv.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Reset Sandi',
|
||||
'auth.emails.recovery.body' => 'jv.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Undangan menyang %s Tim ing %s',
|
||||
'auth.emails.invitation.body' => 'jv.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Ora dingerteni',
|
||||
|
||||
'countries' => include 'jv.countries.php',
|
||||
'continents' => include 'jv.continents.php',
|
||||
];
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
return [
|
||||
'AF' => 'Afrika',
|
||||
'AN' => 'Antarktida',
|
||||
'AS' => 'Azija',
|
||||
'EU' => 'Europa',
|
||||
'NA' => 'Šiaurės Amerika',
|
||||
'OC' => 'Okeanija',
|
||||
'SA' => 'Pietų Amerika',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afganistanas',
|
||||
'AO' => 'Angola',
|
||||
'AL' => 'Albanija',
|
||||
'AD' => 'Andora',
|
||||
'AE' => 'Jungtiniai Arabų Emyratai',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Armėnija',
|
||||
'AG' => 'Antigva ir Barbuda',
|
||||
'AU' => 'Australija',
|
||||
'AT' => 'Austrija',
|
||||
'AZ' => 'Azerbaidžanas',
|
||||
'BI' => 'Burundi',
|
||||
'BE' => 'Belgija',
|
||||
'BJ' => 'Beninas',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BD' => 'Bangladešas',
|
||||
'BG' => 'Bulgarija',
|
||||
'BH' => 'Bahreinas',
|
||||
'BS' => 'Bahamai',
|
||||
'BA' => 'Bosnija ir Hercegovina',
|
||||
'BY' => 'Baltarusija',
|
||||
'BZ' => 'Baileys',
|
||||
'BO' => 'Bolivija',
|
||||
'BR' => 'Brazilija',
|
||||
'BB' => 'Barbadosas',
|
||||
'BN' => 'Brunėjus',
|
||||
'BT' => 'Butanas',
|
||||
'BW' => 'Botsvana',
|
||||
'CF' => 'Centrinės Afrikos Respublika',
|
||||
'CA' => 'Kanada',
|
||||
'CH' => 'Šveicarija',
|
||||
'CL' => 'Čilė',
|
||||
'CN' => 'Kinija',
|
||||
'CI' => 'Dramblio Kaulo Krantas',
|
||||
'CM' => 'Kamerūnas',
|
||||
'CD' => 'Kongo Demokratinė Respublika',
|
||||
'CG' => 'Kongo Respublika',
|
||||
'CO' => 'Kolumbija',
|
||||
'KM' => 'Komorai',
|
||||
'CV' => 'Žaliasis Kyšulys',
|
||||
'CR' => 'Kosta Rika',
|
||||
'CU' => 'Kuba',
|
||||
'CY' => 'Kipras',
|
||||
'CZ' => 'Čekija',
|
||||
'DE' => 'Vokietija',
|
||||
'DJ' => 'Džibutis',
|
||||
'DM' => 'Dominika',
|
||||
'DK' => 'Danija',
|
||||
'DO' => 'Dominikos Respublika',
|
||||
'DZ' => 'Alžyras',
|
||||
'EC' => 'Ekvadoras',
|
||||
'EG' => 'Egiptas',
|
||||
'ER' => 'Eritrėja',
|
||||
'ES' => 'Ispanija',
|
||||
'EE' => 'Estija',
|
||||
'ET' => 'Etiopija',
|
||||
'FI' => 'Suomija',
|
||||
'FJ' => 'Fidžis',
|
||||
'FR' => 'Prancūzija',
|
||||
'FM' => 'Mikronezija',
|
||||
'GA' => 'Gabonas',
|
||||
'GB' => 'Jungtinė Karalystė',
|
||||
'GE' => 'Gruzija',
|
||||
'GH' => 'Gana',
|
||||
'GN' => 'Gvinėja',
|
||||
'GM' => 'Gambija',
|
||||
'GW' => 'Bisau Gvinėja',
|
||||
'GQ' => 'Pusiaujo Gvinėja',
|
||||
'GR' => 'Graikija',
|
||||
'GD' => 'Grenada',
|
||||
'GT' => 'Gvatemala',
|
||||
'GY' => 'Gajana',
|
||||
'HN' => 'Hondūras',
|
||||
'HR' => 'Kroatija',
|
||||
'HT' => 'Haitis',
|
||||
'HU' => 'Vengrija',
|
||||
'ID' => 'Indonezija',
|
||||
'IN' => 'Indija',
|
||||
'IE' => 'Airija',
|
||||
'IR' => 'Iranas',
|
||||
'IQ' => 'Irakas',
|
||||
'IS' => 'Islandija',
|
||||
'IL' => 'Izraelis',
|
||||
'IT' => 'Italija',
|
||||
'JM' => 'Jamaika',
|
||||
'JO' => 'Jordanija',
|
||||
'JP' => 'Japonija',
|
||||
'KZ' => 'Kazachstanas',
|
||||
'KE' => 'Kenija',
|
||||
'KG' => 'Kirgizija',
|
||||
'KH' => 'Kambodža',
|
||||
'KI' => 'Kiribati',
|
||||
'KN' => 'Sent Kitsas ir Nevis',
|
||||
'KR' => 'Pietų Korėja',
|
||||
'KW' => 'Kuveitas',
|
||||
'LA' => 'Laosas',
|
||||
'LB' => 'Libanas',
|
||||
'LR' => 'Liberija',
|
||||
'LY' => 'Libija',
|
||||
'LC' => 'Sent Lusija',
|
||||
'LI' => 'Lichtenšteinas',
|
||||
'LK' => 'Šri Lanka',
|
||||
'LS' => 'Lesotas',
|
||||
'LT' => 'Lietuva',
|
||||
'LU' => 'Liuksemburgas',
|
||||
'LV' => 'Latvija',
|
||||
'MA' => 'Marokas',
|
||||
'MC' => 'Monaco',
|
||||
'MD' => 'Moldova',
|
||||
'MG' => 'Madagaskaras',
|
||||
'MV' => 'Maldyvai',
|
||||
'MX' => 'Meksika',
|
||||
'MH' => 'Maršalo salos',
|
||||
'MK' => 'Makedonija',
|
||||
'ML' => 'Malis',
|
||||
'MT' => 'Malta',
|
||||
'MM' => 'Mianmaras',
|
||||
'ME' => 'Juodkalnija',
|
||||
'MN' => 'Mongolija',
|
||||
'MZ' => 'Mozambikas',
|
||||
'MR' => 'Mauritanija',
|
||||
'MU' => 'Mauricijus',
|
||||
'MW' => 'Malavis',
|
||||
'MY' => 'Malaizija',
|
||||
'NA' => 'Namibija',
|
||||
'NE' => 'Nigeris',
|
||||
'NG' => 'Nigerija',
|
||||
'NI' => 'Nikaragva',
|
||||
'NL' => 'Nyderlandai',
|
||||
'NE' => 'Norvegija',
|
||||
'NP' => 'Nepalas',
|
||||
'NR' => 'Nauru',
|
||||
'NZ' => 'Naujoji Zelandija',
|
||||
'OM' => 'Omanas',
|
||||
'PK' => 'Pakistanas',
|
||||
'PA' => 'Panama',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Filipinai',
|
||||
'PW' => 'Palau',
|
||||
'PG' => 'Papua Naujoji Gvinėja',
|
||||
'PL' => 'Lenkija',
|
||||
'KP' => 'Šiaurės Korėja',
|
||||
'PT' => 'Portugalija',
|
||||
'PY' => 'Paragvajus',
|
||||
'QA' => 'Qatar',
|
||||
'RO' => 'Rumunija',
|
||||
'RU' => 'Rusija',
|
||||
'RW' => 'Ruanda',
|
||||
'SA' => 'Saudo Arabija',
|
||||
'SD' => 'Sudanas',
|
||||
'SN' => 'Senegalas',
|
||||
'SG' => 'Singapūras',
|
||||
'SB' => 'Saliamono Salos',
|
||||
'SL' => 'Siera Leonė',
|
||||
'SV' => 'Salvadoras',
|
||||
'SM' => 'San Marino',
|
||||
'SO' => 'Somalis',
|
||||
'RS' => 'Serbija',
|
||||
'SS' => 'Pietų Sudanas',
|
||||
'ST' => 'San Tomė ir Prinsipė',
|
||||
'SR' => 'Surinamas',
|
||||
'SK' => 'Slovakija',
|
||||
'SI' => 'Slovėnija',
|
||||
'SE' => 'Švedija',
|
||||
'SZ' => 'Svazilandas',
|
||||
'SC' => 'Seišeliai',
|
||||
'SY' => 'Sirija',
|
||||
'TD' => 'Chadas',
|
||||
'TG' => 'Togo',
|
||||
'TH' => 'Tailandas',
|
||||
'TJ' => 'Tadžikistanas',
|
||||
'TM' => 'Turkmėnistanas',
|
||||
'TL' => 'Rytų Timoras',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidadas ir Tobagas',
|
||||
'TN' => 'Tunisas',
|
||||
'TR' => 'Turkija',
|
||||
'TV' => 'Tuvalu',
|
||||
'TZ' => 'Tanzanija',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraina',
|
||||
'UY' => 'Urugvajus',
|
||||
'US' => 'JAV',
|
||||
'UZ' => 'Uzbekistanas',
|
||||
'VA' => 'Vatikanas',
|
||||
'VC' => 'Sent Vinsentas ir Grenadinai',
|
||||
'VE' => 'Venesuela',
|
||||
'VN' => 'Vietnamas',
|
||||
'VU' => 'Vanuatu',
|
||||
'WS' => 'Samoa',
|
||||
'YE' => 'Jemenas',
|
||||
'ZA' => 'Pietų Afrika',
|
||||
'ZM' => 'Zambija',
|
||||
'ZW' => 'Zimbabvė',
|
||||
];
|
||||
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
return [
|
||||
'settings.inspire' => '"Menas būti išmintingu — tai menas žinoti, ką galima paniekti."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'lt',
|
||||
'settings.direction' => 'ltr',
|
||||
'auth.emails.team' => 'Komanda %s',
|
||||
'auth.emails.confirm.title' => 'Paskyros patvirtinimas',
|
||||
'auth.emails.confirm.body' => 'lt.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Atnaujinti slaptažodį',
|
||||
'auth.emails.recovery.body' => 'lt.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Pakeisti į komandą %s projektui %s',
|
||||
'auth.emails.invitation.body' => 'lt.email.auth.invitation.tpl',
|
||||
'locale.country.unknown' => 'Nežinoma',
|
||||
'countries' => include 'lt.countries.php',
|
||||
'continents' => include 'lt.continents.php',
|
||||
];
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"Kunsten å være klok er kunsten å vite hva man skal overse."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'no',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => '%s Team',
|
||||
'auth.emails.confirm.title' => 'Bekreftelse av konto',
|
||||
'auth.emails.confirm.body' => 'no.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Reset passord',
|
||||
'auth.emails.recovery.body' => 'no.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Invitasjon til %s Team på %s',
|
||||
'auth.emails.invitation.body' => 'no.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Ukjent',
|
||||
|
||||
'countries' => include 'no.countries.php',
|
||||
'continents' => include 'no.continents.php',
|
||||
];
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afryka',
|
||||
'AN' => 'Antarktyda',
|
||||
'AS' => 'Azja',
|
||||
'EU' => 'Europa',
|
||||
'NA' => 'Ameryka Północna',
|
||||
'OC' => 'Oceania',
|
||||
'SA' => 'Ameryka południowa',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afganistan',
|
||||
'AO' => 'Angola',
|
||||
'AL' => 'Albania',
|
||||
'AD' => 'Andora',
|
||||
'AE' => 'Zjednoczone Emiraty Arabskie',
|
||||
'AR' => 'Argentyna',
|
||||
'AM' => 'Armenia',
|
||||
'AG' => 'Antigua i Barbuda',
|
||||
'AU' => 'Australia',
|
||||
'AT' => 'Austria',
|
||||
'AZ' => 'Azerbejdżan',
|
||||
'BI' => 'Burundi',
|
||||
'BE' => 'Belgia',
|
||||
'BJ' => 'Benin',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BD' => 'Bangladesz',
|
||||
'BG' => 'Bułgaria',
|
||||
'BH' => 'Bahrajn',
|
||||
'BS' => 'Bahamy',
|
||||
'BA' => 'Bośnia i Hercegowina',
|
||||
'BY' => 'Białoruś',
|
||||
'BZ' => 'Belize',
|
||||
'BO' => 'Boliwia',
|
||||
'BR' => 'Brazylia',
|
||||
'BB' => 'Barbados',
|
||||
'BN' => 'Brunei',
|
||||
'BT' => 'Bhutan',
|
||||
'BW' => 'Botswana',
|
||||
'CF' => 'Republika Środkowoafrykańska',
|
||||
'CA' => 'Kanada',
|
||||
'CH' => 'Szwajcaria',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'Chiny',
|
||||
'CI' => 'Wybrzeże Kości Słoniowej',
|
||||
'CM' => 'Kamerun',
|
||||
'CD' => 'DR Congo',
|
||||
'CG' => 'Republika Konga',
|
||||
'CO' => 'Kolumbia',
|
||||
'KM' => 'Komory',
|
||||
'CV' => 'Republika Zielonego Przylądka',
|
||||
'CR' => 'Kostaryka',
|
||||
'CU' => 'Kuba',
|
||||
'CY' => 'Cypr',
|
||||
'CZ' => 'Czechy',
|
||||
'DE' => 'Niemcy',
|
||||
'DJ' => 'Dżibuti',
|
||||
'DM' => 'Dominica',
|
||||
'DK' => 'Dania',
|
||||
'DO' => 'Republika Dominikańska',
|
||||
'DZ' => 'Algieria',
|
||||
'EC' => 'Ekwador',
|
||||
'EG' => 'Egipt',
|
||||
'ER' => 'Erytrea',
|
||||
'ES' => 'Hiszpania',
|
||||
'EE' => 'Estonia',
|
||||
'ET' => 'Etiopia',
|
||||
'FI' => 'Finlandia',
|
||||
'FJ' => 'Fidżi',
|
||||
'FR' => 'Francja',
|
||||
'FM' => 'Mikronezja',
|
||||
'GA' => 'Gabon',
|
||||
'GB' => 'Wielka Brytania',
|
||||
'GE' => 'Georgia',
|
||||
'GH' => 'Ghana',
|
||||
'GN' => 'Gwinea',
|
||||
'GM' => 'Gambia',
|
||||
'GW' => 'Gwinea Bissau',
|
||||
'GQ' => 'Gwinea Równikowa',
|
||||
'GR' => 'Grecja',
|
||||
'GD' => 'Grenada',
|
||||
'GT' => 'Gwatemala',
|
||||
'GY' => 'Gujana',
|
||||
'HN' => 'Honduras',
|
||||
'HR' => 'Chorwacja',
|
||||
'HT' => 'Haiti',
|
||||
'HU' => 'Węgry',
|
||||
'ID' => 'Indonezja',
|
||||
'IN' => 'Indie',
|
||||
'IE' => 'Irlandia',
|
||||
'IR' => 'Iran',
|
||||
'IQ' => 'Irak',
|
||||
'IS' => 'Islandia',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Włochy',
|
||||
'JM' => 'Jamajka',
|
||||
'JO' => 'Jordan',
|
||||
'JP' => 'Japonia',
|
||||
'KZ' => 'Kazachstan',
|
||||
'KE' => 'Kenia',
|
||||
'KG' => 'Kirgistan',
|
||||
'KH' => 'Kambodża',
|
||||
'KI' => 'Kiribati',
|
||||
'KN' => 'Saint Kitts i Nevis',
|
||||
'KR' => 'Korea Południowa',
|
||||
'KW' => 'Kuwejt',
|
||||
'LA' => 'Laos',
|
||||
'LB' => 'Liban',
|
||||
'LR' => 'Liberia',
|
||||
'LY' => 'Libia',
|
||||
'LC' => 'Saint Lucia',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LK' => 'Sri Lanka',
|
||||
'LS' => 'Lesotho',
|
||||
'LT' => 'Litwa',
|
||||
'LU' => 'Luksemburg',
|
||||
'LV' => 'Łotwa',
|
||||
'MA' => 'Maroko',
|
||||
'MC' => 'Monaco',
|
||||
'MD' => 'Mołdawia',
|
||||
'MG' => 'Madagaskar',
|
||||
'MV' => 'Malediwy',
|
||||
'MX' => 'Meksyk',
|
||||
'MH' => 'Wyspy Marshalla',
|
||||
'MK' => 'Macedonia',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MM' => 'Birma',
|
||||
'ME' => 'Czarnogóra',
|
||||
'MN' => 'Mongolia',
|
||||
'MZ' => 'Mozambik',
|
||||
'MR' => 'Mauretania',
|
||||
'MU' => 'Mauritius',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malezja',
|
||||
'NA' => 'Namibia',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NI' => 'Nikaragua',
|
||||
'NL' => 'Holandia',
|
||||
'NO' => 'Norwegia',
|
||||
'NP' => 'Nepal',
|
||||
'NR' => 'Nauru',
|
||||
'NZ' => 'Nowa Zelandia',
|
||||
'OM' => 'Oman',
|
||||
'PK' => 'Pakistan',
|
||||
'PA' => 'Panama',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Filipiny',
|
||||
'PW' => 'Palau',
|
||||
'PG' => 'Papua Nowa Gwinea',
|
||||
'PL' => 'Polska',
|
||||
'KP' => 'Korea Północna',
|
||||
'PT' => 'Portugalia',
|
||||
'PY' => 'Paragwaj',
|
||||
'QA' => 'Katar',
|
||||
'RO' => 'Rumunia',
|
||||
'RU' => 'Rosja',
|
||||
'RW' => 'Rwanda',
|
||||
'SA' => 'Arabia Saudyjska',
|
||||
'SD' => 'Sudan',
|
||||
'SN' => 'Senegal',
|
||||
'SG' => 'Singapur',
|
||||
'SB' => 'Wyspy Salomona',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SV' => 'Salwador',
|
||||
'SM' => 'San Marino',
|
||||
'SO' => 'Somalia',
|
||||
'RS' => 'Serbia',
|
||||
'SS' => 'Sudan Południowy',
|
||||
'ST' => 'Wyspy Świętego Tomasza i Książęca',
|
||||
'SR' => 'Surinam',
|
||||
'SK' => 'Słowacja',
|
||||
'SI' => 'Słowenia',
|
||||
'SE' => 'Szwecja',
|
||||
'SZ' => 'Suazi',
|
||||
'SC' => 'Seszele',
|
||||
'SY' => 'Syria',
|
||||
'TD' => 'Czad',
|
||||
'TG' => 'Togo',
|
||||
'TH' => 'Tajlandia',
|
||||
'TJ' => 'Tadżykistan',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TL' => 'Timor Wschodni',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trynidad i Tobago',
|
||||
'TN' => 'Tunezja',
|
||||
'TR' => 'Turcja',
|
||||
'TV' => 'Tuvalu',
|
||||
'TZ' => 'Tanzania',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraina',
|
||||
'UY' => 'Urugwaj',
|
||||
'US' => 'Stany Zjednoczone',
|
||||
'UZ' => 'Uzbekistan',
|
||||
'VA' => 'Watykan',
|
||||
'VC' => 'Saint Vincent i Grenadyny',
|
||||
'VE' => 'Wenezuela',
|
||||
'VN' => 'Wietnam',
|
||||
'VU' => 'Vanuatu',
|
||||
'WS' => 'Samoa',
|
||||
'YE' => 'Jemen',
|
||||
'ZA' => 'Republika Południowej Afryki',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
];
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"Sztuka bycia mądrym to sztuka wiedzieć, co przeoczyć."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'en',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => 'Zespół %s',
|
||||
'auth.emails.confirm.title' => 'Potwierdzenie konta',
|
||||
'auth.emails.confirm.body' => 'en.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Zresetowanie hasła',
|
||||
'auth.emails.recovery.body' => 'en.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Zaproszenie do zespołu %s - %s',
|
||||
'auth.emails.invitation.body' => 'en.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Nieznany',
|
||||
|
||||
'countries' => include 'en.countries.php',
|
||||
'continents' => include 'en.continents.php',
|
||||
];
|
||||
@@ -20,15 +20,15 @@ return [
|
||||
'BG' => 'Bulgária',
|
||||
'BH' => 'Bahrein',
|
||||
'BS' => 'Bahamas',
|
||||
'BA' => 'Bósnia and Herzegovina',
|
||||
'BY' => 'Bielorússia',
|
||||
'BA' => 'Bósnia e Herzegovina',
|
||||
'BY' => 'Bielorrússia',
|
||||
'BZ' => 'Belize',
|
||||
'BO' => 'Bolívia',
|
||||
'BR' => 'Brasil',
|
||||
'BB' => 'Barbados',
|
||||
'BN' => 'Brunei',
|
||||
'BT' => 'Butão',
|
||||
'BW' => 'Botsuana',
|
||||
'BW' => 'Botswana',
|
||||
'CF' => 'República Centro-Africana',
|
||||
'CA' => 'Canadá',
|
||||
'CH' => 'Suíça',
|
||||
@@ -38,13 +38,13 @@ return [
|
||||
'CM' => 'Camarões',
|
||||
'CD' => 'República Democrática do Congo',
|
||||
'CG' => 'República do Congo',
|
||||
'CO' => 'Colombia',
|
||||
'CO' => 'Colômbia',
|
||||
'KM' => 'Comores',
|
||||
'CV' => 'Cabo Verde',
|
||||
'CR' => 'Costa Rica',
|
||||
'CU' => 'Cuba',
|
||||
'CY' => 'Chipre',
|
||||
'CZ' => 'Tchéquia',
|
||||
'CZ' => 'República Tcheca',
|
||||
'DE' => 'Alemanha',
|
||||
'DJ' => 'Djibouti',
|
||||
'DM' => 'Dominica',
|
||||
@@ -53,14 +53,14 @@ return [
|
||||
'DZ' => 'Argélia',
|
||||
'EC' => 'Equador',
|
||||
'EG' => 'Egito',
|
||||
'ER' => 'Eritrea',
|
||||
'ER' => 'Eritreia',
|
||||
'ES' => 'Espanha',
|
||||
'EE' => 'Estônia',
|
||||
'ET' => 'Etiópia',
|
||||
'FI' => 'Finlândia',
|
||||
'FJ' => 'Fiji',
|
||||
'FR' => 'França',
|
||||
'FM' => 'Micronésia',
|
||||
'FM' => 'Estados Federados da Micronésia',
|
||||
'GA' => 'Gabão',
|
||||
'GB' => 'Reino Unido',
|
||||
'GE' => 'Geórgia',
|
||||
@@ -171,7 +171,7 @@ return [
|
||||
'TD' => 'Chade',
|
||||
'TG' => 'Togo',
|
||||
'TH' => 'Tailândia',
|
||||
'TJ' => 'Tajisquistão',
|
||||
'TJ' => 'Tajiquistão',
|
||||
'TM' => 'Turcomenistão',
|
||||
'TL' => 'Timor-Leste',
|
||||
'TO' => 'Tonga',
|
||||
@@ -186,7 +186,7 @@ return [
|
||||
'US' => 'Estados Unidos',
|
||||
'UZ' => 'Uzbequistão',
|
||||
'VA' => 'Cidade do Vaticano',
|
||||
'VC' => 'São Vincente e Granadinas',
|
||||
'VC' => 'São Vicente e Granadinas',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnã',
|
||||
'VU' => 'Vanuatu',
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"The art of being wise is the art of knowing what to overlook."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.inspire' => '"A arte de ser sábio é a arte de saber o que deixar passar."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'pt-br',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Африка',
|
||||
'AN' => 'Антарктика',
|
||||
'AS' => 'Азия',
|
||||
'EU' => 'Европа',
|
||||
'NA' => 'Северная Америка',
|
||||
'OC' => 'Океания',
|
||||
'SA' => 'Южная Америка',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Афганистан',
|
||||
'AO' => 'Ангола',
|
||||
'AL' => 'Албания',
|
||||
'AD' => 'Андорра',
|
||||
'AE' => 'Объединенные Арабские Эмираты',
|
||||
'AR' => 'Аргентина',
|
||||
'AM' => 'Армения',
|
||||
'AG' => 'Антигуа и Барбуда',
|
||||
'AU' => 'Австралия',
|
||||
'AT' => 'Австрия',
|
||||
'AZ' => 'Азербайджан',
|
||||
'BI' => 'Бурунди',
|
||||
'BE' => 'Бельгия',
|
||||
'BJ' => 'Бенин',
|
||||
'BF' => 'Буркина Фасо',
|
||||
'BD' => 'Бангладеш',
|
||||
'BG' => 'Болгария',
|
||||
'BH' => 'Бахрейн',
|
||||
'BS' => 'Багамские острова',
|
||||
'BA' => 'Босния и Герцеговина',
|
||||
'BY' => 'Беларусь',
|
||||
'BZ' => 'Бейлиз',
|
||||
'BO' => 'Боливия',
|
||||
'BR' => 'Бразилия',
|
||||
'BB' => 'Барбадос',
|
||||
'BN' => 'Бруней',
|
||||
'BT' => 'Бутан',
|
||||
'BW' => 'Ботсвана',
|
||||
'CF' => 'Центральноафриканская Республика',
|
||||
'CA' => 'Канада',
|
||||
'CH' => 'Швейцария',
|
||||
'CL' => 'Чили',
|
||||
'CN' => 'Китай',
|
||||
'CI' => 'Кот-д\'Ивуар',
|
||||
'CM' => 'Камерун',
|
||||
'CD' => 'ДР Конго',
|
||||
'CG' => 'Республика Конго',
|
||||
'CO' => 'Колумбия',
|
||||
'KM' => 'Коморы',
|
||||
'CV' => 'Кабо-Верде',
|
||||
'CR' => 'Коста-Рика',
|
||||
'CU' => 'Куба',
|
||||
'CY' => 'Кипр',
|
||||
'CZ' => 'Чехия',
|
||||
'DE' => 'Германия',
|
||||
'DJ' => 'Джибути',
|
||||
'DM' => 'Доминика',
|
||||
'DK' => 'Дания',
|
||||
'DO' => 'Доминиканская Республика',
|
||||
'DZ' => 'Алжир',
|
||||
'EC' => 'Эквадор',
|
||||
'EG' => 'Египет',
|
||||
'ER' => 'Эритрея',
|
||||
'ES' => 'Испания',
|
||||
'EE' => 'Эстония',
|
||||
'ET' => 'Эфиопия',
|
||||
'FI' => 'Финляндия',
|
||||
'FJ' => 'Фиджи',
|
||||
'FR' => 'Франция',
|
||||
'FM' => 'Микронезия',
|
||||
'GA' => 'Габон',
|
||||
'GB' => 'Великобритания',
|
||||
'GE' => 'Грузия',
|
||||
'GH' => 'Гана',
|
||||
'GN' => 'Гвинея',
|
||||
'GM' => 'Гамбия',
|
||||
'GW' => 'Гвинея-Бисау',
|
||||
'GQ' => 'Экваториальная Гвинея',
|
||||
'GR' => 'Греция',
|
||||
'GD' => 'Гренада',
|
||||
'GT' => 'Гватемала',
|
||||
'GY' => 'Гайана',
|
||||
'HN' => 'Гондурас',
|
||||
'HR' => 'Хорватия',
|
||||
'HT' => 'Гаити',
|
||||
'HU' => 'Венгрия',
|
||||
'ID' => 'Индонезия',
|
||||
'IN' => 'Индия',
|
||||
'IE' => 'Ирландия',
|
||||
'IR' => 'Иран',
|
||||
'IQ' => 'Ирак',
|
||||
'IS' => 'Исландия',
|
||||
'IL' => 'Израиль',
|
||||
'IT' => 'Италия',
|
||||
'JM' => 'Ямайка',
|
||||
'JO' => 'Иордания',
|
||||
'JP' => 'Япония',
|
||||
'KZ' => 'Казахстан',
|
||||
'KE' => 'Кения',
|
||||
'KG' => 'Киргизия',
|
||||
'KH' => 'Камбоджа',
|
||||
'KI' => 'Кирибати',
|
||||
'KN' => 'Сент-Китс и Невис',
|
||||
'KR' => 'Южная Корея',
|
||||
'KW' => 'Кувейт',
|
||||
'LA' => 'Лаос',
|
||||
'LB' => 'Ливан',
|
||||
'LR' => 'Либерия',
|
||||
'LY' => 'Ливия',
|
||||
'LC' => 'Сент-Люсия',
|
||||
'LI' => 'Лихтенштейн',
|
||||
'LK' => 'Шри Ланка',
|
||||
'LS' => 'Лесото',
|
||||
'LT' => 'Литва',
|
||||
'LU' => 'Люксембург',
|
||||
'LV' => 'Латвия',
|
||||
'MA' => 'Марокко',
|
||||
'MC' => 'Монако',
|
||||
'MD' => 'Молдова',
|
||||
'MG' => 'Мадагаскар',
|
||||
'MV' => 'Мальдивы',
|
||||
'MX' => 'Мексика',
|
||||
'MH' => 'Маршалловы острова',
|
||||
'MK' => 'Македония',
|
||||
'ML' => 'Мали',
|
||||
'MT' => 'Мальта',
|
||||
'MM' => 'Мьянма',
|
||||
'ME' => 'Черногория',
|
||||
'MN' => 'Монголия',
|
||||
'MZ' => 'Мозамбик',
|
||||
'MR' => 'Мавритания',
|
||||
'MU' => 'Маврикий',
|
||||
'MW' => 'Малави',
|
||||
'MY' => 'Малайзия',
|
||||
'NA' => 'Намибия',
|
||||
'NE' => 'Нигер',
|
||||
'NG' => 'Нигерия',
|
||||
'NI' => 'Никарагуа',
|
||||
'NL' => 'Нидерланды',
|
||||
'NO' => 'Норвегия',
|
||||
'NP' => 'Непал',
|
||||
'NR' => 'Науру',
|
||||
'NZ' => 'Новая Зеландия',
|
||||
'OM' => 'Оман',
|
||||
'PK' => 'Пакистан',
|
||||
'PA' => 'Панама',
|
||||
'PE' => 'Перу',
|
||||
'PH' => 'Филлиппины',
|
||||
'PW' => 'Палау',
|
||||
'PG' => 'Папуа Новая Гвинея',
|
||||
'PL' => 'Польша',
|
||||
'KP' => 'Северная Корея',
|
||||
'PT' => 'Португалия',
|
||||
'PY' => 'Парагвай',
|
||||
'QA' => 'Катар',
|
||||
'RO' => 'Румыния',
|
||||
'RU' => 'Россия',
|
||||
'RW' => 'Руанда',
|
||||
'SA' => 'Саудовская Аравия',
|
||||
'SD' => 'Судан',
|
||||
'SN' => 'Сенегал',
|
||||
'SG' => 'Сингапур',
|
||||
'SB' => 'Соломоновы Острова',
|
||||
'SL' => 'Сьерра Леоне',
|
||||
'SV' => 'Эль Сальвадор',
|
||||
'SM' => 'Сан Марино',
|
||||
'SO' => 'Сомали',
|
||||
'RS' => 'Сербия',
|
||||
'SS' => 'Южный Судан',
|
||||
'ST' => 'Сан-Томе и Принсипи',
|
||||
'SR' => 'Суринам',
|
||||
'SK' => 'Словакия',
|
||||
'SI' => 'Словения',
|
||||
'SE' => 'Швеция',
|
||||
'SZ' => 'Свазиленд',
|
||||
'SC' => 'Сейшеллы',
|
||||
'SY' => 'Сирия',
|
||||
'TD' => 'Чад',
|
||||
'TG' => 'Того',
|
||||
'TH' => 'Таиланд',
|
||||
'TJ' => 'Таджикистан',
|
||||
'TM' => 'Туркменистан',
|
||||
'TL' => 'Восточный Тимор',
|
||||
'TO' => 'Тонга',
|
||||
'TT' => 'Тринидад и Тобаго',
|
||||
'TN' => 'Тунис',
|
||||
'TR' => 'Турция',
|
||||
'TV' => 'Тувалу',
|
||||
'TZ' => 'Танзания',
|
||||
'UG' => 'Уганда',
|
||||
'UA' => 'Украина',
|
||||
'UY' => 'Уругвай',
|
||||
'US' => 'Соединенные Штаты',
|
||||
'UZ' => 'Узбекистан',
|
||||
'VA' => 'Ватикан',
|
||||
'VC' => 'Сент-Винсент и Гренадины',
|
||||
'VE' => 'Венесуэла',
|
||||
'VN' => 'Вьетнам',
|
||||
'VU' => 'Вануату',
|
||||
'WS' => 'Самоа',
|
||||
'YE' => 'Йемен',
|
||||
'ZA' => 'Южная Африка',
|
||||
'ZM' => 'Замбия',
|
||||
'ZW' => 'Зимбабве',
|
||||
];
|
||||
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"Искусство быть мудрым — это искусство знать, чем можно пренебречь."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'ru',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
'auth.emails.team' => 'Команда %s',
|
||||
'auth.emails.confirm.title' => 'Подтверждение аккаунта',
|
||||
'auth.emails.confirm.body' => 'ru.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Сброс пароля',
|
||||
'auth.emails.recovery.body' => 'ru.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Приглашение в команду %s по проекту %s',
|
||||
'auth.emails.invitation.body' => 'ru.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Неизвестно',
|
||||
|
||||
'countries' => include 'ru.countries.php',
|
||||
'continents' => include 'ru.continents.php',
|
||||
];
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'අප්රිකාව',
|
||||
'AN' => 'ඇන්ටාක්ටිකාව',
|
||||
'AS' => 'ආසියාව',
|
||||
'EU' => 'යුරෝපය',
|
||||
'NA' => 'උතුරු ඇමරිකාව',
|
||||
'OC' => 'ඕෂනියා',
|
||||
'SA' => 'දකුණු ඇමරිකාව',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'ඇෆ්ගනිස්ථානය',
|
||||
'AO' => 'ඇන්ගෝලා',
|
||||
'AL' => 'ඇල්බේනියාව',
|
||||
'AD' => 'ඇන්ඩෝරා',
|
||||
'AE' => 'එක්සත් අරාබි එමීර් රාජ්යය',
|
||||
'AR' => 'ආර්ජන්ටිනාව',
|
||||
'AM' => 'ආර්මේනියාව',
|
||||
'AG' => 'ඇන්ටිගුවා සහ බාබුඩා',
|
||||
'AU' => 'ඕස්ට්රේලියාව',
|
||||
'AT' => 'ඔස්ට්රියාව',
|
||||
'AZ' => 'අසර්බයිජානය',
|
||||
'BI' => 'බුරුන්ඩි',
|
||||
'BE' => 'බෙල්ජියම',
|
||||
'BJ' => 'බෙනින්',
|
||||
'BF' => 'බුර්කිනා ෆාසෝ',
|
||||
'BD' => 'බංග්ලාදේශය',
|
||||
'BG' => 'බල්ගේරියාව',
|
||||
'BH' => 'බහරේනය',
|
||||
'BS' => 'බහමාස්',
|
||||
'BA' => 'බොස්නියාව සහ හර්සගොවිනාව',
|
||||
'BY' => 'බෙලාරුස්',
|
||||
'BZ' => 'බෙලීස්',
|
||||
'BO' => 'බොලිවියාව',
|
||||
'BR' => 'බ්රසීලය',
|
||||
'BB' => 'බාබඩෝස්',
|
||||
'BN' => 'බෘනායි',
|
||||
'BT' => 'භූතානය',
|
||||
'BW' => 'බොට්ස්වානා',
|
||||
'CF' => 'මධ්යම අප්රිකානු ජනරජය',
|
||||
'CA' => 'කැනඩාව',
|
||||
'CH' => 'ස්විට්සර්ලන්තය',
|
||||
'CL' => 'චිලී',
|
||||
'CN' => 'චීනය',
|
||||
'CI' => 'අයිවරි කෝස්ට්',
|
||||
'CM' => 'කැමරූන්',
|
||||
'CD' => 'කොංගෝ ප්රජාතන්ත්රවාදී ජනරජය',
|
||||
'CG' => 'කොංගෝ ජනරජය',
|
||||
'CO' => 'කොලොම්බියාව',
|
||||
'KM' => 'කොමරෝස්',
|
||||
'CV' => 'කේප් වර්ඩ්',
|
||||
'CR' => 'කොස්ටාරිකාව',
|
||||
'CU' => 'කියුබාව',
|
||||
'CY' => 'සයිප්රසය',
|
||||
'CZ' => 'චෙක් ජනරජය',
|
||||
'DE' => 'ජර්මනිය',
|
||||
'DJ' => 'ජිබුටි',
|
||||
'DM' => 'ඩොමිනිකා',
|
||||
'DK' => 'ඩෙන්මාර්කය',
|
||||
'DO' => 'ඩොමිනිකානු ජනරජය',
|
||||
'DZ' => 'ඇල්ජීරියාව',
|
||||
'EC' => 'ඉක්වදෝරය',
|
||||
'EG' => 'ඊජිප්තුව',
|
||||
'ER' => 'එරිත්රියාව',
|
||||
'ES' => 'ස්පාඤ්ඤය',
|
||||
'EE' => 'එස්තෝනියාව',
|
||||
'ET' => 'ඉතියෝපියාව',
|
||||
'FI' => 'ෆින්ලන්තය',
|
||||
'FJ' => 'ෆීජි',
|
||||
'FR' => 'ප්රංශය',
|
||||
'FM' => 'මයික්රොනීසියාව',
|
||||
'GA' => 'ගැබොන්',
|
||||
'GB' => 'එක්සත් රාජධානිය',
|
||||
'GE' => 'ජෝර්ජියාව',
|
||||
'GH' => 'ගහනාව',
|
||||
'GN' => 'ගිනියාව',
|
||||
'GM' => 'ගැම්බියාව',
|
||||
'GW' => 'ගිනි-බිසව්',
|
||||
'GQ' => 'සමක ගිනියාව',
|
||||
'GR' => 'ග්රීසිය',
|
||||
'GD' => 'ග්රෙනාඩා',
|
||||
'GT' => 'ග්වාතමාලාව',
|
||||
'GY' => 'ගයනා',
|
||||
'HN' => 'හොන්ඩුරාස්',
|
||||
'HR' => 'ක්රොඒෂියාව',
|
||||
'HT' => 'හයිටි',
|
||||
'HU' => 'හංගේරියාව',
|
||||
'ID' => 'ඉන්දුනීසියාව',
|
||||
'IN' => 'ඉන්දියාව',
|
||||
'IE' => 'අයර්ලන්තය',
|
||||
'IR' => 'ඉරානය',
|
||||
'IQ' => 'ඉරාකය',
|
||||
'IS' => 'අයිස්ලන්තය',
|
||||
'IL' => 'ඊශ්රායෙල්',
|
||||
'IT' => 'ඉතාලිය',
|
||||
'JM' => 'ජැමෙයිකාව',
|
||||
'JO' => 'ජෝර්දානය',
|
||||
'JP' => 'ජපානය',
|
||||
'KZ' => 'කසකස්තානය',
|
||||
'KE' => 'කෙන්යාව',
|
||||
'KG' => 'ක්රිගිස්තානය',
|
||||
'KH' => 'කාම්බෝජය',
|
||||
'KI' => 'කිරිබති',
|
||||
'KN' => 'ශාන්ත කිට්ස් සහ නෙවිස්',
|
||||
'KR' => 'දකුණු කොරියාව',
|
||||
'KW' => 'කුවේට්',
|
||||
'LA' => 'ලාඕසය',
|
||||
'LB' => 'ලෙබනනය',
|
||||
'LR' => 'ලයිබීරියාව',
|
||||
'LY' => 'ලිබියාව',
|
||||
'LC' => 'ශාන්ත ලුසියා',
|
||||
'LI' => 'ලිච්ටෙන්ස්ටයින්',
|
||||
'LK' => 'ශ්රී ලංකාව',
|
||||
'LS' => 'ලෙසෝතෝ',
|
||||
'LT' => 'ලිතුවේනියාව',
|
||||
'LU' => 'ලක්සම්බර්ග්',
|
||||
'LV' => 'ලැට්වියාව',
|
||||
'MA' => 'මොරොක්කෝව',
|
||||
'MC' => 'මොනාකෝ',
|
||||
'MD' => 'මෝල්ඩෝවා',
|
||||
'MG' => 'මැඩගස්කරය',
|
||||
'MV' => 'මාලදිවයින',
|
||||
'MX' => 'මෙක්සිකෝව',
|
||||
'MH' => 'මාෂල් දූපත්',
|
||||
'MK' => 'මැසිඩෝනියාව',
|
||||
'ML' => 'මාලි',
|
||||
'MT' => 'මෝල්ටාව',
|
||||
'MM' => 'මියන්මාරය',
|
||||
'ME' => 'මොන්ටිනිග්රෝ',
|
||||
'MN' => 'මොන්ගෝලියාව',
|
||||
'MZ' => 'මොසැම්බික්',
|
||||
'MR' => 'මොරිටේනියාව',
|
||||
'MU' => 'මොරිෂස්',
|
||||
'MW' => 'මලාවි',
|
||||
'MY' => 'මැලේසියාව',
|
||||
'NA' => 'නැමීබියාව',
|
||||
'NE' => 'නයිජර්',
|
||||
'NG' => 'නයිජීරියාව',
|
||||
'NI' => 'නිකරගුවාව',
|
||||
'NL' => 'නෙදර්ලන්තය',
|
||||
'NO' => 'නෝර්වේ',
|
||||
'NP' => 'නේපාලය',
|
||||
'NR' => 'නාවුරූ',
|
||||
'NZ' => 'නිව්සීලන්තය',
|
||||
'OM' => 'ඕමානය',
|
||||
'PK' => 'පාකිස්තානය',
|
||||
'PA' => 'පැනමාව',
|
||||
'PE' => 'පේරු',
|
||||
'PH' => 'පිලිපීනය',
|
||||
'PW' => 'පලාවු',
|
||||
'PG' => 'පැපුවා නිව්ගීනියාව',
|
||||
'PL' => 'පෝලන්තය',
|
||||
'KP' => 'උතුරු කොරියාව',
|
||||
'PT' => 'පෘතුගාලය',
|
||||
'PY' => 'පැරගුවේ',
|
||||
'QA' => 'කටාර්',
|
||||
'RO' => 'රුමේනියාව',
|
||||
'RU' => 'රුසියාව',
|
||||
'RW' => 'රුවන්ඩාව',
|
||||
'SA' => 'සවුදි අරාබිය',
|
||||
'SD' => 'සුඩානය',
|
||||
'SN' => 'සෙනෙගල්',
|
||||
'SG' => 'සිංගප්පූරුව',
|
||||
'SB' => 'සොලමන් දූපත්',
|
||||
'SL' => 'සියාරා ලියොන්',
|
||||
'SV' => 'එල් සැල්වදෝරය',
|
||||
'SM' => 'සැන් මරිනෝ',
|
||||
'SO' => 'සෝමාලියාව',
|
||||
'RS' => 'සර්බියාව',
|
||||
'SS' => 'දකුණු සුඩානය',
|
||||
'ST' => 'සාඕ ටොමේ සහ ප්රින්සිප්',
|
||||
'SR' => 'සුරිනේම්',
|
||||
'SK' => 'ස්ලොවැකියාව',
|
||||
'SI' => 'ස්ලොවේනියාව',
|
||||
'SE' => 'ස්වීඩනය',
|
||||
'SZ' => 'ස්වාසිලන්තය',
|
||||
'SC' => 'සීෂෙල්ස්',
|
||||
'SY' => 'සිරියාව',
|
||||
'TD' => 'චැඩ්',
|
||||
'TG' => 'ටෝගෝ ජනරජය',
|
||||
'TH' => 'තායිලන්තය',
|
||||
'TJ' => 'ටජිකිස්තානය',
|
||||
'TM' => 'ටර්ක්මෙනිස්තානය',
|
||||
'TL' => 'ටිමෝර්-ලෙස්ටේ',
|
||||
'TO' => 'ටොංගා',
|
||||
'TT' => 'ට්රිනිඩෑඩ් සහ ටොබැගෝ',
|
||||
'TN' => 'ටියුනීසියාව',
|
||||
'TR' => 'තුර්කිය',
|
||||
'TV' => 'ටුවාලු',
|
||||
'TZ' => 'ටැන්සානියාව',
|
||||
'UG' => 'උගන්ඩාව',
|
||||
'UA' => 'යුක්රේනය',
|
||||
'UY' => 'උරුගුවේ',
|
||||
'US' => 'එක්සත් ජනපදය',
|
||||
'UZ' => 'උස්බෙකිස්තානය',
|
||||
'VA' => 'වතිකානු නගරය',
|
||||
'VC' => 'ශාන්ත වින්සන්ට් සහ ග්රෙනඩින්ස්',
|
||||
'VE' => 'වෙනිසියුලාව',
|
||||
'VN' => 'වියට්නාමය',
|
||||
'VU' => 'වනුවාටු',
|
||||
'WS' => 'සැමෝවා',
|
||||
'YE' => 'යේමනය',
|
||||
'ZA' => 'දකුණු අප්රිකාව',
|
||||
'ZM' => 'සැම්බියාව',
|
||||
'ZW' => 'සිම්බාබ්වේ',
|
||||
];
|
||||
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
return [
|
||||
'settings.inspire' => '"ප්රඥාවන්ත වීමේ කලාව යනු නොසලකා හැරිය යුතු දේ දැන ගැනීමේ කලාවයි."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'si',
|
||||
'settings.direction' => 'ltr',
|
||||
// Service - Users
|
||||
'auth.emails.team' => '%s කණ්ඩායම',
|
||||
'auth.emails.confirm.title' => 'ගිණුම් තහවුරු කිරීම',
|
||||
'auth.emails.confirm.body' => 'si.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'මුරපදය යළි පිහිටුවන්න',
|
||||
'auth.emails.recovery.body' => 'si.email.auth.recovery.tpl',
|
||||
|
||||
'auth.emails.invitation.title' => 'ආරාධනයයි , %s කණ්ඩායමට %s ව්යාපෘතියෙහි',
|
||||
'auth.emails.invitation.body' => 'si.email.auth.invitation.tpl',
|
||||
'locale.country.unknown' => 'Unknown',
|
||||
'countries' => include 'si.countries.php',
|
||||
'continents' => include 'si.continents.php',
|
||||
];
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afrika',
|
||||
'AN' => 'Antarktika',
|
||||
'AS' => 'Azija',
|
||||
'EU' => 'Evropa',
|
||||
'NA' => 'Severna Amerika',
|
||||
'OC' => 'Oceanija',
|
||||
'SA' => 'Južna Amerika',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afganistan',
|
||||
'AO' => 'Angola',
|
||||
'AL' => 'Albanija',
|
||||
'AD' => 'Andora',
|
||||
'AE' => 'Združeni Arabski Emirati',
|
||||
'AR' => 'Argenitna',
|
||||
'AM' => 'Armenija',
|
||||
'AG' => 'Antigva in Barbuda',
|
||||
'AU' => 'Avstralija',
|
||||
'AT' => 'Avstrija',
|
||||
'AZ' => 'Azerbajdžan',
|
||||
'BI' => 'Burundi ',
|
||||
'BE' => 'Belgija',
|
||||
'BJ' => 'Benin',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BD' => 'Bangladeš',
|
||||
'BG' => 'Bolgarija',
|
||||
'BH' => 'Bahrajn',
|
||||
'BS' => 'Bahami',
|
||||
'BA' => 'Bosna in Hercegovina',
|
||||
'BY' => 'Belorusija',
|
||||
'BZ' => 'Belize',
|
||||
'BO' => 'Bolivija',
|
||||
'BR' => 'Brazilija',
|
||||
'BB' => 'Barbados',
|
||||
'BN' => 'Brunej',
|
||||
'BT' => 'Butan',
|
||||
'BW' => 'Bocvana',
|
||||
'CF' => 'Srednjeafriška republika',
|
||||
'CA' => 'Kanada',
|
||||
'CH' => 'Švica',
|
||||
'CL' => 'Čile',
|
||||
'CN' => 'Kitajska',
|
||||
'CI' => 'Slonokoščena obala',
|
||||
'CM' => 'Kamerun',
|
||||
'CD' => 'Demokratična republika Kongo',
|
||||
'CG' => 'Kongo',
|
||||
'CO' => 'Kolumbija',
|
||||
'KM' => 'Komori',
|
||||
'CV' => 'Kapverdski otoki (Zelenortski otoki)',
|
||||
'CR' => 'Kostarika',
|
||||
'CU' => 'Kuba',
|
||||
'CY' => 'Ciper',
|
||||
'CZ' => 'Češka',
|
||||
'DE' => 'Nemčija',
|
||||
'DJ' => 'Džibuti',
|
||||
'DM' => 'Dominika',
|
||||
'DK' => 'Danska',
|
||||
'DO' => 'Dominikanska republika',
|
||||
'DZ' => 'Alžirija',
|
||||
'EC' => 'Ekvador',
|
||||
'EG' => 'Egipt',
|
||||
'ER' => 'Eritreja',
|
||||
'ES' => 'Španija',
|
||||
'EE' => 'Estonija',
|
||||
'ET' => 'Etiopija',
|
||||
'FI' => 'Finska',
|
||||
'FJ' => 'Fidži',
|
||||
'FR' => 'Francija',
|
||||
'FM' => 'Mikronezija',
|
||||
'GA' => 'Gabon',
|
||||
'GB' => 'Velika Britanija',
|
||||
'GE' => 'Gruzija',
|
||||
'GH' => 'Gana',
|
||||
'GN' => 'Gvineja',
|
||||
'GM' => 'Gambija',
|
||||
'GW' => 'Gvineja-Bissau',
|
||||
'GQ' => 'Ekvatorialna Gvineja',
|
||||
'GR' => 'Grčija',
|
||||
'GD' => 'Grenada',
|
||||
'GT' => 'Gvatemala',
|
||||
'GY' => 'Gvajana',
|
||||
'HN' => 'Honduras',
|
||||
'HR' => 'Hrvaška',
|
||||
'HT' => 'Haiti',
|
||||
'HU' => 'Madžarska',
|
||||
'ID' => 'Indonezija',
|
||||
'IN' => 'Indija',
|
||||
'IE' => 'Irska',
|
||||
'IR' => 'Iran',
|
||||
'IQ' => 'Irak',
|
||||
'IS' => 'Islandija',
|
||||
'IL' => 'Izrael',
|
||||
'IT' => 'Italija',
|
||||
'JM' => 'Jamajka',
|
||||
'JO' => 'Jordanija',
|
||||
'JP' => 'Japonska',
|
||||
'KZ' => 'Kazahstan',
|
||||
'KE' => 'Kenija',
|
||||
'KG' => 'Kirgizistan (Kirgizija)',
|
||||
'KH' => 'Kambodža',
|
||||
'KI' => 'Kiribati',
|
||||
'KN' => 'Sveti Kits in Nevis',
|
||||
'KR' => 'Južna Koreja',
|
||||
'KW' => 'Kuvajt',
|
||||
'LA' => 'Laos',
|
||||
'LB' => 'Libanon',
|
||||
'LR' => 'Liberija',
|
||||
'LY' => 'Libija',
|
||||
'LC' => 'Sveta Lucija',
|
||||
'LI' => 'Lihtenštajn',
|
||||
'LK' => 'Šri Lanka',
|
||||
'LS' => 'Lesoto',
|
||||
'LT' => 'Litva',
|
||||
'LU' => 'Luksemburg',
|
||||
'LV' => 'Latvija',
|
||||
'MA' => 'Maroko',
|
||||
'MC' => 'Monako',
|
||||
'MD' => 'Moldavija',
|
||||
'MG' => 'Madagaskar',
|
||||
'MV' => 'Maldivi',
|
||||
'MX' => 'Mehika',
|
||||
'MH' => 'Maršalovi otoki',
|
||||
'MK' => 'Makedonija',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MM' => 'Mjanmar',
|
||||
'ME' => 'Črna Gora',
|
||||
'MN' => 'Mongolija',
|
||||
'MZ' => 'Mozambik',
|
||||
'MR' => 'Mavretanija',
|
||||
'MU' => 'Mauricius (Moris)',
|
||||
'MW' => 'Malavi',
|
||||
'MY' => 'Malezija',
|
||||
'NA' => 'Namibija',
|
||||
'NE' => 'Niger ',
|
||||
'NG' => 'Nigerija',
|
||||
'NI' => 'Nikaragva',
|
||||
'NL' => 'Nizozemska',
|
||||
'NO' => 'Norveška',
|
||||
'NP' => 'Nepal',
|
||||
'NR' => 'Nauru',
|
||||
'NZ' => 'Nova Zelandija',
|
||||
'OM' => 'Oman',
|
||||
'PK' => 'Pakistan',
|
||||
'PA' => 'Panama',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Filipini',
|
||||
'PW' => 'Palau ',
|
||||
'PG' => 'Papua Nova Gvineja',
|
||||
'PL' => 'Poljska',
|
||||
'KP' => 'Severna Koreja',
|
||||
'PT' => 'Portugalska',
|
||||
'PY' => 'Paragvaj',
|
||||
'QA' => 'Katar',
|
||||
'RO' => 'Romunija',
|
||||
'RU' => 'Ruska federacija',
|
||||
'RW' => 'Ruanda',
|
||||
'SA' => 'Savdska Arabija',
|
||||
'SD' => 'Sudan',
|
||||
'SN' => 'Senegal',
|
||||
'SG' => 'Singapur',
|
||||
'SB' => 'Solomonovi otoki',
|
||||
'SL' => 'Siera Leone',
|
||||
'SV' => 'Salvador',
|
||||
'SM' => 'San Marino',
|
||||
'SO' => 'Somalija',
|
||||
'RS' => 'Srbija',
|
||||
'SS' => 'Južni Sudan',
|
||||
'ST' => 'Sao Tome in Principe',
|
||||
'SR' => 'Surinam',
|
||||
'SK' => 'Slovaška',
|
||||
'SI' => 'Slovenija',
|
||||
'SE' => 'Švedska',
|
||||
'SZ' => 'Svazi',
|
||||
'SC' => 'Sejšeli',
|
||||
'SY' => 'Sirija',
|
||||
'TD' => 'Čad',
|
||||
'TG' => 'Togo',
|
||||
'TH' => 'Tajska',
|
||||
'TJ' => 'Tadžikistan',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TL' => 'Vzhodni Timor',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad in Tobago',
|
||||
'TN' => 'Tunizija',
|
||||
'TR' => 'Turčija',
|
||||
'TV' => 'Tuvalu',
|
||||
'TZ' => 'Tanzanija',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukrajina',
|
||||
'UY' => 'Urugvaj',
|
||||
'US' => 'Združene države Amerike',
|
||||
'UZ' => 'Uzbekistan',
|
||||
'VA' => 'Vatikan',
|
||||
'VC' => 'Sveti Vincent in Grenadini',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnam',
|
||||
'VU' => 'Republika Vanuatu',
|
||||
'WS' => 'Samoa',
|
||||
'YE' => 'Jemen',
|
||||
'ZA' => 'Južna afrika',
|
||||
'ZM' => 'Zambija',
|
||||
'ZW' => 'Zimbabve',
|
||||
];
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"Srčika modrosti je umetnost védenja, kaj spregledati."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'sl',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => '%s Ekipa',
|
||||
'auth.emails.confirm.title' => 'Potrditev računa',
|
||||
'auth.emails.confirm.body' => 'sl.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Ponastavitev gesla',
|
||||
'auth.emails.recovery.body' => 'sl.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Povabilo v %s Ekipo za %s',
|
||||
'auth.emails.invitation.body' => 'sl.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Neznano',
|
||||
|
||||
'countries' => include 'sl.countries.php',
|
||||
'continents' => include 'sl.continents.php',
|
||||
];
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'Afrika',
|
||||
'AN' => 'Antarktis',
|
||||
'AS' => 'Asien',
|
||||
'EU' => 'Europa',
|
||||
'NA' => 'Nordamerika',
|
||||
'OC' => 'Oceanien',
|
||||
'SA' => 'Sydamerika',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
// When there are multiple alternative correct country names please follow https://sv.wikipedia.org/wiki/ISO_3166
|
||||
return [
|
||||
'AF' => 'Afganistan',
|
||||
'AO' => 'Angola',
|
||||
'AL' => 'Albanien',
|
||||
'AD' => 'Andorra',
|
||||
'AE' => 'Förenade Arabemiraterna',
|
||||
'AR' => 'Argentina',
|
||||
'AM' => 'Armenien',
|
||||
'AG' => 'Antigua och Barbuda',
|
||||
'AU' => 'Australien',
|
||||
'AT' => 'Österrike',
|
||||
'AZ' => 'Azerbajdzjan',
|
||||
'BI' => 'Burundi',
|
||||
'BE' => 'Belgien',
|
||||
'BJ' => 'Benin',
|
||||
'BF' => 'Burkina Faso',
|
||||
'BD' => 'Bangladesh',
|
||||
'BG' => 'Bulgarien',
|
||||
'BH' => 'Bahrain',
|
||||
'BS' => 'Bahamas',
|
||||
'BA' => 'Bosnien och Hercegovina',
|
||||
'BY' => 'Vitrysslnd',
|
||||
'BZ' => 'Belize',
|
||||
'BO' => 'Bolivien',
|
||||
'BR' => 'Brasilien',
|
||||
'BB' => 'Barbados',
|
||||
'BN' => 'Brune',
|
||||
'BT' => 'Butan',
|
||||
'BW' => 'Botswana',
|
||||
'CF' => 'Centralafrikanska republiken',
|
||||
'CA' => 'Kanada',
|
||||
'CH' => 'Schweiz',
|
||||
'CL' => 'Chile',
|
||||
'CN' => 'Kina',
|
||||
'CI' => 'Elfenbenskusten',
|
||||
'CM' => 'Kamerun',
|
||||
'CD' => 'Kongo-Kinshasa',
|
||||
'CG' => 'Kongo-Brazzaville',
|
||||
'CO' => 'Colombia',
|
||||
'KM' => 'Komorerna',
|
||||
'CV' => 'Kap Verde',
|
||||
'CR' => 'Costa Rica',
|
||||
'CU' => 'Kuba',
|
||||
'CY' => 'Cypern',
|
||||
'CZ' => 'Tjeckien',
|
||||
'DE' => 'Tyskland',
|
||||
'DJ' => 'Djibouti',
|
||||
'DM' => 'Dominica',
|
||||
'DK' => 'Danmark',
|
||||
'DO' => 'Dominikanska republiken',
|
||||
'DZ' => 'Algeriet',
|
||||
'EC' => 'Ekvador',
|
||||
'EG' => 'Egypten',
|
||||
'ER' => 'Eritrea',
|
||||
'ES' => 'Spanien',
|
||||
'EE' => 'Estonia',
|
||||
'ET' => 'Etiopien',
|
||||
'FI' => 'Finland',
|
||||
'FJ' => 'Fiji',
|
||||
'FR' => 'Frankrike',
|
||||
'FM' => 'Mikronesien',
|
||||
'GA' => 'Gabon',
|
||||
'GB' => 'Storbrittannien',
|
||||
'GE' => 'Georgien',
|
||||
'GH' => 'Ghana',
|
||||
'GN' => 'Guinea',
|
||||
'GM' => 'Gambia',
|
||||
'GW' => 'Guinea-Bissau',
|
||||
'GQ' => 'Ekvatorialguinea',
|
||||
'GR' => 'Grekland',
|
||||
'GD' => 'Grenada',
|
||||
'GT' => 'Guatemala',
|
||||
'GY' => 'Guyana',
|
||||
'HN' => 'Honduras',
|
||||
'HR' => 'Kroatien',
|
||||
'HT' => 'Haiti',
|
||||
'HU' => 'Ungern',
|
||||
'ID' => 'Indonesien',
|
||||
'IN' => 'Indien',
|
||||
'IE' => 'Irland',
|
||||
'IR' => 'Iran',
|
||||
'IQ' => 'Irak',
|
||||
'IS' => 'Island',
|
||||
'IL' => 'Israel',
|
||||
'IT' => 'Italien',
|
||||
'JM' => 'Jamaika',
|
||||
'JO' => 'Jordanien',
|
||||
'JP' => 'Japan',
|
||||
'KZ' => 'Kazakstan',
|
||||
'KE' => 'Kenya',
|
||||
'KG' => 'Kirgizistan',
|
||||
'KH' => 'Kambodja',
|
||||
'KI' => 'Kiribati',
|
||||
'KN' => 'Saint Kitts och Nevis',
|
||||
'KR' => 'Sydkorea',
|
||||
'KW' => 'Kuwait',
|
||||
'LA' => 'Laos',
|
||||
'LB' => 'Libanon',
|
||||
'LR' => 'Liberien',
|
||||
'LY' => 'Libyen',
|
||||
'LC' => 'Saint Lucia',
|
||||
'LI' => 'Liechtenstein',
|
||||
'LK' => 'Sri Lanka',
|
||||
'LS' => 'Lesotho',
|
||||
'LT' => 'Litauen',
|
||||
'LU' => 'Luxemburg',
|
||||
'LV' => 'Latvien',
|
||||
'MA' => 'Marocko',
|
||||
'MC' => 'Monaco',
|
||||
'MD' => 'Moldavien',
|
||||
'MG' => 'Madagaskar',
|
||||
'MV' => 'Maldiverna',
|
||||
'MX' => 'Mexiko',
|
||||
'MH' => 'Marshall Islands',
|
||||
'MK' => 'Nordmakedonien',
|
||||
'ML' => 'Mali',
|
||||
'MT' => 'Malta',
|
||||
'MM' => 'Myanmar',
|
||||
'ME' => 'Montenegro',
|
||||
'MN' => 'Mongolien',
|
||||
'MZ' => 'Moçambique',
|
||||
'MR' => 'Mauritanien',
|
||||
'MU' => 'Mauritius',
|
||||
'MW' => 'Malawi',
|
||||
'MY' => 'Malaysia',
|
||||
'NA' => 'Namibia',
|
||||
'NE' => 'Niger',
|
||||
'NG' => 'Nigeria',
|
||||
'NI' => 'Nicaragua',
|
||||
'NL' => 'Nederländerna',
|
||||
'NO' => 'Norge',
|
||||
'NP' => 'Nepal',
|
||||
'NR' => 'Nauru',
|
||||
'NZ' => 'Nya Zealand',
|
||||
'OM' => 'Oman',
|
||||
'PK' => 'Pakistan',
|
||||
'PA' => 'Panama',
|
||||
'PE' => 'Peru',
|
||||
'PH' => 'Filppinerna',
|
||||
'PW' => 'Palau',
|
||||
'PG' => 'Papua New Guinea',
|
||||
'PL' => 'Polen',
|
||||
'KP' => 'Nordkorea',
|
||||
'PT' => 'Portugal',
|
||||
'PY' => 'Paraguay',
|
||||
'QA' => 'Qatar',
|
||||
'RO' => 'Rumänien',
|
||||
'RU' => 'Ryssland',
|
||||
'RW' => 'Rwanda',
|
||||
'SA' => 'Saudiarabien',
|
||||
'SD' => 'Sudan',
|
||||
'SN' => 'Senegal',
|
||||
'SG' => 'Singapor',
|
||||
'SB' => 'Solomonöarna',
|
||||
'SL' => 'Sierra Leone',
|
||||
'SV' => 'El Salvador',
|
||||
'SM' => 'San Marino',
|
||||
'SO' => 'Somalien',
|
||||
'RS' => 'Serbien',
|
||||
'SS' => 'Sydsudan',
|
||||
'ST' => 'São Tomé och Príncipe',
|
||||
'SR' => 'Surinam',
|
||||
'SK' => 'Slovakien',
|
||||
'SI' => 'Slovenien',
|
||||
'SE' => 'Sverige',
|
||||
'SZ' => 'Swaziland',
|
||||
'SC' => 'Seychellerna',
|
||||
'SY' => 'Syrien',
|
||||
'TD' => 'Tchad',
|
||||
'TG' => 'Togo',
|
||||
'TH' => 'Thailand',
|
||||
'TJ' => 'Tadzjikistan',
|
||||
'TM' => 'Turkmenistan',
|
||||
'TL' => 'Timor-Leste',
|
||||
'TO' => 'Tonga',
|
||||
'TT' => 'Trinidad och Tobago',
|
||||
'TN' => 'Tunisien',
|
||||
'TR' => 'Turkiet',
|
||||
'TV' => 'Tuvalu',
|
||||
'TZ' => 'Tanzania',
|
||||
'UG' => 'Uganda',
|
||||
'UA' => 'Ukraina',
|
||||
'UY' => 'Uruguay',
|
||||
'US' => 'Amerikas Förenta Stater',
|
||||
'UZ' => 'Uzbekistan',
|
||||
'VA' => 'Vatikanstaten',
|
||||
'VC' => 'Sankt Vincent och Grenadinerna',
|
||||
'VE' => 'Venezuela',
|
||||
'VN' => 'Vietnam',
|
||||
'VU' => 'Vanuatu',
|
||||
'WS' => 'Samoa',
|
||||
'YE' => 'Jemen',
|
||||
'ZA' => 'Sydafrika',
|
||||
'ZM' => 'Zambia',
|
||||
'ZW' => 'Zimbabwe',
|
||||
];
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"The art of being wise is the art of knowing what to overlook."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'sv',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => '%s-teamet',
|
||||
'auth.emails.confirm.title' => 'Kontobekräftelse',
|
||||
'auth.emails.confirm.body' => 'sv.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'Ändra lösenord',
|
||||
'auth.emails.recovery.body' => 'sv.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => 'Inbjudan till %s-teamet i %s',
|
||||
'auth.emails.invitation.body' => 'sv.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'Okänt',
|
||||
|
||||
'countries' => include 'sv.countries.php',
|
||||
'continents' => include 'sv.continents.php',
|
||||
];
|
||||
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'ஆப்பிரிக்கா',
|
||||
'AN' => 'அந்தாட்டிக்கா',
|
||||
'AS' => 'ஆசியா',
|
||||
'EU' => 'ஐரோப்பா',
|
||||
'NA' => 'வட அமெரிக்கா',
|
||||
'OC' => 'ஓசியானியா',
|
||||
'SA' => 'தென் அமெரிக்கா',
|
||||
];
|
||||
@@ -0,0 +1,198 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'AF' => 'ஆப்கானித்தான்',
|
||||
'AO' => 'அங்கோலா',
|
||||
'AL' => 'அல்பேனியா',
|
||||
'AD' => 'அந்தோரா',
|
||||
'AE' => 'ஐக்கிய அரபு அமீரகம்',
|
||||
'AR' => 'அர்கெந்தீனா',
|
||||
'AM' => 'ஆர்மீனியா',
|
||||
'AG' => 'அன்டிகுவா பர்புடா',
|
||||
'AU' => 'ஆத்திரேலியா',
|
||||
'AT' => 'ஆஸ்திரியா',
|
||||
'AZ' => 'அசர்பைஜான்',
|
||||
'BI' => 'புருண்டி',
|
||||
'BE' => 'பெல்ஜியம்',
|
||||
'BJ' => 'பெனின்',
|
||||
'BF' => 'புர்கினா பாசோ',
|
||||
'BD' => 'வங்காளதேசம்',
|
||||
'BG' => 'பல்கேரியா',
|
||||
'BH' => 'பஹ்ரேய்ன்',
|
||||
'BS' => 'பகாமாசு',
|
||||
'BA' => 'பொஸ்னியாவும், ஹெர்ஸகொவினாவும்',
|
||||
'BY' => 'பெலாருஸ்',
|
||||
'BZ' => 'பெலிசு',
|
||||
'BO' => 'பொலீவியா',
|
||||
'BR' => 'பிரேஸில்',
|
||||
'BB' => 'பார்படோஸ்',
|
||||
'BN' => 'புரூணை',
|
||||
'BT' => 'பூட்டான்',
|
||||
'BW' => 'பொட்ஸ்வானா',
|
||||
'CF' => 'மத்திய ஆபிரிக்கக் குடியரசு',
|
||||
'CA' => 'கனடா',
|
||||
'CH' => 'சுவிட்சர்லாந்து',
|
||||
'CL' => 'சிலி',
|
||||
'CN' => 'சீனா',
|
||||
'CI' => 'ஐவரி கோஸ்ட்',
|
||||
'CM' => 'கமரூன்',
|
||||
'CD' => 'காங்கோ மக்களாட்சிக் குடியரசு',
|
||||
'CG' => 'காங்கோ குடியரசு',
|
||||
'CO' => 'கொலம்பியா',
|
||||
'KM' => 'கொமொரோசு',
|
||||
'CV' => 'கேப் வர்டி',
|
||||
'CR' => 'கோஸ்ட்டா ரிக்கா',
|
||||
'CU' => 'கியூபா',
|
||||
'CY' => 'சைப்பிரசு',
|
||||
'CZ' => 'செக் குடியரசு',
|
||||
'DE' => 'ஜெர்மனி',
|
||||
'DJ' => 'ஜிபூட்டி',
|
||||
'DM' => 'டொமினிக்கா',
|
||||
'DK' => 'டென்மார்க்',
|
||||
'DO' => 'டொமினிகன் குடியரசு',
|
||||
'DZ' => 'அல்ஜீரியா',
|
||||
'EC' => 'எக்குவடோர்',
|
||||
'EG' => 'எகிப்து',
|
||||
'ER' => 'எரித்திரியா',
|
||||
'ES' => 'ஸ்பெயின்',
|
||||
'EE' => 'எசுத்தோனியா',
|
||||
'ET' => 'எதியோப்பியா',
|
||||
'FI' => 'பின்லாந்து',
|
||||
'FJ' => 'பிஜி',
|
||||
'FR' => 'பிரான்ஸ்',
|
||||
'FM' => 'மைக்குரோனீசியக் கூட்டு நாடுகள்',
|
||||
'GA' => 'காபொன்',
|
||||
'GB' => 'ஐக்கிய இராச்சியம்',
|
||||
'GE' => 'ஜோர்ஜியா',
|
||||
'GH' => 'கானா',
|
||||
'GN' => 'கினியா',
|
||||
'GM' => 'கம்பியா',
|
||||
'GW' => 'கினி-பிசாவு',
|
||||
'GQ' => 'எக்குவடோரியல் கினி',
|
||||
'GR' => 'கிரேக்க நாடு',
|
||||
'GD' => 'கிரெனடா',
|
||||
'GT' => 'குவாத்தமாலா',
|
||||
'GY' => 'கயானா',
|
||||
'HN' => 'ஹொண்டூராஸ்',
|
||||
'HR' => 'குரோவாசியா',
|
||||
'HT' => 'ஹைத்தி',
|
||||
'HU' => 'ஹங்கேரி',
|
||||
'ID' => 'இந்தோனேசியா',
|
||||
'IN' => 'இந்தியா',
|
||||
'IE' => 'அயர்லாந்து',
|
||||
'IR' => 'ஈரான்',
|
||||
'IQ' => 'ஈராக்',
|
||||
'IS' => 'ஐசுலாந்து',
|
||||
'IL' => 'இசுரேல்',
|
||||
'IT' => 'இத்தாலி',
|
||||
'JM' => 'ஜமேக்கா',
|
||||
'JO' => 'ஜோர்தான்',
|
||||
'JP' => 'ஜப்பான்',
|
||||
'KZ' => 'கசக்கஸ்தான்',
|
||||
'KE' => 'கென்யா',
|
||||
'KG' => 'கிர்கிசுத்தான்',
|
||||
'KH' => 'கம்போடியா',
|
||||
'KI' => 'கிரிபட்டி',
|
||||
'KN' => 'செயிண்ட். கிட்ஸ் நெவிஸ்',
|
||||
'KR' => 'தென் கொரியா',
|
||||
'KW' => 'குவைத்',
|
||||
'LA' => 'லாவோஸ்',
|
||||
'LB' => 'லெபனான்',
|
||||
'LR' => 'லைபீரியா',
|
||||
'LY' => 'லிபியா',
|
||||
'LC' => 'செயிண்ட். லூசியா',
|
||||
'LI' => 'லெய்செஸ்டீன்',
|
||||
'LK' => 'இலங்கை',
|
||||
'LS' => 'லெசோத்தோ',
|
||||
'LT' => 'லித்துவேனியா',
|
||||
'LU' => 'லக்சம்பர்க்',
|
||||
'LV' => 'லாத்வியா',
|
||||
'MA' => 'மொரோக்கோ',
|
||||
'MC' => 'மொனாகோ',
|
||||
'MD' => 'மோல்டோவா',
|
||||
'MG' => 'மடகாஸ்கர்',
|
||||
'MV' => 'மாலைதீவுகள்',
|
||||
'MX' => 'மெக்சிகோ',
|
||||
'MH' => 'மார்ஷல் தீவுகள்',
|
||||
'MK' => 'மசிடோனியக் குடியரசு',
|
||||
'ML' => 'மாலி',
|
||||
'MT' => 'மால்ட்டா',
|
||||
'MM' => 'மியன்மார்',
|
||||
'ME' => 'மொண்டெனேகுரோ',
|
||||
'MN' => 'மங்கோலியா',
|
||||
'MZ' => 'மொசாம்பிக்',
|
||||
'MR' => 'மௌரித்தானியா',
|
||||
'MU' => 'மொரிசியசு',
|
||||
'MW' => 'மலாவி',
|
||||
'MY' => 'மலேசியா',
|
||||
'NA' => 'நமீபியா',
|
||||
'NE' => 'நைஜர்',
|
||||
'NG' => 'நைஜீரியா',
|
||||
'NI' => 'நிக்கராகுவா',
|
||||
'NL' => 'நெதர்லாந்து',
|
||||
'NO' => 'நோர்வே',
|
||||
'NP' => 'நேபாளம்',
|
||||
'NR' => 'நவூரு',
|
||||
'NZ' => 'நியூசிலாந்து',
|
||||
'OM' => 'ஓமான்',
|
||||
'PK' => 'பாகிஸ்தான்',
|
||||
'PA' => 'பனாமா',
|
||||
'PE' => 'பெரு',
|
||||
'PH' => 'பிலிப்பைன்ஸ்',
|
||||
'PW' => 'பலாவு',
|
||||
'PG' => 'பப்புவா நியூகினியா',
|
||||
'PL' => 'போலந்து',
|
||||
'KP' => 'வட கொரியா',
|
||||
'PT' => 'போர்த்துக்கல்',
|
||||
'PY' => 'பராகுவே',
|
||||
'QA' => 'கட்டார்',
|
||||
'RO' => 'உருமேனியா',
|
||||
'RU' => 'ரஷ்யா',
|
||||
'RW' => 'ருவாண்டா',
|
||||
'SA' => 'சவூதி அரேபியா',
|
||||
'SD' => 'சூடான்',
|
||||
'SN' => 'செனிகல்',
|
||||
'SG' => 'சிங்கப்பூர்',
|
||||
'SB' => 'சொலமன் தீவுகள்',
|
||||
'SL' => 'சியேரா லியோனி',
|
||||
'SV' => 'எல் சல்வடோர்',
|
||||
'SM' => 'சான் மரீனோ',
|
||||
'SO' => 'சோமாலியா',
|
||||
'RS' => 'செர்பியா',
|
||||
'SS' => 'தென் சூடான்',
|
||||
'ST' => 'சாவோ தொமே மற்றும் பிரின்சிப்பி',
|
||||
'SR' => 'சுரிநாம்',
|
||||
'SK' => 'சிலவாக்கியா',
|
||||
'SI' => 'சுலோவீனியா',
|
||||
'SE' => 'சுவீடன்',
|
||||
'SZ' => 'சுவாசிலாந்து',
|
||||
'SC' => 'சீசெல்சு',
|
||||
'SY' => 'சிரியா',
|
||||
'TD' => 'சாட்',
|
||||
'TG' => 'டோகோ',
|
||||
'TH' => 'தாய்லாந்து',
|
||||
'TJ' => 'தாஜிக்ஸ்தான்',
|
||||
'TM' => 'துருக்மெனிஸ்தான்',
|
||||
'TL' => 'திமோர்-லெஸ்தே',
|
||||
'TO' => 'டொங்கா',
|
||||
'TT' => 'ட்ரினிடாட்டும் டொபாகோவும்',
|
||||
'TN' => 'துனீசியா',
|
||||
'TR' => 'துருக்கி',
|
||||
'TV' => 'துவாலு',
|
||||
'TZ' => 'தான்ஸானியா',
|
||||
'UG' => 'உகாண்டா',
|
||||
'UA' => 'உக்ரைன்',
|
||||
'UY' => 'உருகுவை',
|
||||
'US' => 'ஐக்கிய அமெரிக்கா',
|
||||
'UZ' => 'உஸ்பெகிஸ்தான்',
|
||||
'VA' => 'வத்திக்கான் நகர்',
|
||||
'VC' => 'செயின்ட் வின்செண்டு மற்றும் கிரெனடீன்கள்',
|
||||
'VE' => 'வெனிசுவேலா',
|
||||
'VN' => 'வியட்நாம்',
|
||||
'VU' => 'வனுவாட்டு',
|
||||
'WS' => 'சமோவா',
|
||||
'YE' => 'யேமன்',
|
||||
'ZA' => 'தென்னாபிரிக்கா',
|
||||
'ZM' => 'சாம்பியா',
|
||||
'ZW' => 'ஸிம்பாப்வே',
|
||||
];
|
||||
@@ -0,0 +1,21 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'settings.inspire' => '"புத்திசாலித்தனம் என்னும் கலை என்பது எதனை புறக்கணிக்க வேண்டும் என அறியும் கலையாகும்."', // This is the line printed in the homepage and console 'view-source'
|
||||
'settings.locale' => 'ta',
|
||||
'settings.direction' => 'ltr',
|
||||
|
||||
// Service - Users
|
||||
'auth.emails.team' => '%s குழு',
|
||||
'auth.emails.confirm.title' => 'கணக்கினை உறுதி செய்தல்',
|
||||
'auth.emails.confirm.body' => 'ta.email.auth.confirm.tpl',
|
||||
'auth.emails.recovery.title' => 'கடவுச்சொல் மீட்டமைப்பு',
|
||||
'auth.emails.recovery.body' => 'ta.email.auth.recovery.tpl',
|
||||
'auth.emails.invitation.title' => '%s குழுவின் அழைப்பு: %s',
|
||||
'auth.emails.invitation.body' => 'ta.email.auth.invitation.tpl',
|
||||
|
||||
'locale.country.unknown' => 'அறியவில்லை',
|
||||
|
||||
'countries' => include 'ta.countries.php',
|
||||
'continents' => include 'ta.continents.php',
|
||||
];
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Hallo {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Om jou epos adres te verifieer, kliek op die web adres hier:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
As jy nie aangevra het om jou epos adres te verifieer nie, kan jy die boodskap ignoreer.
|
||||
<br />
|
||||
<br />
|
||||
Baie dankie,
|
||||
<br />
|
||||
{{project}} span
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Hallo,
|
||||
<br />
|
||||
<br />
|
||||
Hierdie epos is vir jou gestuur omdat <b>{{owner}}</b> jou graag wou nooi om 'n spanlid te word van <b>{{team}}</b> by {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Om by die <b>{{team}}</b> span aan te sluit:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
As jy nie belangstel nie, kan jy die boodskap ignoreer.
|
||||
<br />
|
||||
<br />
|
||||
Baie dankie,
|
||||
<br />
|
||||
{{project}} span
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Hallo {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Volg hierdie web adres om jou wagwoord te verander vir {{project}}.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
As jy nie gevra het om you wagwoord te verander nie, kan jy die boodskap ignoreer.
|
||||
<br />
|
||||
<br />
|
||||
Baie dankie,
|
||||
<br />
|
||||
{{project}} span
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
مرحبا {{name}},
|
||||
<br />
|
||||
<br />
|
||||
اتبع هذا الرابط للتحقق من عنوان بريدك الإلكتروني.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
إذا لم تطلب التحقق من هذا العنوان، فيمكنك تجاهل هذه الرسالة.
|
||||
<br />
|
||||
<br />
|
||||
Thanks,
|
||||
<br />
|
||||
فريق {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
مرحبا،
|
||||
<br />
|
||||
<br />
|
||||
تم إرسال هذه الرسالة إليك لأن <b>{{owner}}</b> أراد دعوتك لتصبح عضوًا في فريق <b>{{team}}</b> في {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
اتبع هذا الرابط للانضمام إلى فريق <b>{{team}}</b>:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
إذا لم تكن مهتمًا، يمكنك تجاهل هذه الرسالة.
|
||||
<br />
|
||||
<br />
|
||||
شكرا،
|
||||
<br />
|
||||
فريق {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
مرحبا {{name}}،
|
||||
<br />
|
||||
<br />
|
||||
اتبع هذا الرابط لإعادة تعيين كلمة مرور {{project}}.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
إذا لم تطلب إعادة تعيين كلمة المرور الخاصة بك، فيمكنك تجاهل هذه الرسالة.
|
||||
<br />
|
||||
<br />
|
||||
شكرا،
|
||||
<br />
|
||||
فريق {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Ahoj {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Kliknutím na tento odkaz ověřte svou e-mailovou adresu.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Pokud jste nepožádali o ověření této adresy, můžete tuto zprávu ignorovat.
|
||||
<br />
|
||||
<br />
|
||||
dík,
|
||||
<br />
|
||||
{{project}} tým
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Ahoj,
|
||||
<br />
|
||||
<br />
|
||||
Tento e-mail vám byl zaslán, protože vás <b>{{owner}}</b> chtěl pozvat, abyste se stali členem týmu v týmu <b>{{team}}</b> v {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Klepnutím na tento odkaz se připojíte k týmu <b>{{team}}</b>:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Pokud vás nezajímá, můžete tuto zprávu ignorovat.
|
||||
<br />
|
||||
<br />
|
||||
Dík,
|
||||
<br />
|
||||
{{project}} tým
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Ahoj {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Pomocí tohoto odkazu obnovte své heslo {{project}}.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Pokud jste nepožádali o resetování hesla, můžete tuto zprávu ignorovat.
|
||||
<br />
|
||||
<br />
|
||||
Dík,
|
||||
<br />
|
||||
{{project}} tým
|
||||
</div>
|
||||
@@ -18,7 +18,7 @@
|
||||
Bitte ignoriere diese Nachricht, wenn du das Verifizieren deiner E-Mail Adresse nicht beantragt hast.
|
||||
<br />
|
||||
<br />
|
||||
Vielen dank,
|
||||
Vielen Dank,
|
||||
<br />
|
||||
{{project}} Team
|
||||
</div>
|
||||
@@ -13,7 +13,7 @@
|
||||
diese E-Mail wurde dir geschickt, weil <b>{{owner}}</b> dich eingeladen hat Teammitglied im Team <b>{{team}}</b> bei {{project}} zu werden.
|
||||
<br />
|
||||
<br />
|
||||
Folge diesem Link um dem <b>{{team}}</b> Team beizutreten:
|
||||
Folge diesem Link um dem Team <b>{{team}}</b> beizutreten:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
@@ -21,7 +21,7 @@
|
||||
Wenn du daran nicht interessiert bist, kannst du diese Nachricht ignorieren.
|
||||
<br />
|
||||
<br />
|
||||
Vielen dank,
|
||||
Vielen Dank,
|
||||
<br />
|
||||
{{project}} Team
|
||||
</div>
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
Bitte ignoriere diese Nachricht, wenn du das Zurücksetzen deines Passworts nicht beantragt hast.
|
||||
<br />
|
||||
<br />
|
||||
Vielen dank,
|
||||
Vielen Dank,
|
||||
<br />
|
||||
{{project}} Team
|
||||
</div>
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
Hola {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Sigue este enlace para verificar tu dirección de correo:
|
||||
Sigue este enlace para verificar tu dirección de correo.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
@@ -21,4 +21,4 @@
|
||||
Gracias,
|
||||
<br />
|
||||
Equipo {{project}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Szia {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Kattints erre a linkre, hogy megerősítsd az e-mail címed.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Ha nem kérelmezted, hogy megerősítsük ezt a címet, ignoráld ezt a levelet.
|
||||
<br />
|
||||
<br />
|
||||
Köszönettel,
|
||||
<br />
|
||||
{{project}} csapat
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Szia,
|
||||
<br />
|
||||
<br />
|
||||
Azért küldtük ezt az e-mailt <b>{{owner}}</b> mert meg szeretnénk hívni a <b>{{team}}</b> csapatba a következő projektre {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Kattints erre a linkre, hogy a <b>{{team}}</b> csapat tagja legyél:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Ha nem vegy ebben érdekelt ignoráld ezt az üzenetet.
|
||||
<br />
|
||||
<br />
|
||||
Köszönettel,
|
||||
<br />
|
||||
{{project}} csapat
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Szia {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Kattints erre a linkre, hogy visszaállítsuk a {{project}} jelszavad.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Ha nem kérvényezted, hogy visszaállítsuk a jelszavad ignoráld ezt a levelet.
|
||||
<br />
|
||||
<br />
|
||||
Köszönettel,
|
||||
<br />
|
||||
{{project}} csapat
|
||||
</div>
|
||||
@@ -21,5 +21,5 @@
|
||||
<br />
|
||||
Grazie,
|
||||
<br />
|
||||
{{project}} squadra
|
||||
Il team di {{project}}
|
||||
</div>
|
||||
@@ -11,10 +11,10 @@
|
||||
Ciao,
|
||||
<br />
|
||||
<br />
|
||||
Questa mail ti è stata inviata perché <b>{{owner}}</b> volevo invitarti a diventare un membro del team al <b>{{team}}</b> squadra a {{project}}.
|
||||
Questa mail ti è stata inviata perchè <b>{{owner}}</b> vuole invitarti a diventare un membro del team <b>{{team}}</b> del progetto {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Segui questo link per unirti a <b>{{team}}</b> squadra:
|
||||
Segui questo link per unirti al team <b>{{team}}</b>:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
@@ -24,5 +24,5 @@
|
||||
<br />
|
||||
Grazie,
|
||||
<br />
|
||||
{{project}} squadra
|
||||
Il team di {{project}}
|
||||
</div>
|
||||
@@ -10,7 +10,7 @@
|
||||
Ciao {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Segui questo link per reimpostare la tua {{project}} password.
|
||||
Segui questo link per reimpostare la tua password per {{project}}.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
@@ -20,5 +20,5 @@
|
||||
<br />
|
||||
Grazie,
|
||||
<br />
|
||||
{{project}} squadra
|
||||
Il team di {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Halo, {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Tindakake tautan iki kanggo verifikasi alamat email sampeyan.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Yen sampeyan ora njaluk verifikasi alamat iki, sampeyan bisa nglalekake pesen iki.
|
||||
<br />
|
||||
<br />
|
||||
Matur suwun,
|
||||
<br />
|
||||
tim {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,28 @@
|
||||
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Halo,
|
||||
<br />
|
||||
<br />
|
||||
Email iki dikirim menyang sampeyan amarga <b>{{owner}}</b> pengin ngajak sampeyan dadi anggota tim ing <b>{{team}}</b> tim ing {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Tindakake link iki kanggo gabung ing <b>{{team}}</b>:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Yen sampeyan ora kasengsem, sampeyan bisa nglirwakake pesen iki.
|
||||
<br />
|
||||
<br />
|
||||
Matur suwun,
|
||||
<br />
|
||||
tim {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Halo {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Tindakake link iki kanggo ngreset {{project}} sandhi.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Yen sampeyan ora njaluk ngreset sandhi, sampeyan bisa nglalekake pesen iki.
|
||||
<br />
|
||||
<br />
|
||||
Matur suwun,
|
||||
<br />
|
||||
tim {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Sveiki, {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Paspauskite nuorodą, kad patvirtinti savo el. paštą.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Jei neprašėte el. pašto patvirtinimo, ignoruokite šį laišką
|
||||
<br />
|
||||
<br />
|
||||
Ačiū,
|
||||
<br />
|
||||
komanda {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Sveiki,
|
||||
<br />
|
||||
<br />
|
||||
Šis laiškas buvo išsiųstas dėl to, kad <b>{{owner}}</b> kviečia tapti komandos <b>{{team}}</b> nariu projekte {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Paspauskite nuorodą, kad prisijungti prie komandos <b>{{team}}</b> :
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Jei Jums neįdomu, ignoruokite šį laišką.
|
||||
<br />
|
||||
<br />
|
||||
Ačiū,
|
||||
<br />
|
||||
komanda {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Sveiki, {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Paspauskite nuorodą, kad pakeisti slaptožodį projektui {{project}}.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Jei neprašėte atkurti slaptažodžio, ignoruokite šį laišką.
|
||||
<br />
|
||||
<br />
|
||||
Ačiū,
|
||||
<br />
|
||||
komanda {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Witaj {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Kliknij ten link, aby zweryfikować swój adres e-mail.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Jeśli nie prosiłeś o weryfikację tego adresu, możesz zignorować tę wiadomość.
|
||||
<br />
|
||||
<br />
|
||||
Dziękujemy,
|
||||
<br />
|
||||
zespół {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Witaj,
|
||||
<br />
|
||||
<br />
|
||||
Ta wiadomość została do Ciebie wysłana, ponieważ <b>{{owner}}</b> chciałby zaprosić Cię do dołączenia do zespołu <b>{{team}}</b> w {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Kliknij ten link, aby dołączyć do zespołu <b>{{team}}</b>:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Jeśli nie jesteś zainteresowany, możesz zignorować tę wiadomość.
|
||||
<br />
|
||||
<br />
|
||||
Dziękujemy,
|
||||
<br />
|
||||
zaspół {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Witaj {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Kliknij ten link, aby zresetować hasło do {{project}}.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Jeśli nie prosiłeś o zresetowanie hasła, możesz zignorować tę wiadomość.
|
||||
<br />
|
||||
<br />
|
||||
Dziękujemy,
|
||||
<br />
|
||||
zaspół {{project}}
|
||||
</div>
|
||||
@@ -10,7 +10,7 @@
|
||||
Olá {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Por favor, confirme o seu email acessando este link abaixo.
|
||||
Por favor, confirme o seu email acessando o link abaixo.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
|
||||
@@ -10,10 +10,10 @@
|
||||
Olá,
|
||||
<br />
|
||||
<br />
|
||||
Este email foi enviado a você porque <br>{{owner}} deseja lhe convidar a se tornar membro da equipe <b>{{team}}<b> no {{project}}.
|
||||
Este email foi enviado a você porque <br>{{owner}} deseja convida-lo para se tornar membro da equipe <b>{{team}}<b> no {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Siga este link para se juntar a equipe <b>{{team}}<b>:
|
||||
Siga o link abaixo para se juntar a equipe <b>{{team}}<b>:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
|
||||
@@ -10,7 +10,7 @@
|
||||
Olá {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Acesse este link para redefinir sua senha do {{project}}.
|
||||
Acesse o link abaixo para redefinir sua senha do {{project}}.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Здравствуйте, {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Перейдите по ссылке, чтобы подтвердить свой адрес электронной почты.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Если вы не запрашивали подтверждение этого адреса, проигнорируйте это сообщение.
|
||||
<br />
|
||||
<br />
|
||||
Спасибо,
|
||||
<br />
|
||||
команда {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Здравствуйте,
|
||||
<br />
|
||||
<br />
|
||||
Это письмо отправлено вам, потому что <b>{{owner}}</b> приглашает стать членом команды <b>{{team}}</b> в проекте {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Перейдите по ссылке, чтобы присоединиться к команде <b>{{team}}</b> :
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Если вы не заинтересованы, проигнорируйте это сообщение.
|
||||
<br />
|
||||
<br />
|
||||
Спасибо,
|
||||
<br />
|
||||
команда {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Здравствуйте, {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Перейдите по ссылке, чтобы сбросить пароль для проекта {{project}}.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Если вы не запрашивали сброс пароля, проигнорируйте это сообщение.
|
||||
<br />
|
||||
<br />
|
||||
Спасибо,
|
||||
<br />
|
||||
команда {{project}}
|
||||
</div>
|
||||
@@ -0,0 +1,25 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
ආයුබෝවන් {{name}},
|
||||
<br />
|
||||
<br />
|
||||
ඔබගේ විද්යුත් තැපැල් ලිපිනය සත්යාපනය කිරීමට මෙම සබැඳිය අනුගමනය කරන්න.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
|
||||
ඔබ මෙම ලිපිනය සත්යාපනය කිරීමට ඉල්ලා නොසිටියේ නම්, ඔබට මෙම පණිවිඩය නොසලකා හැරිය හැක.
|
||||
<br />
|
||||
<br />
|
||||
ස්තූතියි,
|
||||
<br />
|
||||
{{project}} කණ්ඩායම
|
||||
</div>
|
||||
@@ -0,0 +1,31 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
ආයුබෝවන්,
|
||||
<br />
|
||||
<br />
|
||||
|
||||
මෙම තැපෑල ඔබ වෙත එවනු ලැබුවේ <b>{{owner}}</b>ට ඔබව , {{project}} ව්යාපෘතියෙහි <b>{{team}}</b> කණ්ඩායමේ කණ්ඩායම් සාමාජිකයෙකු වීමට ආරාධනා කිරීමට අවශ්ය වූ නිසාය.
|
||||
|
||||
<br />
|
||||
<br />
|
||||
|
||||
<b>{{team}}</b> කණ්ඩායමට එක්වීමට මෙම සබැඳිය අනුගමනය කරන්න:
|
||||
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
ඔබ උනන්දුවක් නොදක්වන්නේ නම්, ඔබට මෙම පණිවිඩය නොසලකා හැරිය හැකිය.
|
||||
<br />
|
||||
<br />
|
||||
ස්තූතියි,
|
||||
<br />
|
||||
{{project}} කණ්ඩායම.
|
||||
</div>
|
||||
@@ -0,0 +1,25 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
ආයුබෝවන් {{name}},
|
||||
<br />
|
||||
<br />
|
||||
ඔබගේ {{project}} ව්යාපෘතියෙහි මුරපදය නැවත සැකසීමට මෙම සබැඳිය අනුගමනය කරන්න
|
||||
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
ඔබගේ මුරපදය නැවත සැකසීමට ඔබ ඉල්ලා නොසිටියේ නම්, ඔබට මෙම පණිවිඩය නොසලකා හැරිය හැක.
|
||||
<br />
|
||||
<br />
|
||||
ස්තූතියි,
|
||||
<br />
|
||||
{{project}} කණ්ඩායම
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Pozdravljeni {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Sledite tej povezavi za potrditev vašega email naslova.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Če niste zahtevali potrditve tega naslova, lahko to sporočilo prezrete.
|
||||
<br />
|
||||
<br />
|
||||
Hvala,
|
||||
<br />
|
||||
{{project}} ekipa
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Pozdravljeni,
|
||||
<br />
|
||||
<br />
|
||||
To sporočilo vam je bilo posredovano, ker vas je <b>{{owner}}</b> povabil/a, da postanete član <b>{{team}}</b> ekipe za {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Sledite tej povezavi, da se pridružite <b>{{team}}</b> ekipi:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Če vas ne zanima, lahko to sporočilo prezrete.
|
||||
<br />
|
||||
<br />
|
||||
Hvala,
|
||||
<br />
|
||||
{{project}} ekipa
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Pozdravljeni {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Za ponastavitev vašega {{project}} gesla sledite tej povezavi.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Če niste zahtevali ponastavitve gesla, lahko to sporočilo prezrete.
|
||||
<br />
|
||||
<br />
|
||||
Hvala,
|
||||
<br />
|
||||
{{project}} ekipa
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Hej {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Vänligen följ länken nedan för att verifiera din epostadress.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Om du inte vill verifiera din epostadress så kan du ignorera detta meddelande.
|
||||
<br />
|
||||
<br />
|
||||
Tack,
|
||||
<br />
|
||||
{{project}}-teamet
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Hej,
|
||||
<br />
|
||||
<br />
|
||||
<b>{{owner}}</b> vill bjuda in dig att bli del av <b>{{team}}</b>-teamet inom {{project}}.
|
||||
<br />
|
||||
<br />
|
||||
Följ denna länk för att bli del av <b>{{team}}</b>-teamet:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Om du inte är intresserad så kan du ignorera detta meddelande.
|
||||
<br />
|
||||
<br />
|
||||
Tack,
|
||||
<br />
|
||||
{{project}}-teamet
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Hej {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Följ denna länk för att ändra ditt {{project}} lösenord.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Om du inte bett om att ändr ditt lösenord så kan du ignorera detta meddelande.
|
||||
<br />
|
||||
<br />
|
||||
Tack,
|
||||
<br />
|
||||
{{project}}-teamet
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
வணக்கம் {{name}},
|
||||
<br />
|
||||
<br />
|
||||
இந்த இணைப்பைப் பின்தொடர்ந்து உங்கள் மின்னஞ்சல் முகவரியை சரிபார்க்கவும்.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
இந்த முகவரியை சரிபார்க்க நீங்கள் கேட்கவில்லை என்றால், இந்த செய்தியை நீங்கள் புறக்கணிக்கலாம்.
|
||||
<br />
|
||||
<br />
|
||||
நன்றி,
|
||||
<br />
|
||||
{{project}} குழு
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
வணக்கம்,
|
||||
<br />
|
||||
<br />
|
||||
இந்த மின்னஞ்சல் உங்களுக்கு அனுப்பப்பட்டது, ஏனெனில் <b>{{owner}}</b> உங்களை <b>{{team}}</b> குழுவின் {{project}} திட்டத்தில் உறுப்பினராக அழைக்க விரும்பினார்கள்.
|
||||
<br />
|
||||
<br />
|
||||
இந்த இணைப்பைப் பின்தொடர்ந்து <b>{{team}}</b> குழுவில் சேரவும்:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
இந்த முகவரியை சரிபார்க்க நீங்கள் கேட்கவில்லை என்றால், இந்த செய்தியை நீங்கள் புறக்கணிக்கலாம்.
|
||||
<br />
|
||||
<br />
|
||||
நன்றி,
|
||||
<br />
|
||||
{{project}} குழு
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
வணக்கம் {{name}},
|
||||
<br />
|
||||
<br />
|
||||
இந்த இணைப்பைப் பின்தொடர்ந்து உங்கள் {{project}} திட்டத்தின் கடவுச்சொல்லை மீட்கவும்.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
உங்கள் கடவுச்சொல்லை மீட்டமைக்க நீங்கள் கேட்கவில்லை என்றால், இந்த செய்தியை நீங்கள் புறக்கணிக்கலாம்.
|
||||
<br />
|
||||
<br />
|
||||
நன்றி,
|
||||
<br />
|
||||
{{project}} குழு
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Xin chào {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Hãy vào liên kết này để xác nhận địa chỉ email của bạn.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Xin hãy bỏ qua email này nếu bạn không yêu cầu xác nhận địa chỉ này.
|
||||
<br />
|
||||
<br />
|
||||
Xin cảm ơn,
|
||||
<br />
|
||||
{{project}} team
|
||||
</div>
|
||||
@@ -0,0 +1,27 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Xin chào,
|
||||
<br />
|
||||
<br />
|
||||
Bạn nhận được email này vì <b>{{owner}}</b> muốn mời bạn tham gia {{project}} cùng với <b>{{team}}</b> team.
|
||||
<br />
|
||||
<br />
|
||||
Hãy theo liên kết này để tham gia vào <b>{{team}}</b> team:
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Nếu bạn không thích tham gia, hãy bỏ qua lời nhắn này.
|
||||
<br />
|
||||
<br />
|
||||
Xin cảm ơn,
|
||||
<br />
|
||||
{{project}} team
|
||||
</div>
|
||||
@@ -0,0 +1,24 @@
|
||||
<style>
|
||||
* {
|
||||
font-family: sans-serif,Arial;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
font-weight: lighter;
|
||||
}
|
||||
</style>
|
||||
|
||||
<div style="direction: {{direction}}">
|
||||
Xin chào {{name}},
|
||||
<br />
|
||||
<br />
|
||||
Hãy theo liên kết này để khôi phục mật khẩu của bạn ở {{project}}.
|
||||
<br />
|
||||
<a href="{{redirect}}">{{redirect}}</a>
|
||||
<br />
|
||||
<br />
|
||||
Hãy bỏ qua lời nhắn này nếu bạn không yêu cầu khôi phục mật khẩu.
|
||||
<br />
|
||||
<br />
|
||||
Xin cảm ơn,
|
||||
<br />
|
||||
{{project}} team
|
||||
</div>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user