├── .editorconfig ├── .github └── workflows │ └── phpcs.yml ├── .gitignore ├── .php_cs ├── .svnignore ├── appsero.json ├── assets ├── css │ ├── gutenberg.css │ ├── notice.css │ └── review-notice.css ├── images │ ├── logo-alt.svg │ ├── logo.svg │ ├── review-notice.svg │ └── site-connect-notice-logo.svg └── js │ ├── admin-notice.js │ ├── admin-review-notice.js │ ├── block │ ├── index.asset.php │ └── index.js │ └── wemail-tinymce-shortcode.js ├── bin ├── deploy.sh └── install-wp-tests.sh ├── build └── index.js ├── composer.json ├── composer.lock ├── i18n └── countries │ ├── countries.php │ └── states │ ├── AD.php │ ├── AE.php │ ├── AF.php │ ├── AG.php │ ├── AL.php │ ├── AM.php │ ├── AO.php │ ├── AQ.php │ ├── AR.php │ ├── AT.php │ ├── AU.php │ ├── AZ.php │ ├── BA.php │ ├── BB.php │ ├── BD.php │ ├── BE.php │ ├── BF.php │ ├── BG.php │ ├── BH.php │ ├── BI.php │ ├── BJ.php │ ├── BN.php │ ├── BO.php │ ├── BQ.php │ ├── BR.php │ ├── BS.php │ ├── BT.php │ ├── BW.php │ ├── BY.php │ ├── BZ.php │ ├── CA.php │ ├── CD.php │ ├── CF.php │ ├── CG.php │ ├── CH.php │ ├── CI.php │ ├── CL.php │ ├── CM.php │ ├── CN.php │ ├── CO.php │ ├── CR.php │ ├── CU.php │ ├── CV.php │ ├── CY.php │ ├── CZ.php │ ├── DE.php │ ├── DJ.php │ ├── DK.php │ ├── DM.php │ ├── DO.php │ ├── DZ.php │ ├── EC.php │ ├── EE.php │ ├── EG.php │ ├── EH.php │ ├── ER.php │ ├── ES.php │ ├── ET.php │ ├── FI.php │ ├── FJ.php │ ├── FM.php │ ├── FR.php │ ├── GA.php │ ├── GB.php │ ├── GD.php │ ├── GE.php │ ├── GH.php │ ├── GM.php │ ├── GN.php │ ├── GQ.php │ ├── GR.php │ ├── GT.php │ ├── GW.php │ ├── GY.php │ ├── HN.php │ ├── HR.php │ ├── HT.php │ ├── HU.php │ ├── ID.php │ ├── IE.php │ ├── IL.php │ ├── IN.php │ ├── IQ.php │ ├── IR.php │ ├── IS.php │ ├── IT.php │ ├── JM.php │ ├── JO.php │ ├── JP.php │ ├── KE.php │ ├── KG.php │ ├── KH.php │ ├── KI.php │ ├── KM.php │ ├── KN.php │ ├── KP.php │ ├── KR.php │ ├── KW.php │ ├── KY.php │ ├── KZ.php │ ├── LA.php │ ├── LB.php │ ├── LI.php │ ├── LK.php │ ├── LR.php │ ├── LS.php │ ├── LT.php │ ├── LU.php │ ├── LV.php │ ├── LY.php │ ├── MA.php │ ├── MD.php │ ├── ME.php │ ├── MG.php │ ├── MH.php │ ├── MK.php │ ├── ML.php │ ├── MM.php │ ├── MN.php │ ├── MR.php │ ├── MT.php │ ├── MU.php │ ├── MV.php │ ├── MW.php │ ├── MX.php │ ├── MY.php │ ├── MZ.php │ ├── NA.php │ ├── NE.php │ ├── NG.php │ ├── NI.php │ ├── NL.php │ ├── NO.php │ ├── NP.php │ ├── NR.php │ ├── NZ.php │ ├── OM.php │ ├── PA.php │ ├── PE.php │ ├── PG.php │ ├── PH.php │ ├── PK.php │ ├── PL.php │ ├── PT.php │ ├── PW.php │ ├── PY.php │ ├── QA.php │ ├── RO.php │ ├── RS.php │ ├── RU.php │ ├── RW.php │ ├── SA.php │ ├── SB.php │ ├── SC.php │ ├── SD.php │ ├── SE.php │ ├── SG.php │ ├── SH.php │ ├── SI.php │ ├── SK.php │ ├── SL.php │ ├── SM.php │ ├── SN.php │ ├── SO.php │ ├── SR.php │ ├── ST.php │ ├── SV.php │ ├── SY.php │ ├── SZ.php │ ├── TD.php │ ├── TF.php │ ├── TG.php │ ├── TH.php │ ├── TJ.php │ ├── TL.php │ ├── TM.php │ ├── TN.php │ ├── TO.php │ ├── TR.php │ ├── TT.php │ ├── TV.php │ ├── TW.php │ ├── TZ.php │ ├── UA.php │ ├── UG.php │ ├── UM.php │ ├── US.php │ ├── UY.php │ ├── UZ.php │ ├── VC.php │ ├── VE.php │ ├── VN.php │ ├── VU.php │ ├── WS.php │ ├── YE.php │ ├── ZA.php │ ├── ZM.php │ └── ZW.php ├── includes ├── Admin │ ├── Admin.php │ ├── Elementor │ │ └── FormAction.php │ ├── FormPreview.php │ ├── GutenbergBlock.php │ ├── Menu.php │ ├── Notice.php │ ├── ReviewNotice.php │ ├── Scripts.php │ └── Shortcode.php ├── Core │ ├── Api │ │ └── Api.php │ ├── Auth │ │ └── Auth.php │ ├── Automation │ │ └── Menu.php │ ├── Billing │ │ └── Menu.php │ ├── Campaign │ │ ├── Campaign.php │ │ ├── Editor.php │ │ ├── Event.php │ │ └── Menu.php │ ├── Customizer │ │ ├── ContentTypes.php │ │ └── Customizer.php │ ├── Ecommerce │ │ ├── Ecommerce.php │ │ ├── Hooks │ │ │ └── Ecommerce.php │ │ ├── Platforms │ │ │ ├── AbstractPlatform.php │ │ │ ├── EDD.php │ │ │ ├── PlatformInterface.php │ │ │ └── WooCommerce.php │ │ └── Settings.php │ ├── Form │ │ ├── Form.php │ │ ├── Integrations │ │ │ ├── AbstractIntegration.php │ │ │ ├── AffiliateWp.php │ │ │ ├── CalderaForms.php │ │ │ ├── ContactForm7.php │ │ │ ├── ElementorForms.php │ │ │ ├── EverestForms.php │ │ │ ├── FluentForms.php │ │ │ ├── FormidableForms.php │ │ │ ├── ForminatorForms.php │ │ │ ├── GravityForms.php │ │ │ ├── HappyForms.php │ │ │ ├── Hooks.php │ │ │ ├── NinjaForms.php │ │ │ ├── PopupBuilder.php │ │ │ ├── PopupMaker.php │ │ │ ├── Rest.php │ │ │ ├── Weforms.php │ │ │ └── Wpforms.php │ │ └── Menu.php │ ├── Help │ │ ├── Menu.php │ │ ├── Services │ │ │ ├── PingService.php │ │ │ ├── PluginsInfo.php │ │ │ ├── SystemService.php │ │ │ └── WordpressInfo.php │ │ └── SystemInfo.php │ ├── Import │ │ ├── Import.php │ │ └── Menu.php │ ├── Integrations │ │ └── Menu.php │ ├── Lists │ │ ├── Lists.php │ │ └── Menu.php │ ├── Mail │ │ ├── Hooks.php │ │ ├── MailerHelper.php │ │ ├── WeMailMailer54.php │ │ └── WeMailMailer55.php │ ├── Overview │ │ ├── Menu.php │ │ └── Overview.php │ ├── Segment │ │ └── Segment.php │ ├── Settings │ │ ├── Menu.php │ │ └── Settings.php │ ├── Shortcode │ │ └── Shortcode.php │ ├── Subscriber │ │ └── Subscriber.php │ ├── SuppressionLists │ │ └── Menu.php │ ├── Sync │ │ ├── AffiliateWp │ │ │ └── AffiliateWp.php │ │ ├── Ecommerce │ │ │ ├── EDD │ │ │ │ ├── Orders.php │ │ │ │ └── Products.php │ │ │ ├── RevenueTrack.php │ │ │ └── WooCommerce │ │ │ │ ├── Orders.php │ │ │ │ └── Products.php │ │ ├── Subscriber │ │ │ ├── Erp │ │ │ │ ├── Erp.php │ │ │ │ └── Hooks.php │ │ │ ├── Subscriber.php │ │ │ └── Wp │ │ │ │ ├── Hooks.php │ │ │ │ └── Wp.php │ │ └── Sync.php │ ├── User │ │ ├── Integrations │ │ │ └── WpUser.php │ │ └── User.php │ └── Users │ │ └── Menu.php ├── FrontEnd │ ├── FormOptIn.php │ ├── FrontEnd.php │ ├── Scripts.php │ ├── Shortcodes.php │ └── Widget.php ├── Hooks.php ├── Install.php ├── Privacy │ ├── Privacy.php │ └── privacy-policy-content.php ├── Rest │ ├── Affiliate │ │ └── Integrations.php │ ├── Auth.php │ ├── Countries.php │ ├── Csv.php │ ├── Customizer.php │ ├── ERP.php │ ├── Ecommerce │ │ └── Ecommerce.php │ ├── Forms.php │ ├── Help │ │ └── Help.php │ ├── MailPoet.php │ ├── Middleware │ │ └── WeMailMiddleware.php │ ├── Pages.php │ ├── Resources │ │ ├── Ecommerce │ │ │ ├── EDD │ │ │ │ ├── CategoryResource.php │ │ │ │ ├── OrderItemResource.php │ │ │ │ ├── OrderResource.php │ │ │ │ ├── OrderResourceV3.php │ │ │ │ └── ProductResource.php │ │ │ └── WooCommerce │ │ │ │ ├── CategoryResource.php │ │ │ │ ├── OrderItemResource.php │ │ │ │ ├── OrderResource.php │ │ │ │ └── ProductResource.php │ │ └── JsonResource.php │ ├── Rest.php │ ├── Site.php │ ├── States.php │ ├── Users.php │ ├── Video.php │ └── WP.php ├── RestController.php ├── Traits │ ├── Ajax.php │ ├── Core.php │ ├── Hooker.php │ ├── Singleton.php │ └── Stringy.php ├── Uninstall.php ├── Upgrade.php ├── Upgrades │ ├── upgrade-1.0.0.php │ └── upgrade-1.10.0.php ├── WeMail.php └── functions.php ├── package-lock.json ├── package.json ├── phpcs.xml ├── readme.txt ├── src ├── blocks │ └── wemail-form │ │ ├── icon.js │ │ └── index.js └── index.js ├── views ├── admin-widget-form.php ├── admin.php ├── customizer.html ├── form.php └── notice.php └── wemail.php /.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | indent_style = space 5 | indent_size = 4 6 | end_of_line = lf 7 | charset = utf-8 8 | trim_trailing_whitespace = true 9 | insert_final_newline = true 10 | 11 | [*.md] 12 | trim_trailing_whitespace = false 13 | 14 | [{.jshintrc,*.json,*.yml}] 15 | indent_style = space 16 | indent_size = 2 17 | 18 | [{*.txt,wp-config-sample.php}] 19 | end_of_line = lf 20 | -------------------------------------------------------------------------------- /.github/workflows/phpcs.yml: -------------------------------------------------------------------------------- 1 | on: pull_request 2 | 3 | name: Inspections 4 | jobs: 5 | runPHPCSInspection: 6 | name: Run PHPCS inspection 7 | runs-on: ubuntu-latest 8 | steps: 9 | - uses: actions/checkout@v2 10 | 11 | - name: Setup PHP 12 | uses: shivammathur/setup-php@v2 13 | with: 14 | php-version: "7.3" 15 | coverage: none 16 | tools: composer, cs2pr 17 | 18 | - name: Get Composer cache directory 19 | id: composer-cache 20 | run: echo "::set-output name=dir::$(composer config cache-files-dir)" 21 | 22 | - name: Setup cache 23 | uses: pat-s/always-upload-cache@v1.1.4 24 | with: 25 | path: ${{ steps.composer-cache.outputs.dir }} 26 | key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} 27 | restore-keys: ${{ runner.os }}-composer- 28 | 29 | - name: Install dependencies 30 | run: composer install --prefer-dist --no-suggest --no-progress 31 | 32 | - id: changes 33 | run: | 34 | URL="https://api.github.com/repos/${{ github.repository }}/pulls/${{ github.event.pull_request.number }}/files" 35 | FILES=$(curl -s -X GET -G $URL | jq -r '.[] | .filename' | xargs) 36 | echo "::set-output name=files::$FILES" 37 | 38 | - name: Detect coding standard violations 39 | run: vendor/bin/phpcs ${{ steps.changes.outputs.files }} -q --report=checkstyle | cs2pr --graceful-warnings 40 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | config.codekit 2 | .idea 3 | .codekit-cache 4 | /vendor/ 5 | node_modules 6 | zip 7 | .DS_Store 8 | nbproject 9 | debug.log 10 | npm-debug.log 11 | .netbeans.xml 12 | .vscode 13 | build/* 14 | !build/index.js 15 | packages 16 | /packages 17 | -------------------------------------------------------------------------------- /.php_cs: -------------------------------------------------------------------------------- 1 | exclude( 'node_modules' ) 7 | ->exclude( 'vendors' ) 8 | ->exclude( 'assets' ) 9 | ->exclude( 'languages' ) 10 | ->exclude( 'src' ) 11 | ->exclude( 'bin' ) 12 | ->in( __DIR__ ) 13 | ; 14 | 15 | $config = PhpCsFixer\Config::create() 16 | ->registerCustomFixers( [ 17 | new WeDevs\Fixer\SpaceInsideParenthesisFixer(), 18 | new WeDevs\Fixer\BlankLineAfterClassOpeningFixer(), 19 | ] ) 20 | ->setRiskyAllowed( true ) 21 | ->setUsingCache( false ) 22 | ->setRules( WeDevs\Fixer\Fixer::rules() ) 23 | ->setFinder( $finder ) 24 | ; 25 | 26 | return $config; 27 | -------------------------------------------------------------------------------- /.svnignore: -------------------------------------------------------------------------------- 1 | .editorconfig 2 | .eslintignore 3 | .eslintrc.json 4 | .gitignore 5 | .svnignore 6 | package-lock.json 7 | package.json 8 | README.md 9 | bin 10 | license.txt 11 | composer.json 12 | composer.lock 13 | -------------------------------------------------------------------------------- /appsero.json: -------------------------------------------------------------------------------- 1 | { 2 | "exclude": [ 3 | ".DS_Store", 4 | ".editorconfig", 5 | ".github", 6 | ".gitignore", 7 | ".php_cs", 8 | ".svnignore", 9 | "appsero.json", 10 | "bin", 11 | "build", 12 | "composer.json", 13 | "composer.lock", 14 | "node_modules", 15 | "package-lock.json", 16 | "package.json", 17 | "phpcs.xml", 18 | "src" 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /assets/css/gutenberg.css: -------------------------------------------------------------------------------- 1 | .wemail-block .title{ 2 | text-align: center; 3 | display: inline-block; 4 | margin: 0 0 13px 10px; 5 | } 6 | .wemail-block .icon{ 7 | display: inline-block; 8 | width: 30px; 9 | } 10 | .wemail-block select { 11 | display: block; 12 | } 13 | .wemail-block .hide { 14 | opacity: 0; 15 | } 16 | 17 | .wemail-block .wemail-block-form-preview { 18 | position: relative; 19 | } 20 | 21 | .wemail-block .components-spinner { 22 | position: absolute; 23 | left: 50%; 24 | top: 50%; 25 | transform: translate(-50%, -50%); 26 | } 27 | .wemail-block .wemail-block-overlay { 28 | position: absolute; 29 | width: 100%; 30 | height: 100%; 31 | z-index: 99; 32 | left: 0; 33 | top: 0; 34 | } 35 | -------------------------------------------------------------------------------- /assets/css/notice.css: -------------------------------------------------------------------------------- 1 | .wemail-connect-notice-flex-container { 2 | align-items: center; 3 | background-color: #5E72E4; 4 | color: #fff; 5 | border-left: none; 6 | border-radius: 3px; 7 | padding: 1.5%; 8 | } 9 | 10 | .wemail-connect-notice-flex-container h3 { 11 | color: #fff; 12 | margin-top: 1%; 13 | margin-bottom: 1%; 14 | } 15 | 16 | .wemail-connect-notice-logo { 17 | flex-grow: 1; 18 | margin-right: 2%; 19 | } 20 | 21 | .wemail-connect-notice-content { 22 | flex-grow: 7; 23 | margin-right: 20%; 24 | text-align: left; 25 | } 26 | 27 | .wemail-connect-notice-connect-button { 28 | flex-grow: 1; 29 | } 30 | 31 | .wemail-connect-notice-connect-button button { 32 | background: #F8F9FE; 33 | border-radius: 5px; 34 | color: #5E72E4; 35 | } 36 | 37 | .wemail-connect-notice-connect-button > .button { 38 | color: #5E72E4; 39 | border-color: #5E72E4; 40 | padding: 1px 30px; 41 | border-radius: 5px; 42 | /* font-weight: bold; */ 43 | } 44 | 45 | .wemail-connect-notice-flex-container > .notice-dismiss:before { 46 | color: #fff; 47 | } 48 | 49 | @media screen and (min-width: 768px) { 50 | .wemail-connect-notice-flex-container { 51 | display: flex; 52 | } 53 | } -------------------------------------------------------------------------------- /assets/images/logo-alt.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 13 | -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /assets/js/admin-notice.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | $(document).ready(function() { 3 | $(document).on("click", '.wemail-connect-notice-flex-container .notice-dismiss', function() { 4 | var url = new URL(location.href); 5 | url.searchParams.append("dismiss_connect_notice", 1); 6 | url.searchParams.append("wemail_dismiss_notice_nonce", wemail_notice_nonce.nonce); 7 | location.href = url; 8 | }); 9 | }); 10 | })(jQuery); 11 | -------------------------------------------------------------------------------- /assets/js/admin-review-notice.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | $(document).ready(function() { 3 | $(document).on("click", '.wemail-review-notice-flex-container .notice-dismiss', function() { 4 | var url = new URL(location.href); 5 | url.searchParams.append("dismiss_wemail_review_notice", 1); 6 | url.searchParams.append('review_nonce', $(this).parent().data('nonce')); 7 | location.href = url; 8 | }); 9 | }); 10 | })(jQuery); 11 | -------------------------------------------------------------------------------- /assets/js/block/index.asset.php: -------------------------------------------------------------------------------- 1 | array('wp-block-editor', 'wp-blocks', 'wp-components', 'wp-element', 'wp-i18n'), 'version' => 'b0f955432ad5c463817b'); 2 | -------------------------------------------------------------------------------- /assets/js/wemail-tinymce-shortcode.js: -------------------------------------------------------------------------------- 1 | ;(function($) { 2 | 'use strict'; 3 | 4 | tinymce.create('tinymce.plugins.wemail_forms_button', { 5 | init : function(editor, url) { 6 | var menuItems = wemail_forms_shortcode_button.forms.map(function (form) { 7 | return { 8 | text: form.name, 9 | onclick: function () { 10 | editor.insertContent('[wemail_form id="' + form.id + '"]'); 11 | } 12 | }; 13 | }); 14 | 15 | if (!menuItems.length) { 16 | menuItems = [ 17 | { 18 | text: 'No form found' 19 | } 20 | ]; 21 | } 22 | 23 | editor.addButton('wemail_forms_button', { 24 | title : wemail_forms_shortcode_button.title, 25 | image: wemail_forms_shortcode_button.icon, 26 | type: 'menubutton', 27 | menu: menuItems 28 | }); 29 | }, 30 | }); 31 | 32 | if (window.hasOwnProperty('wemail_forms_shortcode_button')) { 33 | tinymce.PluginManager.add('wemail_forms_button', tinymce.plugins.wemail_forms_button); 34 | } 35 | 36 | })(jQuery); 37 | -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wemail/wemail", 3 | "description": "Send Beautiful Email Newsletters with WordPress", 4 | "keywords": [ 5 | "wordpress", 6 | "plugin", 7 | "email", 8 | "newsletter" 9 | ], 10 | "homepage": "https://getwemail.io", 11 | "type": "wordpress-plugin", 12 | "license": "GPL-3.0", 13 | "authors": [ 14 | { 15 | "name": "weDevs", 16 | "email": "info@wedevs.com", 17 | "homepage": "https://wedevs.com" 18 | }, 19 | { 20 | "name": "Edi Amin", 21 | "email": "to.ediamin@gmail.com", 22 | "homepage": "http://ediamin.com" 23 | } 24 | ], 25 | "require": { 26 | "php": ">=5.5", 27 | "league/csv": "^7.2", 28 | "appsero/client": "v2.0.4" 29 | }, 30 | "require-dev": { 31 | "wp-coding-standards/wpcs": "dev-main", 32 | "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0", 33 | "tareq1988/wp-php-cs-fixer": "dev-master", 34 | "phpcompatibility/phpcompatibility-wp": "dev-master", 35 | "symfony/var-dumper": "^5.3" 36 | }, 37 | "scripts": { 38 | "phpcs": [ 39 | "phpcs -p -s" 40 | ] 41 | }, 42 | "autoload": { 43 | "psr-4": { 44 | "WeDevs\\WeMail\\": "includes" 45 | } 46 | }, 47 | "config": { 48 | "allow-plugins": { 49 | "dealerdirect/phpcodesniffer-composer-installer": true 50 | } 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /i18n/countries/states/AD.php: -------------------------------------------------------------------------------- 1 | __( "Canillo", "wemail" ), 12 | "03" => __( "Encamp", "wemail" ), 13 | "04" => __( "La Massana", "wemail" ), 14 | "05" => __( "Ordino", "wemail" ), 15 | "06" => __( "Sant Julià de Lòria", "wemail" ), 16 | "07" => __( "Andorra la Vella", "wemail" ), 17 | "08" => __( "Escaldes-Engordany", "wemail" ), 18 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/AE.php: -------------------------------------------------------------------------------- 1 | __( "'Ajmān", "wemail" ), 12 | "AZ" => __( "Abū Z̧aby [Abu Dhabi]", "wemail" ), 13 | "DU" => __( "Dubayy", "wemail" ), 14 | "FU" => __( "Al Fujayrah", "wemail" ), 15 | "RK" => __( "Ra's al Khaymah", "wemail" ), 16 | "SH" => __( "Ash Shariqah [Sharjah]", "wemail" ), 17 | "UQ" => __( "Umm al Qaywayn", "wemail" ), 18 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/AG.php: -------------------------------------------------------------------------------- 1 | __( "Saint George", "wemail" ), 12 | "04" => __( "Saint John’s", "wemail" ), 13 | "05" => __( "Saint Mary", "wemail" ), 14 | "06" => __( "Saint Paul", "wemail" ), 15 | "07" => __( "Saint Peter", "wemail" ), 16 | "08" => __( "Saint Philip", "wemail" ), 17 | "10" => __( "Barbuda", "wemail" ), 18 | "X2~" => __( "Redonda", "wemail" ), 19 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/AM.php: -------------------------------------------------------------------------------- 1 | __( "Aragac?otn", "wemail" ), 12 | "AR" => __( "Ararat", "wemail" ), 13 | "AV" => __( "Armavir", "wemail" ), 14 | "ER" => __( "Erevan", "wemail" ), 15 | "GR" => __( "Gegark'unik'", "wemail" ), 16 | "KT" => __( "Kotayk'", "wemail" ), 17 | "LO" => __( "Lo?y", "wemail" ), 18 | "SH" => __( "Širak", "wemail" ), 19 | "SU" => __( "Syunik'", "wemail" ), 20 | "TV" => __( "Tavuš", "wemail" ), 21 | "VD" => __( "Vayoc Jor", "wemail" ), 22 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/AO.php: -------------------------------------------------------------------------------- 1 | __( "Bengo", "wemail" ), 12 | "BGU" => __( "Benguela", "wemail" ), 13 | "BIE" => __( "Bié", "wemail" ), 14 | "CAB" => __( "Cabinda", "wemail" ), 15 | "CCU" => __( "Cuando-Cubango", "wemail" ), 16 | "CNN" => __( "Cunene", "wemail" ), 17 | "CNO" => __( "Cuanza Norte", "wemail" ), 18 | "CUS" => __( "Cuanza Sul", "wemail" ), 19 | "HUA" => __( "Huambo", "wemail" ), 20 | "HUI" => __( "Huíla", "wemail" ), 21 | "LNO" => __( "Lunda Norte", "wemail" ), 22 | "LSU" => __( "Lunda Sul", "wemail" ), 23 | "LUA" => __( "Luanda", "wemail" ), 24 | "MAL" => __( "Malange", "wemail" ), 25 | "MOX" => __( "Moxico", "wemail" ), 26 | "NAM" => __( "Namibe", "wemail" ), 27 | "UIG" => __( "Uíge", "wemail" ), 28 | "ZAI" => __( "Zaire", "wemail" ), 29 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/AQ.php: -------------------------------------------------------------------------------- 1 | __( "Argentine Antarctica", "wemail" ), 12 | "AAT" => __( "Australian Antarctic Territory", "wemail" ), 13 | "CAT" => __( "Chilean Antarctic Territory", "wemail" ), 14 | "AL" => __( "Adélie Land", "wemail" ), 15 | "RD" => __( "Ross Dependency", "wemail" ), 16 | "QML" => __( "Queen Maud Land", "wemail" ), 17 | "BAT" => __( "British Antarctic Territory", "wemail" ), 18 | "MBL" => __( "Marie Byrd Land", "wemail" ), 19 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/AR.php: -------------------------------------------------------------------------------- 1 | __( "Salta", "wemail" ), 12 | "B" => __( "Buenos Aires", "wemail" ), 13 | "C" => __( "Capital federal", "wemail" ), 14 | "D" => __( "San Luis", "wemail" ), 15 | "E" => __( "Entre Ríos", "wemail" ), 16 | "F" => __( "La Rioja", "wemail" ), 17 | "G" => __( "Santiago del Estero", "wemail" ), 18 | "H" => __( "Chaco", "wemail" ), 19 | "J" => __( "San Juan", "wemail" ), 20 | "K" => __( "Catamarca", "wemail" ), 21 | "L" => __( "La Pampa", "wemail" ), 22 | "M" => __( "Mendoza", "wemail" ), 23 | "N" => __( "Misiones", "wemail" ), 24 | "P" => __( "Formosa", "wemail" ), 25 | "Q" => __( "Neuquén", "wemail" ), 26 | "R" => __( "Río Negro", "wemail" ), 27 | "S" => __( "Santa Fe", "wemail" ), 28 | "T" => __( "Tucumán", "wemail" ), 29 | "U" => __( "Chubut", "wemail" ), 30 | "V" => __( "Tierra del Fuego", "wemail" ), 31 | "W" => __( "Corrientes", "wemail" ), 32 | "X" => __( "Córdoba", "wemail" ), 33 | "Y" => __( "Jujuy", "wemail" ), 34 | "Z" => __( "Santa Cruz", "wemail" ), 35 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/AT.php: -------------------------------------------------------------------------------- 1 | __( "Burgenland", "wemail" ), 12 | "2" => __( "Kärnten", "wemail" ), 13 | "3" => __( "Niederösterreich", "wemail" ), 14 | "4" => __( "Oberösterreich", "wemail" ), 15 | "5" => __( "Salzburg", "wemail" ), 16 | "6" => __( "Steiermark", "wemail" ), 17 | "7" => __( "Tirol", "wemail" ), 18 | "8" => __( "Vorarlberg", "wemail" ), 19 | "9" => __( "Wien", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/AU.php: -------------------------------------------------------------------------------- 1 | __( "Australian Capital Territory", "wemail" ), 12 | "NSW" => __( "New South Wales", "wemail" ), 13 | "NT" => __( "Northern Territory", "wemail" ), 14 | "QLD" => __( "Queensland", "wemail" ), 15 | "SA" => __( "South Australia", "wemail" ), 16 | "TAS" => __( "Tasmania", "wemail" ), 17 | "VIC" => __( "Victoria", "wemail" ), 18 | "WA" => __( "Western Australia", "wemail" ), 19 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BA.php: -------------------------------------------------------------------------------- 1 | __( "Federacija Bosna i Hercegovina", "wemail" ), 12 | "SRP" => __( "Republika Srpska", "wemail" ), 13 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BB.php: -------------------------------------------------------------------------------- 1 | __( "Christ Church", "wemail" ), 12 | "02" => __( "Saint Andrew", "wemail" ), 13 | "03" => __( "Saint George", "wemail" ), 14 | "04" => __( "Saint James", "wemail" ), 15 | "05" => __( "Saint John", "wemail" ), 16 | "06" => __( "Saint Joseph", "wemail" ), 17 | "07" => __( "Saint Lucy", "wemail" ), 18 | "08" => __( "Saint Michael", "wemail" ), 19 | "09" => __( "Saint Peter", "wemail" ), 20 | "10" => __( "Saint Philip", "wemail" ), 21 | "11" => __( "Saint Thomas", "wemail" ), 22 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BE.php: -------------------------------------------------------------------------------- 1 | __( "Brussels", "wemail" ), 12 | "VAN" => __( "Antwerpen (nl)", "wemail" ), 13 | "VBR" => __( "Vlaams Brabant (nl)", "wemail" ), 14 | "VLI" => __( "Limburg (nl)", "wemail" ), 15 | "VOV" => __( "Oost-Vlaanderen (nl)", "wemail" ), 16 | "VWV" => __( "West-Vlaanderen (nl)", "wemail" ), 17 | "WBR" => __( "Brabant Wallon (fr)", "wemail" ), 18 | "WHT" => __( "Hainaut (fr)", "wemail" ), 19 | "WLG" => __( "Liège (fr)", "wemail" ), 20 | "WLX" => __( "Luxembourg (fr)", "wemail" ), 21 | "WNA" => __( "Namur (fr)", "wemail" ), 22 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BG.php: -------------------------------------------------------------------------------- 1 | __( "Blagoevgrad", "wemail" ), 12 | "02" => __( "Burgas", "wemail" ), 13 | "03" => __( "Varna", "wemail" ), 14 | "04" => __( "Veliko Tarnovo", "wemail" ), 15 | "05" => __( "Vidin", "wemail" ), 16 | "06" => __( "Vratsa", "wemail" ), 17 | "07" => __( "Gabrovo", "wemail" ), 18 | "08" => __( "Dobrich", "wemail" ), 19 | "09" => __( "Kardzhali", "wemail" ), 20 | "10" => __( "Kjustendil", "wemail" ), 21 | "11" => __( "Lovech", "wemail" ), 22 | "12" => __( "Montana", "wemail" ), 23 | "13" => __( "Pazardzhik", "wemail" ), 24 | "14" => __( "Pernik", "wemail" ), 25 | "15" => __( "Pleven", "wemail" ), 26 | "16" => __( "Plovdiv", "wemail" ), 27 | "17" => __( "Razgrad", "wemail" ), 28 | "18" => __( "Ruse", "wemail" ), 29 | "19" => __( "Silistra", "wemail" ), 30 | "20" => __( "Sliven", "wemail" ), 31 | "21" => __( "Smolyan", "wemail" ), 32 | "22" => __( "Sofia-Grad", "wemail" ), 33 | "23" => __( "Sofia", "wemail" ), 34 | "24" => __( "Stara Zagora", "wemail" ), 35 | "25" => __( "Targovishte", "wemail" ), 36 | "26" => __( "Haskovo", "wemail" ), 37 | "27" => __( "Šumen", "wemail" ), 38 | "28" => __( "Yambol", "wemail" ), 39 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BH.php: -------------------------------------------------------------------------------- 1 | __( "Al Manamah (Al ‘Asimah)", "wemail" ), 12 | "14" => __( "Al Janubiyah", "wemail" ), 13 | "15" => __( "Al Muharraq", "wemail" ), 14 | "16" => __( "Al Wustá", "wemail" ), 15 | "17" => __( "Ash Shamaliyah", "wemail" ), 16 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BI.php: -------------------------------------------------------------------------------- 1 | __( "Bubanza", "wemail" ), 12 | "BJ" => __( "Bujumbura", "wemail" ), 13 | "BR" => __( "Bururi", "wemail" ), 14 | "CA" => __( "Cankuzo", "wemail" ), 15 | "CI" => __( "Cibitoke", "wemail" ), 16 | "GI" => __( "Gitega", "wemail" ), 17 | "KI" => __( "Kirundo", "wemail" ), 18 | "KR" => __( "Karuzi", "wemail" ), 19 | "KY" => __( "Kayanza", "wemail" ), 20 | "MA" => __( "Makamba", "wemail" ), 21 | "MU" => __( "Muramvya", "wemail" ), 22 | "MW" => __( "Mwaro", "wemail" ), 23 | "MY" => __( "Muyinga", "wemail" ), 24 | "NG" => __( "Ngozi", "wemail" ), 25 | "RT" => __( "Rutana", "wemail" ), 26 | "RY" => __( "Ruyigi", "wemail" ), 27 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BJ.php: -------------------------------------------------------------------------------- 1 | __( "Atakora", "wemail" ), 12 | "AL" => __( "Alibori", "wemail" ), 13 | "AQ" => __( "Atlantique", "wemail" ), 14 | "BO" => __( "Borgou", "wemail" ), 15 | "CO" => __( "Collines", "wemail" ), 16 | "DO" => __( "Donga", "wemail" ), 17 | "KO" => __( "Kouffo", "wemail" ), 18 | "LI" => __( "Littoral", "wemail" ), 19 | "MO" => __( "Mono", "wemail" ), 20 | "OU" => __( "Ouémé", "wemail" ), 21 | "PL" => __( "Plateau", "wemail" ), 22 | "ZO" => __( "Zou", "wemail" ), 23 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BN.php: -------------------------------------------------------------------------------- 1 | __( "Belait", "wemail" ), 12 | "BM" => __( "Brunei-Muara", "wemail" ), 13 | "TE" => __( "Temburong", "wemail" ), 14 | "TU" => __( "Tutong", "wemail" ), 15 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BO.php: -------------------------------------------------------------------------------- 1 | __( "El Beni", "wemail" ), 12 | "C" => __( "Cochabamba", "wemail" ), 13 | "H" => __( "Chuquisaca", "wemail" ), 14 | "L" => __( "La Paz", "wemail" ), 15 | "N" => __( "Pando", "wemail" ), 16 | "O" => __( "Oruro", "wemail" ), 17 | "P" => __( "Potosí", "wemail" ), 18 | "S" => __( "Santa Cruz", "wemail" ), 19 | "T" => __( "Tarija", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BQ.php: -------------------------------------------------------------------------------- 1 | __( "Bonaire", "wemail" ), 12 | "SA" => __( "Saba", "wemail" ), 13 | "SE" => __( "Sint Eustatius", "wemail" ), 14 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BR.php: -------------------------------------------------------------------------------- 1 | __( "Acre", "wemail" ), 12 | "AL" => __( "Alagoas", "wemail" ), 13 | "AM" => __( "Amazonas", "wemail" ), 14 | "AP" => __( "Amapá", "wemail" ), 15 | "BA" => __( "Bahia", "wemail" ), 16 | "CE" => __( "Ceará", "wemail" ), 17 | "DF" => __( "Distrito Federal", "wemail" ), 18 | "ES" => __( "Espírito Santo", "wemail" ), 19 | "GO" => __( "Goiás", "wemail" ), 20 | "MA" => __( "Maranhão", "wemail" ), 21 | "MG" => __( "Minas Gerais", "wemail" ), 22 | "MS" => __( "Mato Grosso do Sul", "wemail" ), 23 | "MT" => __( "Mato Grosso", "wemail" ), 24 | "PA" => __( "Pará", "wemail" ), 25 | "PB" => __( "Paraíba", "wemail" ), 26 | "PE" => __( "Pernambuco", "wemail" ), 27 | "PI" => __( "Piauí", "wemail" ), 28 | "PR" => __( "Paraná", "wemail" ), 29 | "RJ" => __( "Rio de Janeiro", "wemail" ), 30 | "RN" => __( "Rio Grande do Norte", "wemail" ), 31 | "RO" => __( "Rondônia", "wemail" ), 32 | "RR" => __( "Roraima", "wemail" ), 33 | "RS" => __( "Rio Grande do Sul", "wemail" ), 34 | "SC" => __( "Santa Catarina", "wemail" ), 35 | "SE" => __( "Sergipe", "wemail" ), 36 | "SP" => __( "São Paulo", "wemail" ), 37 | "TO" => __( "Tocantins", "wemail" ), 38 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BS.php: -------------------------------------------------------------------------------- 1 | __( "Acklins and Crooked Islands", "wemail" ), 12 | "BI" => __( "Bimini", "wemail" ), 13 | "CI" => __( "Cat Island", "wemail" ), 14 | "EX" => __( "Exuma", "wemail" ), 15 | "FC" => __( "Fresh Creek", "wemail" ), 16 | "FP" => __( "Freeport", "wemail" ), 17 | "GH" => __( "Governor's Harbour", "wemail" ), 18 | "GT" => __( "Green Turtle Cay", "wemail" ), 19 | "HI" => __( "Harbour Island", "wemail" ), 20 | "HR" => __( "High Rock", "wemail" ), 21 | "IN" => __( "Inagua", "wemail" ), 22 | "KB" => __( "Kemps Bay", "wemail" ), 23 | "LI" => __( "Long Island", "wemail" ), 24 | "MG" => __( "Mayaguana", "wemail" ), 25 | "MH" => __( "Marsh Harbour", "wemail" ), 26 | "NB" => __( "Nicholls Town and Berry Islands", "wemail" ), 27 | "NP" => __( "New Providence", "wemail" ), 28 | "RI" => __( "Ragged Island", "wemail" ), 29 | "RS" => __( "Rock Sound", "wemail" ), 30 | "SP" => __( "Sandy Point", "wemail" ), 31 | "SR" => __( "San Salvador and Rum Cay", "wemail" ), 32 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BT.php: -------------------------------------------------------------------------------- 1 | __( "Paro", "wemail" ), 12 | "12" => __( "Chhukha", "wemail" ), 13 | "13" => __( "Ha", "wemail" ), 14 | "14" => __( "Samtse", "wemail" ), 15 | "15" => __( "Thimphu", "wemail" ), 16 | "21" => __( "Tsirang", "wemail" ), 17 | "22" => __( "Dagana", "wemail" ), 18 | "23" => __( "Punakha", "wemail" ), 19 | "24" => __( "Wangdue Phodrang", "wemail" ), 20 | "31" => __( "Sarpang", "wemail" ), 21 | "32" => __( "Trongsa", "wemail" ), 22 | "33" => __( "Bumthang", "wemail" ), 23 | "34" => __( "Zhemgang", "wemail" ), 24 | "41" => __( "Trashigang", "wemail" ), 25 | "42" => __( "Monggar", "wemail" ), 26 | "43" => __( "Pemagatshel", "wemail" ), 27 | "44" => __( "Lhuentse", "wemail" ), 28 | "45" => __( "Samdrup Jongkha", "wemail" ), 29 | "GA" => __( "Gasa", "wemail" ), 30 | "TY" => __( "Trashi Yangtse", "wemail" ), 31 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BW.php: -------------------------------------------------------------------------------- 1 | __( "Central", "wemail" ), 12 | "GH" => __( "Ghanzi", "wemail" ), 13 | "KG" => __( "Kgalagadi", "wemail" ), 14 | "KL" => __( "Kgatleng", "wemail" ), 15 | "KW" => __( "Kweneng", "wemail" ), 16 | "NE" => __( "North-East", "wemail" ), 17 | "NW" => __( "North-West", "wemail" ), 18 | "SE" => __( "South-East", "wemail" ), 19 | "SO" => __( "Southern", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BY.php: -------------------------------------------------------------------------------- 1 | __( "Brestskaya voblasts' (be) Brestskaya oblast' (ru)", "wemail" ), 12 | "HO" => __( "Homyel'skaya voblasts' (be) Gomel'skaya oblast' (ru)", "wemail" ), 13 | "HR" => __( "Hrodzenskaya voblasts' (be) Grodnenskaya oblast' (ru)", "wemail" ), 14 | "MA" => __( "Mahilyowskaya voblasts' (be) Mogilevskaya oblast' (ru)", "wemail" ), 15 | "MI" => __( "Minskaya voblasts' (be) Minskaya oblast' (ru)", "wemail" ), 16 | "VI" => __( "Vitsyebskaya voblasts' (be) Vitebskaya oblast' (ru)", "wemail" ), 17 | "X1~" => __( "Horad Minsk", "wemail" ), 18 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/BZ.php: -------------------------------------------------------------------------------- 1 | __( "Belize", "wemail" ), 12 | "CY" => __( "Cayo", "wemail" ), 13 | "CZL" => __( "Corozal", "wemail" ), 14 | "OW" => __( "Orange Walk", "wemail" ), 15 | "SC" => __( "Stann Creek", "wemail" ), 16 | "TOL" => __( "Toledo", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CA.php: -------------------------------------------------------------------------------- 1 | __( "Alberta", "wemail" ), 12 | "BC" => __( "British Columbia", "wemail" ), 13 | "MB" => __( "Manitoba", "wemail" ), 14 | "NB" => __( "New Brunswick", "wemail" ), 15 | "NL" => __( "Newfoundland and Labrador", "wemail" ), 16 | "NS" => __( "Nova Scotia", "wemail" ), 17 | "NT" => __( "Northwest Territories", "wemail" ), 18 | "NU" => __( "Nunavut", "wemail" ), 19 | "ON" => __( "Ontario", "wemail" ), 20 | "PE" => __( "Prince Edward Island", "wemail" ), 21 | "QC" => __( "Quebec", "wemail" ), 22 | "SK" => __( "Saskatchewan", "wemail" ), 23 | "YT" => __( "Yukon", "wemail" ), 24 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CD.php: -------------------------------------------------------------------------------- 1 | __( "Bas-Congo", "wemail" ), 12 | "BN" => __( "Bandundu", "wemail" ), 13 | "EQ" => __( "Équateur", "wemail" ), 14 | "KA" => __( "Katanga", "wemail" ), 15 | "KE" => __( "Kasai-Oriental", "wemail" ), 16 | "KN" => __( "Kinshasa", "wemail" ), 17 | "KW" => __( "Kasai-Occidental", "wemail" ), 18 | "MA" => __( "Maniema", "wemail" ), 19 | "NK" => __( "Nord-Kivu", "wemail" ), 20 | "OR" => __( "Orientale", "wemail" ), 21 | "SK" => __( "Sud-Kivu", "wemail" ), 22 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CF.php: -------------------------------------------------------------------------------- 1 | __( "Ouham", "wemail" ), 12 | "BB" => __( "Bamingui-Bangoran", "wemail" ), 13 | "BGF" => __( "Bangui", "wemail" ), 14 | "BK" => __( "Basse-Kotto", "wemail" ), 15 | "HK" => __( "Haute-Kotto", "wemail" ), 16 | "HM" => __( "Haut-Mbomou", "wemail" ), 17 | "HS" => __( "Mambéré-Kadéï", "wemail" ), 18 | "KB" => __( "Nana-Grébizi", "wemail" ), 19 | "KG" => __( "Kémo", "wemail" ), 20 | "LB" => __( "Lobaye", "wemail" ), 21 | "MB" => __( "Mbomou", "wemail" ), 22 | "MP" => __( "Ombella-Mpoko", "wemail" ), 23 | "NM" => __( "Nana-Mambéré", "wemail" ), 24 | "OP" => __( "Ouham-Pendé", "wemail" ), 25 | "SE" => __( "Sangha-Mbaéré", "wemail" ), 26 | "UK" => __( "Ouaka", "wemail" ), 27 | "VK" => __( "Vakaga", "wemail" ), 28 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CG.php: -------------------------------------------------------------------------------- 1 | __( "Bouenza", "wemail" ), 12 | "12" => __( "Pool", "wemail" ), 13 | "13" => __( "Sangha", "wemail" ), 14 | "14" => __( "Plateaux", "wemail" ), 15 | "15" => __( "Cuvette-Ouest", "wemail" ), 16 | "2" => __( "Lékoumou", "wemail" ), 17 | "5" => __( "Kouilou", "wemail" ), 18 | "7" => __( "Likouala", "wemail" ), 19 | "8" => __( "Cuvette", "wemail" ), 20 | "9" => __( "Niari", "wemail" ), 21 | "BZV" => __( "Brazzaville", "wemail" ), 22 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CH.php: -------------------------------------------------------------------------------- 1 | __( "Aargau (de)", "wemail" ), 12 | "AI" => __( "Appenzell Innerrhoden (de)", "wemail" ), 13 | "AR" => __( "Appenzell Ausserrhoden (de)", "wemail" ), 14 | "BE" => __( "Bern (de)", "wemail" ), 15 | "BL" => __( "Basel-Landschaft (de)", "wemail" ), 16 | "BS" => __( "Basel-Stadt (de)", "wemail" ), 17 | "FR" => __( "Fribourg (fr)", "wemail" ), 18 | "GE" => __( "Genève (fr)", "wemail" ), 19 | "GL" => __( "Glarus (de)", "wemail" ), 20 | "GR" => __( "Graubünden (de)", "wemail" ), 21 | "JU" => __( "Jura (fr)", "wemail" ), 22 | "LU" => __( "Luzern (de)", "wemail" ), 23 | "NE" => __( "Neuchâtel (fr)", "wemail" ), 24 | "NW" => __( "Nidwalden (de)", "wemail" ), 25 | "OW" => __( "Obwalden (de)", "wemail" ), 26 | "SG" => __( "Sankt Gallen (de)", "wemail" ), 27 | "SH" => __( "Schaffhausen (de)", "wemail" ), 28 | "SO" => __( "Solothurn (de)", "wemail" ), 29 | "SZ" => __( "Schwyz (de)", "wemail" ), 30 | "TG" => __( "Thurgau (de)", "wemail" ), 31 | "TI" => __( "Ticino (it)", "wemail" ), 32 | "UR" => __( "Uri (de)", "wemail" ), 33 | "VD" => __( "Vaud (fr)", "wemail" ), 34 | "VS" => __( "Valais (fr)", "wemail" ), 35 | "ZG" => __( "Zug (de)", "wemail" ), 36 | "ZH" => __( "Zürich (de)", "wemail" ), 37 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CI.php: -------------------------------------------------------------------------------- 1 | __( "Lagunes (Région des)", "wemail" ), 12 | "02" => __( "Haut-Sassandra (Région du)", "wemail" ), 13 | "03" => __( "Savanes (Région des)", "wemail" ), 14 | "04" => __( "Vallée du Bandama (Région de la)", "wemail" ), 15 | "05" => __( "Moyen-Comoé (Région du)", "wemail" ), 16 | "06" => __( "18 Montagnes (Région des)", "wemail" ), 17 | "07" => __( "Lacs (Région des)", "wemail" ), 18 | "08" => __( "Zanzan (Région du)", "wemail" ), 19 | "09" => __( "Bas-Sassandra (Région du)", "wemail" ), 20 | "10" => __( "Denguélé (Région du)", "wemail" ), 21 | "11" => __( "Nzi-Comoé (Région)", "wemail" ), 22 | "12" => __( "Marahoué (Région de la)", "wemail" ), 23 | "13" => __( "Sud-Comoé (Région du)", "wemail" ), 24 | "14" => __( "Worodougou (Région du)", "wemail" ), 25 | "15" => __( "Sud-Bandama (Région du)", "wemail" ), 26 | "16" => __( "Agnébi (Région de l')", "wemail" ), 27 | "17" => __( "Bafing (Région du)", "wemail" ), 28 | "18" => __( "Fromager (Région du)", "wemail" ), 29 | "19" => __( "Moyen-Cavally (Région du)", "wemail" ), 30 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CL.php: -------------------------------------------------------------------------------- 1 | __( "Aisén del General Carlos Ibáñez del Campo", "wemail" ), 12 | "AN" => __( "Antofagasta", "wemail" ), 13 | "AR" => __( "Araucanía", "wemail" ), 14 | "AP" => __( "Arica y Parinacota", "wemail" ), 15 | "AT" => __( "Atacama", "wemail" ), 16 | "BI" => __( "Bío-Bío", "wemail" ), 17 | "CO" => __( "Coquimbo", "wemail" ), 18 | "LI" => __( "Libertador General Bernardo O'Higgins", "wemail" ), 19 | "LL" => __( "Los Lagos", "wemail" ), 20 | "LR" => __( "Los Ríos", "wemail" ), 21 | "MA" => __( "Magallanes", "wemail" ), 22 | "ML" => __( "Maule", "wemail" ), 23 | "RM" => __( "Región Metropolitana de Santiago", "wemail" ), 24 | "TA" => __( "Tarapacá", "wemail" ), 25 | "VS" => __( "Valparaíso", "wemail" ), 26 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CM.php: -------------------------------------------------------------------------------- 1 | __( "Adamaoua", "wemail" ), 12 | "CE" => __( "Centre", "wemail" ), 13 | "EN" => __( "Far North", "wemail" ), 14 | "ES" => __( "East", "wemail" ), 15 | "LT" => __( "Littoral", "wemail" ), 16 | "NO" => __( "North", "wemail" ), 17 | "NW" => __( "North-West", "wemail" ), 18 | "OU" => __( "West", "wemail" ), 19 | "SU" => __( "South", "wemail" ), 20 | "SW" => __( "South-West", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CN.php: -------------------------------------------------------------------------------- 1 | __( "Beijing", "wemail" ), 12 | "12" => __( "Tianjin", "wemail" ), 13 | "13" => __( "Hebei", "wemail" ), 14 | "14" => __( "Shanxi", "wemail" ), 15 | "15" => __( "Nei Mongol (mn)", "wemail" ), 16 | "21" => __( "Liaoning", "wemail" ), 17 | "22" => __( "Jilin", "wemail" ), 18 | "23" => __( "Heilongjiang", "wemail" ), 19 | "31" => __( "Shanghai", "wemail" ), 20 | "32" => __( "Jiangsu", "wemail" ), 21 | "33" => __( "Zhejiang", "wemail" ), 22 | "34" => __( "Anhui", "wemail" ), 23 | "35" => __( "Fujian", "wemail" ), 24 | "36" => __( "Jiangxi", "wemail" ), 25 | "37" => __( "Shandong", "wemail" ), 26 | "41" => __( "Henan", "wemail" ), 27 | "42" => __( "Hubei", "wemail" ), 28 | "43" => __( "Hunan", "wemail" ), 29 | "44" => __( "Guangdong", "wemail" ), 30 | "45" => __( "Guangxi", "wemail" ), 31 | "46" => __( "Hainan", "wemail" ), 32 | "50" => __( "Chongqing", "wemail" ), 33 | "51" => __( "Sichuan", "wemail" ), 34 | "52" => __( "Guizhou", "wemail" ), 35 | "53" => __( "Yunnan", "wemail" ), 36 | "54" => __( "Xizang", "wemail" ), 37 | "61" => __( "Shaanxi", "wemail" ), 38 | "62" => __( "Gansu", "wemail" ), 39 | "63" => __( "Qinghai", "wemail" ), 40 | "64" => __( "Ningxia", "wemail" ), 41 | "65" => __( "Xinjiang", "wemail" ), 42 | "71" => __( "Taiwan *", "wemail" ), 43 | "91" => __( "Xianggang (zh) **", "wemail" ), 44 | "92" => __( "Aomen (zh) ***", "wemail" ), 45 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CR.php: -------------------------------------------------------------------------------- 1 | __( "Alajuela", "wemail" ), 12 | "C" => __( "Cartago", "wemail" ), 13 | "G" => __( "Guanacaste", "wemail" ), 14 | "H" => __( "Heredia", "wemail" ), 15 | "L" => __( "Limón", "wemail" ), 16 | "P" => __( "Puntarenas", "wemail" ), 17 | "SJ" => __( "San José", "wemail" ), 18 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CU.php: -------------------------------------------------------------------------------- 1 | __( "Pinar del Río", "wemail" ), 12 | "02" => __( "Antigua provincia de La Habana", "wemail" ), 13 | "03" => __( "La Habana", "wemail" ), 14 | "04" => __( "Matanzas", "wemail" ), 15 | "05" => __( "Villa Clara", "wemail" ), 16 | "06" => __( "Cienfuegos", "wemail" ), 17 | "07" => __( "Sancti Spíritus", "wemail" ), 18 | "08" => __( "Ciego de Ávila", "wemail" ), 19 | "09" => __( "Camagüey", "wemail" ), 20 | "10" => __( "Las Tunas", "wemail" ), 21 | "11" => __( "Holguín", "wemail" ), 22 | "12" => __( "Granma", "wemail" ), 23 | "13" => __( "Santiago de Cuba", "wemail" ), 24 | "14" => __( "Guantánamo", "wemail" ), 25 | "15" => __( "Artemisa", "wemail" ), 26 | "16" => __( "Mayabeque", "wemail" ), 27 | "99" => __( "Isla de la Juventud", "wemail" ), 28 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CV.php: -------------------------------------------------------------------------------- 1 | __( "Brava", "wemail" ), 12 | "BV" => __( "Boa Vista", "wemail" ), 13 | "CA" => __( "Santa Catarina", "wemail" ), 14 | "CR" => __( "Santa Cruz", "wemail" ), 15 | "CS" => __( "Calheta de São Miguel", "wemail" ), 16 | "MA" => __( "Maio", "wemail" ), 17 | "MO" => __( "Mosteiros", "wemail" ), 18 | "PA" => __( "Paúl", "wemail" ), 19 | "PN" => __( "Porto Novo", "wemail" ), 20 | "PR" => __( "Praia", "wemail" ), 21 | "RG" => __( "Ribeira Grande", "wemail" ), 22 | "SD" => __( "São Domingos", "wemail" ), 23 | "SF" => __( "São Filipe", "wemail" ), 24 | "SL" => __( "Sal", "wemail" ), 25 | "SN" => __( "São Nicolau", "wemail" ), 26 | "SV" => __( "São Vicente", "wemail" ), 27 | "TA" => __( "Tarrafal", "wemail" ), 28 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CY.php: -------------------------------------------------------------------------------- 1 | __( "Lefkosia", "wemail" ), 12 | "02" => __( "Lemesos", "wemail" ), 13 | "03" => __( "Larnaka", "wemail" ), 14 | "04" => __( "Ammochostos", "wemail" ), 15 | "05" => __( "Pafos", "wemail" ), 16 | "06" => __( "Keryneia", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/CZ.php: -------------------------------------------------------------------------------- 1 | __( "Jihočeský kraj", "wemail" ), 12 | "JM" => __( "Jihomoravský kraj ", "wemail" ), 13 | "KA" => __( "Karlovarský kraj", "wemail" ), 14 | "KR" => __( "Královéhradecký kraj", "wemail" ), 15 | "LI" => __( "Liberecký kraj", "wemail" ), 16 | "MO" => __( "Moravskoslezský kraj", "wemail" ), 17 | "OL" => __( "Olomoucký kraj", "wemail" ), 18 | "PA" => __( "Pardubický kraj", "wemail" ), 19 | "PL" => __( "Plzeňský kraj", "wemail" ), 20 | "PR" => __( "Praha, hlavní město", "wemail" ), 21 | "ST" => __( "Středočeský kraj", "wemail" ), 22 | "US" => __( "Ústecký kraj", "wemail" ), 23 | "VY" => __( "Vysočina", "wemail" ), 24 | "ZL" => __( "Zlínský kraj", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/DE.php: -------------------------------------------------------------------------------- 1 | __( "Brandenburg", "wemail" ), 12 | "BE" => __( "Berlin", "wemail" ), 13 | "BW" => __( "Baden-Württemberg", "wemail" ), 14 | "BY" => __( "Bayern", "wemail" ), 15 | "HB" => __( "Bremen", "wemail" ), 16 | "HE" => __( "Hessen", "wemail" ), 17 | "HH" => __( "Hamburg", "wemail" ), 18 | "MV" => __( "Mecklenburg-Vorpommern", "wemail" ), 19 | "NI" => __( "Niedersachsen", "wemail" ), 20 | "NW" => __( "Nordrhein-Westfalen", "wemail" ), 21 | "RP" => __( "Rheinland-Pfalz", "wemail" ), 22 | "SH" => __( "Schleswig-Holstein", "wemail" ), 23 | "SL" => __( "Saarland", "wemail" ), 24 | "SN" => __( "Sachsen", "wemail" ), 25 | "ST" => __( "Sachsen-Anhalt", "wemail" ), 26 | "TH" => __( "Thüringen", "wemail" ), 27 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/DJ.php: -------------------------------------------------------------------------------- 1 | __( "Arta", "wemail" ), 12 | "AS" => __( "Ali Sabieh", "wemail" ), 13 | "DI" => __( "Dikhil", "wemail" ), 14 | "DJ" => __( "Djibouti", "wemail" ), 15 | "OB" => __( "Obock", "wemail" ), 16 | "TA" => __( "Tadjourah", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/DK.php: -------------------------------------------------------------------------------- 1 | __( "København", "wemail" ), 12 | "020" => __( "Frederiksborg", "wemail" ), 13 | "025" => __( "Roskilde", "wemail" ), 14 | "030" => __( "Vestsjælland", "wemail" ), 15 | "035" => __( "Storstrøm", "wemail" ), 16 | "040" => __( "Bornholm", "wemail" ), 17 | "042" => __( "Fyn", "wemail" ), 18 | "050" => __( "Sønderjylland", "wemail" ), 19 | "055" => __( "Ribe", "wemail" ), 20 | "060" => __( "Vejle", "wemail" ), 21 | "065" => __( "Ringkøbing", "wemail" ), 22 | "070" => __( "Århus", "wemail" ), 23 | "076" => __( "Viborg", "wemail" ), 24 | "080" => __( "Nordjylland", "wemail" ), 25 | "101" => __( "København City", "wemail" ), 26 | "147" => __( "Frederiksberg City", "wemail" ), 27 | "81" => __( "North Jutland", "wemail" ), 28 | "82" => __( "Central Jutland", "wemail" ), 29 | "83" => __( "South Denmark", "wemail" ), 30 | "84" => __( "Capital", "wemail" ), 31 | "85" => __( "Zeeland", "wemail" ), 32 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/DM.php: -------------------------------------------------------------------------------- 1 | __( "Saint Andrew", "wemail" ), 12 | "03" => __( "Saint David", "wemail" ), 13 | "04" => __( "Saint George", "wemail" ), 14 | "05" => __( "Saint John", "wemail" ), 15 | "06" => __( "Saint Joseph", "wemail" ), 16 | "07" => __( "Saint Luke", "wemail" ), 17 | "08" => __( "Saint Mark", "wemail" ), 18 | "09" => __( "Saint Patrick", "wemail" ), 19 | "10" => __( "Saint Paul", "wemail" ), 20 | "11" => __( "Saint Peter", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/DO.php: -------------------------------------------------------------------------------- 1 | __( "Distrito Nacional (Santo Domingo)", "wemail" ), 12 | "02" => __( "Azua", "wemail" ), 13 | "03" => __( "Bahoruco", "wemail" ), 14 | "04" => __( "Barahona", "wemail" ), 15 | "05" => __( "Dajabón", "wemail" ), 16 | "06" => __( "Duarte", "wemail" ), 17 | "07" => __( "La Estrelleta [Elías Piña]", "wemail" ), 18 | "08" => __( "El Seybo [El Seibo]", "wemail" ), 19 | "09" => __( "Espaillat", "wemail" ), 20 | "10" => __( "Independencia", "wemail" ), 21 | "11" => __( "La Altagracia", "wemail" ), 22 | "12" => __( "La Romana", "wemail" ), 23 | "13" => __( "La Vega", "wemail" ), 24 | "14" => __( "María Trinidad Sánchez", "wemail" ), 25 | "15" => __( "Monte Cristi", "wemail" ), 26 | "16" => __( "Pedernales", "wemail" ), 27 | "17" => __( "Peravia", "wemail" ), 28 | "18" => __( "Puerto Plata", "wemail" ), 29 | "19" => __( "Salcedo", "wemail" ), 30 | "20" => __( "Samaná", "wemail" ), 31 | "21" => __( "San Cristóbal", "wemail" ), 32 | "22" => __( "San Juan", "wemail" ), 33 | "23" => __( "San Pedro de Macorís", "wemail" ), 34 | "24" => __( "Sánchez Ramírez", "wemail" ), 35 | "25" => __( "Santiago", "wemail" ), 36 | "26" => __( "Santiago Rodríguez", "wemail" ), 37 | "27" => __( "Valverde", "wemail" ), 38 | "28" => __( "Monseñor Nouel", "wemail" ), 39 | "29" => __( "Monte Plata", "wemail" ), 40 | "30" => __( "Hato Mayor", "wemail" ), 41 | "31" => __( "San Jose de Ocoa", "wemail" ), 42 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/EC.php: -------------------------------------------------------------------------------- 1 | __( "Azuay", "wemail" ), 12 | "B" => __( "Bolívar", "wemail" ), 13 | "C" => __( "Carchi", "wemail" ), 14 | "D" => __( "Orellana", "wemail" ), 15 | "E" => __( "Esmeraldas", "wemail" ), 16 | "F" => __( "Cañar", "wemail" ), 17 | "G" => __( "Guayas", "wemail" ), 18 | "H" => __( "Chimborazo", "wemail" ), 19 | "I" => __( "Imbabura", "wemail" ), 20 | "L" => __( "Loja", "wemail" ), 21 | "M" => __( "Manabí", "wemail" ), 22 | "N" => __( "Napo", "wemail" ), 23 | "O" => __( "El Oro", "wemail" ), 24 | "P" => __( "Pichincha", "wemail" ), 25 | "R" => __( "Los Ríos", "wemail" ), 26 | "S" => __( "Morona-Santiago", "wemail" ), 27 | "T" => __( "Tungurahua", "wemail" ), 28 | "U" => __( "Sucumbíos", "wemail" ), 29 | "W" => __( "Galápagos", "wemail" ), 30 | "X" => __( "Cotopaxi", "wemail" ), 31 | "X1~" => __( "Santa Elena", "wemail" ), 32 | "X2~" => __( "Santo Domingo de los Tsachilas", "wemail" ), 33 | "Y" => __( "Pastaza", "wemail" ), 34 | "Z" => __( "Zamora-Chinchipe", "wemail" ), 35 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/EE.php: -------------------------------------------------------------------------------- 1 | __( "Harjumaa", "wemail" ), 12 | "39" => __( "Hiiumaa", "wemail" ), 13 | "44" => __( "Ida-Virumaa", "wemail" ), 14 | "49" => __( "Jõgevamaa", "wemail" ), 15 | "51" => __( "Järvamaa", "wemail" ), 16 | "57" => __( "Läänemaa", "wemail" ), 17 | "59" => __( "Lääne-Virumaa", "wemail" ), 18 | "65" => __( "Põlvamaa", "wemail" ), 19 | "67" => __( "Pärnumaa", "wemail" ), 20 | "70" => __( "Raplamaa", "wemail" ), 21 | "74" => __( "Saaremaa", "wemail" ), 22 | "78" => __( "Tartumaa", "wemail" ), 23 | "82" => __( "Valgamaa", "wemail" ), 24 | "84" => __( "Viljandimaa", "wemail" ), 25 | "86" => __( "Võrumaa", "wemail" ), 26 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/EG.php: -------------------------------------------------------------------------------- 1 | __( "Al Iskandariyah", "wemail" ), 12 | "ASN" => __( "Aswan", "wemail" ), 13 | "AST" => __( "Asyut", "wemail" ), 14 | "BA" => __( "Al Bahr al Ahmar", "wemail" ), 15 | "BH" => __( "Al Buhayrah", "wemail" ), 16 | "BNS" => __( "Bani Suwayf", "wemail" ), 17 | "C" => __( "Al Qahirah", "wemail" ), 18 | "DK" => __( "Ad Daqahliyah", "wemail" ), 19 | "DT" => __( "Dumyat", "wemail" ), 20 | "FYM" => __( "Al Fayyum", "wemail" ), 21 | "GH" => __( "Al Gharbiyah", "wemail" ), 22 | "GZ" => __( "Al Jizah", "wemail" ), 23 | "IS" => __( "Al Ismā`īlīyah", "wemail" ), 24 | "JS" => __( "Janub Sina'", "wemail" ), 25 | "KB" => __( "Al Qalyubiyah", "wemail" ), 26 | "KFS" => __( "Kafr ash Shaykh", "wemail" ), 27 | "KN" => __( "Qina", "wemail" ), 28 | "LX" => __( "al-Uqsur", "wemail" ), 29 | "MN" => __( "Al Minya", "wemail" ), 30 | "MNF" => __( "Al Minufiyah", "wemail" ), 31 | "MT" => __( "Matrūh", "wemail" ), 32 | "PTS" => __( "Būr Sa`īd", "wemail" ), 33 | "SHG" => __( "Suhaj", "wemail" ), 34 | "SHR" => __( "Ash Sharqiyah", "wemail" ), 35 | "SIN" => __( "Shamal Sina'", "wemail" ), 36 | "SUZ" => __( "As Suways", "wemail" ), 37 | "WAD" => __( "Al Wadi al Jadid", "wemail" ), 38 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/EH.php: -------------------------------------------------------------------------------- 1 | __( "Boujdour", "wemail" ), 12 | "ESM" => __( "Es Semara", "wemail" ), 13 | "LAA" => __( "Laayoune", "wemail" ), 14 | "OUD" => __( "Oued el Dahab", "wemail" ), 15 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/ER.php: -------------------------------------------------------------------------------- 1 | __( "Anseba", "wemail" ), 12 | "DK" => __( "Debubawi Keyih Bahri [Debub-Keih-Bahri]", "wemail" ), 13 | "DU" => __( "Debub", "wemail" ), 14 | "GB" => __( "Gash-Barka", "wemail" ), 15 | "MA" => __( "Maakel [Maekel]", "wemail" ), 16 | "SK" => __( "Semenawi Keyih Bahri [Semien-Keih-Bahri]", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/ET.php: -------------------------------------------------------------------------------- 1 | __( "Adis Abeba", "wemail" ), 12 | "AF" => __( "Afar", "wemail" ), 13 | "AM" => __( "Amara", "wemail" ), 14 | "BE" => __( "Binshangul Gumuz", "wemail" ), 15 | "DD" => __( "Dire Dawa", "wemail" ), 16 | "GA" => __( "Gambela Hizboch", "wemail" ), 17 | "HA" => __( "Hareri Hizb", "wemail" ), 18 | "OR" => __( "Oromiya", "wemail" ), 19 | "SN" => __( "YeDebub Biheroch Bihereseboch na Hizboch", "wemail" ), 20 | "SO" => __( "Sumale", "wemail" ), 21 | "TI" => __( "Tigray", "wemail" ), 22 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/FI.php: -------------------------------------------------------------------------------- 1 | __( "Ahvenanmaan lääni", "wemail" ), 12 | "ES" => __( "Etelä-Suomen lääni", "wemail" ), 13 | "IS" => __( "Itä-Suomen lääni", "wemail" ), 14 | "LL" => __( "Lapin lääni", "wemail" ), 15 | "LS" => __( "Länsi-Suomen lääni", "wemail" ), 16 | "OL" => __( "Oulun lääni", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/FJ.php: -------------------------------------------------------------------------------- 1 | __( "Central", "wemail" ), 12 | "E" => __( "Eastern", "wemail" ), 13 | "N" => __( "Northern", "wemail" ), 14 | "R" => __( "Rotuma", "wemail" ), 15 | "W" => __( "Western", "wemail" ), 16 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/FM.php: -------------------------------------------------------------------------------- 1 | __( "Kosrae", "wemail" ), 12 | "PNI" => __( "Pohnpei", "wemail" ), 13 | "TRK" => __( "Chuuk", "wemail" ), 14 | "YAP" => __( "Yap", "wemail" ), 15 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/GA.php: -------------------------------------------------------------------------------- 1 | __( "Estuaire", "wemail" ), 12 | "2" => __( "Haut-Ogooué", "wemail" ), 13 | "3" => __( "Moyen-Ogooué", "wemail" ), 14 | "4" => __( "Ngounié", "wemail" ), 15 | "5" => __( "Nyanga", "wemail" ), 16 | "6" => __( "Ogooué-Ivindo", "wemail" ), 17 | "7" => __( "Ogooué-Lolo", "wemail" ), 18 | "8" => __( "Ogooué-Maritime", "wemail" ), 19 | "9" => __( "Woleu-Ntem", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/GD.php: -------------------------------------------------------------------------------- 1 | __( "Saint Andrew", "wemail" ), 12 | "02" => __( "Saint David", "wemail" ), 13 | "03" => __( "Saint George", "wemail" ), 14 | "04" => __( "Saint John", "wemail" ), 15 | "05" => __( "Saint Mark", "wemail" ), 16 | "06" => __( "Saint Patrick", "wemail" ), 17 | "10" => __( "Southern Grenadine Islands", "wemail" ), 18 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/GE.php: -------------------------------------------------------------------------------- 1 | __( "Abkhazia", "wemail" ), 12 | "AJ" => __( "Ajaria", "wemail" ), 13 | "GU" => __( "Guria", "wemail" ), 14 | "IM" => __( "Imereti", "wemail" ), 15 | "KA" => __( "Kakheti", "wemail" ), 16 | "KK" => __( "Kvemo Kartli", "wemail" ), 17 | "MM" => __( "Mtskheta-Mtianeti", "wemail" ), 18 | "RL" => __( "Racha-Lechkhumi [and] Kvemo Svaneti", "wemail" ), 19 | "SJ" => __( "Samtskhe-Javakheti", "wemail" ), 20 | "SK" => __( "Shida Kartli", "wemail" ), 21 | "SZ" => __( "Samegrelo-Zemo Svaneti", "wemail" ), 22 | "TB" => __( "Tbilisi", "wemail" ), 23 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/GH.php: -------------------------------------------------------------------------------- 1 | __( "Greater Accra", "wemail" ), 12 | "AH" => __( "Ashanti", "wemail" ), 13 | "BA" => __( "Brong-Ahafo", "wemail" ), 14 | "CP" => __( "Central", "wemail" ), 15 | "EP" => __( "Eastern", "wemail" ), 16 | "NP" => __( "Northern", "wemail" ), 17 | "TV" => __( "Volta", "wemail" ), 18 | "UE" => __( "Upper East", "wemail" ), 19 | "UW" => __( "Upper West", "wemail" ), 20 | "WP" => __( "Western", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/GM.php: -------------------------------------------------------------------------------- 1 | __( "Banjul", "wemail" ), 12 | "L" => __( "Lower River", "wemail" ), 13 | "M" => __( "MacCarthy Island", "wemail" ), 14 | "N" => __( "North Bank", "wemail" ), 15 | "U" => __( "Upper River", "wemail" ), 16 | "W" => __( "Western", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/GN.php: -------------------------------------------------------------------------------- 1 | __( "Beyla", "wemail" ), 12 | "BF" => __( "Boffa", "wemail" ), 13 | "BK" => __( "Boké", "wemail" ), 14 | "C" => __( "Conakry", "wemail" ), 15 | "CO" => __( "Coyah", "wemail" ), 16 | "DB" => __( "Dabola", "wemail" ), 17 | "DI" => __( "Dinguiraye", "wemail" ), 18 | "DL" => __( "Dalaba", "wemail" ), 19 | "DU" => __( "Dubréka", "wemail" ), 20 | "FA" => __( "Faranah", "wemail" ), 21 | "FO" => __( "Forécariah", "wemail" ), 22 | "FR" => __( "Fria", "wemail" ), 23 | "GA" => __( "Gaoual", "wemail" ), 24 | "GU" => __( "Guékédou", "wemail" ), 25 | "KA" => __( "Kankan", "wemail" ), 26 | "KB" => __( "Koubia", "wemail" ), 27 | "KD" => __( "Kindia", "wemail" ), 28 | "KE" => __( "Kérouané", "wemail" ), 29 | "KN" => __( "Koundara", "wemail" ), 30 | "KO" => __( "Kouroussa", "wemail" ), 31 | "KS" => __( "Kissidougou", "wemail" ), 32 | "LA" => __( "Labé", "wemail" ), 33 | "LE" => __( "Lélouma", "wemail" ), 34 | "LO" => __( "Lola", "wemail" ), 35 | "MC" => __( "Macenta", "wemail" ), 36 | "MD" => __( "Mandiana", "wemail" ), 37 | "ML" => __( "Mali", "wemail" ), 38 | "MM" => __( "Mamou", "wemail" ), 39 | "NZ" => __( "Nzérékoré", "wemail" ), 40 | "PI" => __( "Pita", "wemail" ), 41 | "SI" => __( "Siguiri", "wemail" ), 42 | "TE" => __( "Télimélé", "wemail" ), 43 | "TO" => __( "Tougué", "wemail" ), 44 | "YO" => __( "Yomou", "wemail" ), 45 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/GQ.php: -------------------------------------------------------------------------------- 1 | __( "Annobón", "wemail" ), 12 | "BN" => __( "Bioko Norte", "wemail" ), 13 | "BS" => __( "Bioko Sur", "wemail" ), 14 | "C" => __( "Región Continental", "wemail" ), 15 | "CS" => __( "Centro Sur", "wemail" ), 16 | "I" => __( "Región Insular", "wemail" ), 17 | "KN" => __( "Kie-Ntem", "wemail" ), 18 | "LI" => __( "Litoral", "wemail" ), 19 | "WN" => __( "Wele-Nzás", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/GT.php: -------------------------------------------------------------------------------- 1 | __( "Alta Verapaz", "wemail" ), 12 | "BV" => __( "Baja Verapaz", "wemail" ), 13 | "CM" => __( "Chimaltenango", "wemail" ), 14 | "CQ" => __( "Chiquimula", "wemail" ), 15 | "ES" => __( "Escuintla", "wemail" ), 16 | "GU" => __( "Guatemala", "wemail" ), 17 | "HU" => __( "Huehuetenango", "wemail" ), 18 | "IZ" => __( "Izabal", "wemail" ), 19 | "JA" => __( "Jalapa", "wemail" ), 20 | "JU" => __( "Jutiapa", "wemail" ), 21 | "PE" => __( "Petén", "wemail" ), 22 | "PR" => __( "El Progreso", "wemail" ), 23 | "QC" => __( "Quiché", "wemail" ), 24 | "QZ" => __( "Quetzaltenango", "wemail" ), 25 | "RE" => __( "Retalhuleu", "wemail" ), 26 | "SA" => __( "Sacatepéquez", "wemail" ), 27 | "SM" => __( "San Marcos", "wemail" ), 28 | "SO" => __( "Sololá", "wemail" ), 29 | "SR" => __( "Santa Rosa", "wemail" ), 30 | "SU" => __( "Suchitepéquez", "wemail" ), 31 | "TO" => __( "Totonicapán", "wemail" ), 32 | "ZA" => __( "Zacapa", "wemail" ), 33 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/GW.php: -------------------------------------------------------------------------------- 1 | __( "Bafatá", "wemail" ), 12 | "BL" => __( "Bolama", "wemail" ), 13 | "BM" => __( "Biombo", "wemail" ), 14 | "BS" => __( "Bissau", "wemail" ), 15 | "CA" => __( "Cacheu", "wemail" ), 16 | "GA" => __( "Gabú", "wemail" ), 17 | "OI" => __( "Oio", "wemail" ), 18 | "QU" => __( "Quinara", "wemail" ), 19 | "TO" => __( "Tombali", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/GY.php: -------------------------------------------------------------------------------- 1 | __( "Barima-Waini", "wemail" ), 12 | "CU" => __( "Cuyuni-Mazaruni", "wemail" ), 13 | "DE" => __( "Demerara-Mahaica", "wemail" ), 14 | "EB" => __( "East Berbice-Corentyne", "wemail" ), 15 | "ES" => __( "Essequibo Islands-West Demerara", "wemail" ), 16 | "MA" => __( "Mahaica-Berbice", "wemail" ), 17 | "PM" => __( "Pomeroon-Supenaam", "wemail" ), 18 | "PT" => __( "Potaro-Siparuni", "wemail" ), 19 | "UD" => __( "Upper Demerara-Berbice", "wemail" ), 20 | "UT" => __( "Upper Takutu-Upper Essequibo", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/HN.php: -------------------------------------------------------------------------------- 1 | __( "Atlántida", "wemail" ), 12 | "CH" => __( "Choluteca", "wemail" ), 13 | "CL" => __( "Colón", "wemail" ), 14 | "CM" => __( "Comayagua", "wemail" ), 15 | "CP" => __( "Copán", "wemail" ), 16 | "CR" => __( "Cortés", "wemail" ), 17 | "EP" => __( "El Paraíso", "wemail" ), 18 | "FM" => __( "Francisco Morazán", "wemail" ), 19 | "GD" => __( "Gracias a Dios", "wemail" ), 20 | "IB" => __( "Islas de la Bahía", "wemail" ), 21 | "IN" => __( "Intibucá", "wemail" ), 22 | "LE" => __( "Lempira", "wemail" ), 23 | "LP" => __( "La Paz", "wemail" ), 24 | "OC" => __( "Ocotepeque", "wemail" ), 25 | "OL" => __( "Olancho", "wemail" ), 26 | "SB" => __( "Santa Bárbara", "wemail" ), 27 | "VA" => __( "Valle", "wemail" ), 28 | "YO" => __( "Yoro", "wemail" ), 29 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/HR.php: -------------------------------------------------------------------------------- 1 | __( "Zagrebačka županija", "wemail" ), 12 | "02" => __( "Krapinsko-zagorska županija", "wemail" ), 13 | "03" => __( "Sisačko-moslavačka županija", "wemail" ), 14 | "04" => __( "Karlovačka županija", "wemail" ), 15 | "05" => __( "Varaždinska županija", "wemail" ), 16 | "06" => __( "Koprivničko-križevačka županija", "wemail" ), 17 | "07" => __( "Bjelovarsko-bilogorska županija", "wemail" ), 18 | "08" => __( "Primorsko-goranska županija", "wemail" ), 19 | "09" => __( "Ličko-senjska županija", "wemail" ), 20 | "10" => __( "Virovitičko-podravska županija", "wemail" ), 21 | "11" => __( "Požeško-slavonska županija", "wemail" ), 22 | "12" => __( "Brodsko-posavska županija", "wemail" ), 23 | "13" => __( "Zadarska županija", "wemail" ), 24 | "14" => __( "Osječko-baranjska županija", "wemail" ), 25 | "15" => __( "Šibensko-kninska županija", "wemail" ), 26 | "16" => __( "Vukovarsko-srijemska županija", "wemail" ), 27 | "17" => __( "Splitsko-dalmatinska županija", "wemail" ), 28 | "18" => __( "Istarska županija", "wemail" ), 29 | "19" => __( "Dubrovačko-neretvanska županija", "wemail" ), 30 | "20" => __( "Međimurska županija", "wemail" ), 31 | "21" => __( "Grad Zagreb", "wemail" ), 32 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/HT.php: -------------------------------------------------------------------------------- 1 | __( "Artibonite", "wemail" ), 12 | "CE" => __( "Centre", "wemail" ), 13 | "GA" => __( "Grande-Anse", "wemail" ), 14 | "ND" => __( "Nord", "wemail" ), 15 | "NE" => __( "Nord-Est", "wemail" ), 16 | "NO" => __( "Nord-Ouest", "wemail" ), 17 | "OU" => __( "Ouest", "wemail" ), 18 | "SD" => __( "Sud", "wemail" ), 19 | "SE" => __( "Sud-Est", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/IE.php: -------------------------------------------------------------------------------- 1 | __( "Cork", "wemail" ), 12 | "CE" => __( "Clare", "wemail" ), 13 | "CN" => __( "Cavan", "wemail" ), 14 | "CW" => __( "Carlow", "wemail" ), 15 | "D" => __( "Dublin", "wemail" ), 16 | "DL" => __( "Donegal", "wemail" ), 17 | "G" => __( "Galway", "wemail" ), 18 | "KE" => __( "Kildare", "wemail" ), 19 | "KK" => __( "Kilkenny", "wemail" ), 20 | "KY" => __( "Kerry", "wemail" ), 21 | "LD" => __( "Longford", "wemail" ), 22 | "LH" => __( "Louth", "wemail" ), 23 | "LK" => __( "Limerick", "wemail" ), 24 | "LM" => __( "Leitrim", "wemail" ), 25 | "LS" => __( "Laois", "wemail" ), 26 | "MH" => __( "Meath", "wemail" ), 27 | "MN" => __( "Monaghan", "wemail" ), 28 | "MO" => __( "Mayo", "wemail" ), 29 | "OY" => __( "Offaly", "wemail" ), 30 | "RN" => __( "Roscommon", "wemail" ), 31 | "SO" => __( "Sligo", "wemail" ), 32 | "TA" => __( "Tipperary", "wemail" ), 33 | "WD" => __( "Waterford", "wemail" ), 34 | "WH" => __( "Westmeath", "wemail" ), 35 | "WW" => __( "Wicklow", "wemail" ), 36 | "WX" => __( "Wexford", "wemail" ), 37 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/IL.php: -------------------------------------------------------------------------------- 1 | __( "HaDarom", "wemail" ), 12 | "HA" => __( "Haifa", "wemail" ), 13 | "JM" => __( "Yerushalayim", "wemail" ), 14 | "M" => __( "HaMerkaz", "wemail" ), 15 | "TA" => __( "Tel-Aviv", "wemail" ), 16 | "Z" => __( "HaZafon", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/IQ.php: -------------------------------------------------------------------------------- 1 | __( "Al Anbar", "wemail" ), 12 | "AR" => __( "Arbil", "wemail" ), 13 | "BA" => __( "Al Basrah", "wemail" ), 14 | "BB" => __( "Babil", "wemail" ), 15 | "BG" => __( "Baghdad", "wemail" ), 16 | "DA" => __( "Dahuk", "wemail" ), 17 | "DI" => __( "Diyalá", "wemail" ), 18 | "DQ" => __( "Dhi Qar", "wemail" ), 19 | "KA" => __( "Karbala'", "wemail" ), 20 | "MA" => __( "Maysan", "wemail" ), 21 | "MU" => __( "Al Muthanná", "wemail" ), 22 | "NA" => __( "An Najaf", "wemail" ), 23 | "NI" => __( "Ninawá", "wemail" ), 24 | "QA" => __( "Al Qadisiyah", "wemail" ), 25 | "SD" => __( "Salah ad Din", "wemail" ), 26 | "SU" => __( "As Sulaymaniyah", "wemail" ), 27 | "TS" => __( "At Ta'mim", "wemail" ), 28 | "WA" => __( "Wasit", "wemail" ), 29 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/IR.php: -------------------------------------------------------------------------------- 1 | __( "Az¯arbayjan-e Sharqi", "wemail" ), 12 | "02" => __( "Az¯arbayjan-e Gharbi", "wemail" ), 13 | "03" => __( "Ardabil", "wemail" ), 14 | "04" => __( "Esfahan", "wemail" ), 15 | "05" => __( "Ilam", "wemail" ), 16 | "06" => __( "Bushehr", "wemail" ), 17 | "07" => __( "Tehran", "wemail" ), 18 | "08" => __( "Chahar Mah¸all va Bakhtiari", "wemail" ), 19 | "09" => __( "Khorasan", "wemail" ), 20 | "10" => __( "Khuzestan", "wemail" ), 21 | "11" => __( "Zanjan", "wemail" ), 22 | "12" => __( "Semnan", "wemail" ), 23 | "13" => __( "Sistan va Baluchestan", "wemail" ), 24 | "14" => __( "Fars", "wemail" ), 25 | "15" => __( "Kerman", "wemail" ), 26 | "16" => __( "Kordestan", "wemail" ), 27 | "17" => __( "Kermanshah", "wemail" ), 28 | "18" => __( "Kohkiluyeh va Buyer Ahmad", "wemail" ), 29 | "19" => __( "Gilan", "wemail" ), 30 | "20" => __( "Lorestan", "wemail" ), 31 | "21" => __( "Mazandaran", "wemail" ), 32 | "22" => __( "Markazi", "wemail" ), 33 | "23" => __( "Hormozgan", "wemail" ), 34 | "24" => __( "Hamadan", "wemail" ), 35 | "25" => __( "Yazd", "wemail" ), 36 | "26" => __( "Qom", "wemail" ), 37 | "27" => __( "Golestan", "wemail" ), 38 | "28" => __( "Qazvin", "wemail" ), 39 | "29" => __( "Khorasan-e Janubi", "wemail" ), 40 | "30" => __( "Khorasan-e Razavi", "wemail" ), 41 | "31" => __( "Khorasan-e Shemali", "wemail" ), 42 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/IS.php: -------------------------------------------------------------------------------- 1 | __( "Reykjavík", "wemail" ), 12 | "1" => __( "Höfuðborgarsvæði utan Reykjavíkur", "wemail" ), 13 | "2" => __( "Suðurnes", "wemail" ), 14 | "3" => __( "Vesturland", "wemail" ), 15 | "4" => __( "Vestfirðir", "wemail" ), 16 | "5" => __( "Norðurland vestra", "wemail" ), 17 | "6" => __( "Norðurland eystra", "wemail" ), 18 | "7" => __( "Austurland", "wemail" ), 19 | "8" => __( "Suðurland", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/JM.php: -------------------------------------------------------------------------------- 1 | __( "Kingston", "wemail" ), 12 | "02" => __( "Saint Andrew", "wemail" ), 13 | "03" => __( "Saint Thomas", "wemail" ), 14 | "04" => __( "Portland", "wemail" ), 15 | "05" => __( "Saint Mary", "wemail" ), 16 | "06" => __( "Saint Ann", "wemail" ), 17 | "07" => __( "Trelawny", "wemail" ), 18 | "08" => __( "Saint James", "wemail" ), 19 | "09" => __( "Hanover", "wemail" ), 20 | "10" => __( "Westmoreland", "wemail" ), 21 | "11" => __( "Saint Elizabeth", "wemail" ), 22 | "12" => __( "Manchester", "wemail" ), 23 | "13" => __( "Clarendon", "wemail" ), 24 | "14" => __( "Saint Catherine", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/JO.php: -------------------------------------------------------------------------------- 1 | __( "Ajlun", "wemail" ), 12 | "AM" => __( "Amman", "wemail" ), 13 | "AQ" => __( "Aqaba", "wemail" ), 14 | "AT" => __( "At Tafilah", "wemail" ), 15 | "AZ" => __( "Az Zarqa'", "wemail" ), 16 | "BA" => __( "Al Balqa'", "wemail" ), 17 | "IR" => __( "Irbid", "wemail" ), 18 | "JA" => __( "Jarash", "wemail" ), 19 | "KA" => __( "Al Karak", "wemail" ), 20 | "MA" => __( "Al Mafraq", "wemail" ), 21 | "MD" => __( "Madaba", "wemail" ), 22 | "MN" => __( "Ma`an", "wemail" ), 23 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KE.php: -------------------------------------------------------------------------------- 1 | __( "Nairobi Municipality", "wemail" ), 12 | "200" => __( "Central", "wemail" ), 13 | "300" => __( "Coast", "wemail" ), 14 | "400" => __( "Eastern", "wemail" ), 15 | "500" => __( "North-Eastern", "wemail" ), 16 | "600" => __( "Nyanza", "wemail" ), 17 | "700" => __( "Rift Valley", "wemail" ), 18 | "900" => __( "Western", "wemail" ), 19 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KG.php: -------------------------------------------------------------------------------- 1 | __( "Batken", "wemail" ), 12 | "C" => __( "Chü", "wemail" ), 13 | "GB" => __( "Bishkek", "wemail" ), 14 | "J" => __( "Jalal-Abad", "wemail" ), 15 | "N" => __( "Naryn", "wemail" ), 16 | "O" => __( "Osh", "wemail" ), 17 | "T" => __( "Talas", "wemail" ), 18 | "Y" => __( "Ysyk-Köl", "wemail" ), 19 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KH.php: -------------------------------------------------------------------------------- 1 | __( "Banteay Mean Chey [Bântéay Méanchey]", "wemail" ), 12 | "10" => __( "Kracheh [Krâchéh]", "wemail" ), 13 | "11" => __( "Mondol Kiri [Môndól Kiri]", "wemail" ), 14 | "12" => __( "Phnom Penh [Phnum Pénh]", "wemail" ), 15 | "13" => __( "Preah Vihear [Preah Vihéar]", "wemail" ), 16 | "14" => __( "Prey Veaeng [Prey Vêng]", "wemail" ), 17 | "15" => __( "Pousaat [Pouthisat]", "wemail" ), 18 | "16" => __( "Rotanak Kiri [Rôtânôkiri]", "wemail" ), 19 | "17" => __( "Siem Reab [Siemréab]", "wemail" ), 20 | "18" => __( "Krong Preah Sihanouk [Krong Preah Sihanouk]", "wemail" ), 21 | "19" => __( "Stueng Traeng [Stœ?ng Trêng]", "wemail" ), 22 | "2" => __( "Baat Dambang [Batdâmbâng]", "wemail" ), 23 | "20" => __( "Svaay Rieng [Svay Rieng]", "wemail" ), 24 | "21" => __( "Taakaev [Takêv]", "wemail" ), 25 | "22" => __( "Otdar Mean Chey [Otdâr Méanchey] ", "wemail" ), 26 | "23" => __( "Krong Kep [Krong Kêb]", "wemail" ), 27 | "24" => __( "Krong Pailin [Krong Pailin]", "wemail" ), 28 | "3" => __( "Kampong Chaam [Kâmpóng Cham]", "wemail" ), 29 | "4" => __( "Kampong Chhnang [Kâmpóng Chhnang]", "wemail" ), 30 | "5" => __( "Kampong Spueu [Kâmpóng Spœ]", "wemail" ), 31 | "6" => __( "Kampong Thum [Kâmpóng Thum]", "wemail" ), 32 | "7" => __( "Kampot [Kâmpôt]", "wemail" ), 33 | "8" => __( "Kandaal [Kândal]", "wemail" ), 34 | "9" => __( "Kaoh Kong [Kaôh Kong]", "wemail" ), 35 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KI.php: -------------------------------------------------------------------------------- 1 | __( "Gilbert Islands", "wemail" ), 12 | "L" => __( "Line Islands", "wemail" ), 13 | "P" => __( "Phoenix Islands", "wemail" ), 14 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KM.php: -------------------------------------------------------------------------------- 1 | __( "Anjouan", "wemail" ), 12 | "G" => __( "Grande Comore", "wemail" ), 13 | "M" => __( "Mohéli", "wemail" ), 14 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KN.php: -------------------------------------------------------------------------------- 1 | __( "Christ Church Nichola Town", "wemail" ), 12 | "02" => __( "Saint Anne Sandy Point", "wemail" ), 13 | "03" => __( "Saint George Basseterre", "wemail" ), 14 | "04" => __( "Saint George Gingerland", "wemail" ), 15 | "05" => __( "Saint James Windward", "wemail" ), 16 | "06" => __( "Saint John Capisterre", "wemail" ), 17 | "07" => __( "Saint John Figtree", "wemail" ), 18 | "08" => __( "Saint Mary Cayon", "wemail" ), 19 | "09" => __( "Saint Paul Capisterre", "wemail" ), 20 | "10" => __( "Saint Paul Charlestown", "wemail" ), 21 | "11" => __( "Saint Peter Basseterre", "wemail" ), 22 | "12" => __( "Saint Thomas Lowland", "wemail" ), 23 | "13" => __( "Saint Thomas Middle Island", "wemail" ), 24 | "15" => __( "Trinity Palmetto Point", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KP.php: -------------------------------------------------------------------------------- 1 | __( "Chagang-do", "wemail" ), 12 | "HAB" => __( "Hamgyongbuk-do", "wemail" ), 13 | "HAN" => __( "Hamgyongnam-do", "wemail" ), 14 | "HWB" => __( "Hwanghaebuk-do", "wemail" ), 15 | "HWN" => __( "Hwanghaenam-do", "wemail" ), 16 | "KAE" => __( "Kaesong-si", "wemail" ), 17 | "KAN" => __( "Kangwon-do", "wemail" ), 18 | "NAJ" => __( "Najin Sonbong-si", "wemail" ), 19 | "NAM" => __( "Nampo-si", "wemail" ), 20 | "PYB" => __( "Pyonganbuk-do", "wemail" ), 21 | "PYN" => __( "Pyongannam-do", "wemail" ), 22 | "PYO" => __( "Pyongyang-si", "wemail" ), 23 | "X1~" => __( "Rason", "wemail" ), 24 | "YAN" => __( "Yanggang-do", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KR.php: -------------------------------------------------------------------------------- 1 | __( "Seoul Teugbyeolsi [Seoul-T'ukpyolshi]", "wemail" ), 12 | "26" => __( "Busan Gwang'yeogsi [Pusan-Kwangyokshi]", "wemail" ), 13 | "27" => __( "Daegu Gwang'yeogsi [Taegu-Kwangyokshi]", "wemail" ), 14 | "28" => __( "Incheon Gwang'yeogsi [Inch'n-Kwangyokshi]", "wemail" ), 15 | "29" => __( "Gwangju Gwang'yeogsi [Kwangju-Kwangyokshi]", "wemail" ), 16 | "30" => __( "Daejeon Gwang'yeogsi [Taejon-Kwangyokshi]", "wemail" ), 17 | "31" => __( "Ulsan Gwang'yeogsi [Ulsan-Kwangyokshi]", "wemail" ), 18 | "41" => __( "Gyeonggido [Kyonggi-do]", "wemail" ), 19 | "42" => __( "Gang'weondo [Kang-won-do]", "wemail" ), 20 | "43" => __( "Chungcheongbugdo [Ch'ungch'ongbuk-do]", "wemail" ), 21 | "44" => __( "Chungcheongnamdo [Ch'ungch'ongnam-do]", "wemail" ), 22 | "45" => __( "Jeonrabugdo[Chollabuk-do]", "wemail" ), 23 | "46" => __( "Jeonranamdo [Chollanam-do]", "wemail" ), 24 | "47" => __( "Gyeongsangbugdo [Kyongsangbuk-do]", "wemail" ), 25 | "48" => __( "Gyeongsangnamdo [Kyongsangnam-do]", "wemail" ), 26 | "49" => __( "Jejudo [Cheju-do]", "wemail" ), 27 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KW.php: -------------------------------------------------------------------------------- 1 | __( "Al Ahmadi", "wemail" ), 12 | "FA" => __( "Al Farwaniyah", "wemail" ), 13 | "HA" => __( "Hawalli", "wemail" ), 14 | "JA" => __( "Al Jahrah", "wemail" ), 15 | "KU" => __( "Al Kuwayt", "wemail" ), 16 | "MU" => __( "Mubarak al-Kabir", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KY.php: -------------------------------------------------------------------------------- 1 | __( "Bodden Town", "wemail" ), 12 | "02~" => __( "Cayman Brac", "wemail" ), 13 | "03~" => __( "East End", "wemail" ), 14 | "04~" => __( "George Town", "wemail" ), 15 | "06~" => __( "North Side", "wemail" ), 16 | "07~" => __( "West Bay", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/KZ.php: -------------------------------------------------------------------------------- 1 | __( "Aqmola oblysy", "wemail" ), 12 | "AKT" => __( "Aqtöbe oblysy", "wemail" ), 13 | "ALA" => __( "Almaty", "wemail" ), 14 | "ALM" => __( "Almaty oblysy", "wemail" ), 15 | "AST" => __( "Astana", "wemail" ), 16 | "ATY" => __( "Atyrau oblysy", "wemail" ), 17 | "BAY" => __( "Bayqongyr", "wemail" ), 18 | "KAR" => __( "Qaraghandy oblysy", "wemail" ), 19 | "KUS" => __( "Qostanay oblysy", "wemail" ), 20 | "KZY" => __( "Qyzylorda oblysy", "wemail" ), 21 | "MAN" => __( "Mangghystau oblysy", "wemail" ), 22 | "PAV" => __( "Pavlodar oblysy", "wemail" ), 23 | "SEV" => __( "Soltüstik Qazaqstan oblysy", "wemail" ), 24 | "VOS" => __( "Shyghys Qazaqstan oblysy", "wemail" ), 25 | "YUZ" => __( "Ongtüstik Qazaqstan oblysy", "wemail" ), 26 | "ZAP" => __( "Batys Qazaqstan oblysy", "wemail" ), 27 | "ZHA" => __( "Zhambyl oblysy", "wemail" ), 28 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/LA.php: -------------------------------------------------------------------------------- 1 | __( "Attapu [Attopeu]", "wemail" ), 12 | "BK" => __( "Bokèo", "wemail" ), 13 | "BL" => __( "Bolikhamxai [Borikhane]", "wemail" ), 14 | "CH" => __( "Champasak [Champassak]", "wemail" ), 15 | "HO" => __( "Houaphan", "wemail" ), 16 | "KH" => __( "Khammouan", "wemail" ), 17 | "LM" => __( "Louang Namtha", "wemail" ), 18 | "LP" => __( "Louangphabang [Louang Prabang]", "wemail" ), 19 | "OU" => __( "Oudômxai [Oudomsai]", "wemail" ), 20 | "PH" => __( "Phôngsali [Phong Saly]", "wemail" ), 21 | "SL" => __( "Salavan [Saravane]", "wemail" ), 22 | "SV" => __( "Savannakhét", "wemail" ), 23 | "VI" => __( "Vientiane", "wemail" ), 24 | "VT" => __( "Vientiane Prefecture", "wemail" ), 25 | "XA" => __( "Xaignabouli [Sayaboury]", "wemail" ), 26 | "XE" => __( "Xékong [Sékong]", "wemail" ), 27 | "XI" => __( "Xiangkhoang [Xieng Khouang]", "wemail" ), 28 | "XN" => __( "Xaisômboun", "wemail" ), 29 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/LB.php: -------------------------------------------------------------------------------- 1 | __( "Loubnâne ech Chemâli", "wemail" ), 12 | "BA" => __( "Beirut", "wemail" ), 13 | "BI" => __( "El Béqaa", "wemail" ), 14 | "JA" => __( "Loubnâne ej Jnoûbi", "wemail" ), 15 | "JL" => __( "Jabal Loubnâne", "wemail" ), 16 | "NA" => __( "Nabatîyé", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/LI.php: -------------------------------------------------------------------------------- 1 | __( "Balzers", "wemail" ), 12 | "02" => __( "Eschen", "wemail" ), 13 | "03" => __( "Gamprin", "wemail" ), 14 | "04" => __( "Mauren", "wemail" ), 15 | "05" => __( "Planken", "wemail" ), 16 | "06" => __( "Ruggell", "wemail" ), 17 | "07" => __( "Schaan", "wemail" ), 18 | "08" => __( "Schellenberg", "wemail" ), 19 | "09" => __( "Triesen", "wemail" ), 20 | "10" => __( "Triesenberg", "wemail" ), 21 | "11" => __( "Vaduz", "wemail" ), 22 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/LK.php: -------------------------------------------------------------------------------- 1 | __( "Colombo", "wemail" ), 12 | "12" => __( "Gampaha", "wemail" ), 13 | "13" => __( "Kalutara", "wemail" ), 14 | "21" => __( "Kandy", "wemail" ), 15 | "22" => __( "Matale", "wemail" ), 16 | "23" => __( "Nuwara Eliya", "wemail" ), 17 | "31" => __( "Galle", "wemail" ), 18 | "32" => __( "Matara", "wemail" ), 19 | "33" => __( "Hambantota", "wemail" ), 20 | "41" => __( "Jaffna", "wemail" ), 21 | "42" => __( "Kilinochchi", "wemail" ), 22 | "43" => __( "Mannar", "wemail" ), 23 | "44" => __( "Vavuniya", "wemail" ), 24 | "45" => __( "Mullaittivu", "wemail" ), 25 | "51" => __( "Batticaloa", "wemail" ), 26 | "52" => __( "Ampara", "wemail" ), 27 | "53" => __( "Trincomalee", "wemail" ), 28 | "61" => __( "Kurunegala", "wemail" ), 29 | "62" => __( "Puttalam", "wemail" ), 30 | "71" => __( "Anuradhapura", "wemail" ), 31 | "72" => __( "Polonnaruwa", "wemail" ), 32 | "81" => __( "Badulla", "wemail" ), 33 | "82" => __( "Monaragala", "wemail" ), 34 | "91" => __( "Ratnapura", "wemail" ), 35 | "92" => __( "Kegalla", "wemail" ), 36 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/LR.php: -------------------------------------------------------------------------------- 1 | __( "Bong", "wemail" ), 12 | "BM" => __( "Bomi", "wemail" ), 13 | "CM" => __( "Grand Cape Mount", "wemail" ), 14 | "GB" => __( "Grand Bassa", "wemail" ), 15 | "GG" => __( "Grand Gedeh", "wemail" ), 16 | "GK" => __( "Grand Kru", "wemail" ), 17 | "LO" => __( "Lofa", "wemail" ), 18 | "MG" => __( "Margibi", "wemail" ), 19 | "MO" => __( "Montserrado", "wemail" ), 20 | "MY" => __( "Maryland", "wemail" ), 21 | "NI" => __( "Nimba", "wemail" ), 22 | "RI" => __( "Rivercess", "wemail" ), 23 | "SI" => __( "Sinoe", "wemail" ), 24 | "X1~" => __( "Gbarpolu", "wemail" ), 25 | "X2~" => __( "River Gee", "wemail" ), 26 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/LS.php: -------------------------------------------------------------------------------- 1 | __( "Maseru", "wemail" ), 12 | "B" => __( "Butha-Buthe", "wemail" ), 13 | "C" => __( "Leribe", "wemail" ), 14 | "D" => __( "Berea", "wemail" ), 15 | "E" => __( "Mafeteng", "wemail" ), 16 | "F" => __( "Mohale's Hoek", "wemail" ), 17 | "G" => __( "Quthing", "wemail" ), 18 | "H" => __( "Qacha's Nek", "wemail" ), 19 | "J" => __( "Mokhotlong", "wemail" ), 20 | "K" => __( "Thaba-Tseka", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/LT.php: -------------------------------------------------------------------------------- 1 | __( "Alytaus Apskritis", "wemail" ), 12 | "KL" => __( "Klaipedos Apskritis", "wemail" ), 13 | "KU" => __( "Kauno Apskritis", "wemail" ), 14 | "MR" => __( "Marijampoles Apskritis", "wemail" ), 15 | "PN" => __( "Panevežio Apskritis", "wemail" ), 16 | "SA" => __( "Šiauliu Apskritis", "wemail" ), 17 | "TA" => __( "Taurages Apskritis", "wemail" ), 18 | "TE" => __( "Telšiu Apskritis", "wemail" ), 19 | "UT" => __( "Utenos Apskritis", "wemail" ), 20 | "VL" => __( "Vilniaus Apskritis", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/LU.php: -------------------------------------------------------------------------------- 1 | __( "Diekirch", "wemail" ), 12 | "G" => __( "Grevenmacher", "wemail" ), 13 | "L" => __( "Luxembourg (fr)", "wemail" ), 14 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MD.php: -------------------------------------------------------------------------------- 1 | __( "Balti", "wemail" ), 12 | "CA" => __( "Cahul", "wemail" ), 13 | "CH" => __( "Chisinau City", "wemail" ), 14 | "CU" => __( "Chisinau", "wemail" ), 15 | "ED" => __( "Edinet", "wemail" ), 16 | "GA" => __( "Gagauzia, Unitate Teritoriala Autonoma (UTAG)", "wemail" ), 17 | "LA" => __( "Lapusna", "wemail" ), 18 | "OR" => __( "Orhei", "wemail" ), 19 | "SN" => __( "Stînga Nistrului, unitatea teritoriala din", "wemail" ), 20 | "SO" => __( "Soroca", "wemail" ), 21 | "TA" => __( "Taraclia", "wemail" ), 22 | "TI" => __( "Tighina [Bender]", "wemail" ), 23 | "UN" => __( "Ungheni", "wemail" ), 24 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/ME.php: -------------------------------------------------------------------------------- 1 | __( "Andrijevica", "wemail" ), 12 | "02" => __( "Bar", "wemail" ), 13 | "03" => __( "Berane", "wemail" ), 14 | "04" => __( "Bijelo Polje", "wemail" ), 15 | "05" => __( "Budva", "wemail" ), 16 | "06" => __( "Cetinje", "wemail" ), 17 | "07" => __( "Danilovgrad", "wemail" ), 18 | "08" => __( "Herceg-Novi", "wemail" ), 19 | "09" => __( "Kolašin", "wemail" ), 20 | "10" => __( "Kotor", "wemail" ), 21 | "11" => __( "Mojkovac", "wemail" ), 22 | "12" => __( "Nikšic´", "wemail" ), 23 | "13" => __( "Plav", "wemail" ), 24 | "14" => __( "Pljevlja", "wemail" ), 25 | "15" => __( "Plužine", "wemail" ), 26 | "16" => __( "Podgorica", "wemail" ), 27 | "17" => __( "Rožaje", "wemail" ), 28 | "18" => __( "Šavnik", "wemail" ), 29 | "19" => __( "Tivat", "wemail" ), 30 | "20" => __( "Ulcinj", "wemail" ), 31 | "21" => __( "Žabljak", "wemail" ), 32 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MG.php: -------------------------------------------------------------------------------- 1 | __( "Toamasina", "wemail" ), 12 | "D" => __( "Antsiranana", "wemail" ), 13 | "F" => __( "Fianarantsoa", "wemail" ), 14 | "M" => __( "Mahajanga", "wemail" ), 15 | "T" => __( "Antananarivo", "wemail" ), 16 | "U" => __( "Toliara", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MH.php: -------------------------------------------------------------------------------- 1 | __( "Ailuk", "wemail" ), 12 | "ALL" => __( "Ailinglapalap", "wemail" ), 13 | "ARN" => __( "Arno", "wemail" ), 14 | "AUR" => __( "Aur", "wemail" ), 15 | "EBO" => __( "Ebon", "wemail" ), 16 | "ENI" => __( "Eniwetok", "wemail" ), 17 | "JAB" => __( "Jabat", "wemail" ), 18 | "JAL" => __( "Jaluit", "wemail" ), 19 | "KIL" => __( "Kili", "wemail" ), 20 | "KWA" => __( "Kwajalein", "wemail" ), 21 | "LAE" => __( "Lae", "wemail" ), 22 | "LIB" => __( "Lib", "wemail" ), 23 | "LIK" => __( "Likiep", "wemail" ), 24 | "MAJ" => __( "Majuro", "wemail" ), 25 | "MAL" => __( "Maloelap", "wemail" ), 26 | "MEJ" => __( "Mejit", "wemail" ), 27 | "MIL" => __( "Mili", "wemail" ), 28 | "NMK" => __( "Namorik", "wemail" ), 29 | "NMU" => __( "Namu", "wemail" ), 30 | "RON" => __( "Rongelap", "wemail" ), 31 | "UJA" => __( "Ujae", "wemail" ), 32 | "UJL" => __( "Ujelang", "wemail" ), 33 | "UTI" => __( "Utirik", "wemail" ), 34 | "WTH" => __( "Wotho", "wemail" ), 35 | "WTJ" => __( "Wotje", "wemail" ), 36 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/ML.php: -------------------------------------------------------------------------------- 1 | __( "Kayes", "wemail" ), 12 | "2" => __( "Koulikoro", "wemail" ), 13 | "3" => __( "Sikasso", "wemail" ), 14 | "4" => __( "Ségou", "wemail" ), 15 | "5" => __( "Mopti", "wemail" ), 16 | "6" => __( "Tombouctou", "wemail" ), 17 | "7" => __( "Gao", "wemail" ), 18 | "8" => __( "Kidal", "wemail" ), 19 | "BKO" => __( "Bamako", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MM.php: -------------------------------------------------------------------------------- 1 | __( "Sagaing", "wemail" ), 12 | "02" => __( "Bago", "wemail" ), 13 | "03" => __( "Magway", "wemail" ), 14 | "04" => __( "Mandalay", "wemail" ), 15 | "05" => __( "Tanintharyi", "wemail" ), 16 | "06" => __( "Yangon", "wemail" ), 17 | "07" => __( "Ayeyarwady", "wemail" ), 18 | "11" => __( "Kachin", "wemail" ), 19 | "12" => __( "Kayah", "wemail" ), 20 | "13" => __( "Kayin", "wemail" ), 21 | "14" => __( "Chin", "wemail" ), 22 | "15" => __( "Mon", "wemail" ), 23 | "16" => __( "Rakhine", "wemail" ), 24 | "17" => __( "Shan", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MN.php: -------------------------------------------------------------------------------- 1 | __( "Orhon", "wemail" ), 12 | "037" => __( "Darhan uul", "wemail" ), 13 | "039" => __( "Hentiy", "wemail" ), 14 | "041" => __( "Hövsgöl", "wemail" ), 15 | "043" => __( "Hovd", "wemail" ), 16 | "046" => __( "Uvs", "wemail" ), 17 | "047" => __( "Töv", "wemail" ), 18 | "049" => __( "Selenge", "wemail" ), 19 | "051" => __( "Sühbaatar", "wemail" ), 20 | "053" => __( "Ömnögovi", "wemail" ), 21 | "055" => __( "Övörhangay", "wemail" ), 22 | "057" => __( "Dzavhan", "wemail" ), 23 | "059" => __( "Dundgovi", "wemail" ), 24 | "061" => __( "Dornod", "wemail" ), 25 | "063" => __( "Dornogovi", "wemail" ), 26 | "064" => __( "Govi-Sümber", "wemail" ), 27 | "065" => __( "Govi-Altay", "wemail" ), 28 | "067" => __( "Bulgan", "wemail" ), 29 | "069" => __( "Bayanhongor", "wemail" ), 30 | "071" => __( "Bayan-Ölgiy", "wemail" ), 31 | "073" => __( "Arhangay", "wemail" ), 32 | "1" => __( "Ulaanbaatar", "wemail" ), 33 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MR.php: -------------------------------------------------------------------------------- 1 | __( "Hodh ech Chargui", "wemail" ), 12 | "02" => __( "Hodh el Gharbi", "wemail" ), 13 | "03" => __( "Assaba", "wemail" ), 14 | "04" => __( "Gorgol", "wemail" ), 15 | "05" => __( "Brakna", "wemail" ), 16 | "06" => __( "Trarza", "wemail" ), 17 | "07" => __( "Adrar", "wemail" ), 18 | "08" => __( "Dakhlet Nouâdhibou", "wemail" ), 19 | "09" => __( "Tagant", "wemail" ), 20 | "10" => __( "Guidimaka", "wemail" ), 21 | "11" => __( "Tiris Zemmour", "wemail" ), 22 | "12" => __( "Inchiri", "wemail" ), 23 | "NKC" => __( "Nouakchott", "wemail" ), 24 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MU.php: -------------------------------------------------------------------------------- 1 | __( "Agalega Islands", "wemail" ), 12 | "BL" => __( "Black River", "wemail" ), 13 | "BR" => __( "Beau Bassin-Rose Hill", "wemail" ), 14 | "CC" => __( "Cargados Carajos Shoals [Saint Brandon Islands]", "wemail" ), 15 | "CU" => __( "Curepipe", "wemail" ), 16 | "FL" => __( "Flacq", "wemail" ), 17 | "GP" => __( "Grand Port", "wemail" ), 18 | "MO" => __( "Moka", "wemail" ), 19 | "PA" => __( "Pamplemousses", "wemail" ), 20 | "PL" => __( "Port Louis City", "wemail" ), 21 | "PU" => __( "Port Louis District", "wemail" ), 22 | "PW" => __( "Plaines Wilhems", "wemail" ), 23 | "QB" => __( "Quatre Bornes", "wemail" ), 24 | "RO" => __( "Rodrigues Island", "wemail" ), 25 | "RR" => __( "Rivière du Rempart", "wemail" ), 26 | "SA" => __( "Savanne", "wemail" ), 27 | "VP" => __( "Vacoas-Phoenix", "wemail" ), 28 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MV.php: -------------------------------------------------------------------------------- 1 | __( "Seenu", "wemail" ), 12 | "02" => __( "Alif", "wemail" ), 13 | "03" => __( "Lhaviyani", "wemail" ), 14 | "04" => __( "Vaavu", "wemail" ), 15 | "05" => __( "Laamu", "wemail" ), 16 | "07" => __( "Haa Alif", "wemail" ), 17 | "08" => __( "Thaa", "wemail" ), 18 | "12" => __( "Meemu", "wemail" ), 19 | "13" => __( "Raa", "wemail" ), 20 | "14" => __( "Faafu", "wemail" ), 21 | "17" => __( "Dhaalu", "wemail" ), 22 | "20" => __( "Baa", "wemail" ), 23 | "23" => __( "Haa Dhaalu", "wemail" ), 24 | "24" => __( "Shaviyani", "wemail" ), 25 | "25" => __( "Noonu", "wemail" ), 26 | "26" => __( "Kaafu", "wemail" ), 27 | "27" => __( "Gaaf Alif", "wemail" ), 28 | "28" => __( "Gaafu Dhaalu", "wemail" ), 29 | "29" => __( "Gnaviyani", "wemail" ), 30 | "MLE" => __( "Male", "wemail" ), 31 | "X1~" => __( "Alif Dhaal", "wemail" ), 32 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MW.php: -------------------------------------------------------------------------------- 1 | __( "Balaka", "wemail" ), 12 | "BL" => __( "Blantyre", "wemail" ), 13 | "CK" => __( "Chikwawa", "wemail" ), 14 | "CR" => __( "Chiradzulu", "wemail" ), 15 | "CT" => __( "Chitipa", "wemail" ), 16 | "DE" => __( "Dedza", "wemail" ), 17 | "DO" => __( "Dowa", "wemail" ), 18 | "KR" => __( "Karonga", "wemail" ), 19 | "KS" => __( "Kasungu", "wemail" ), 20 | "LI" => __( "Lilongwe", "wemail" ), 21 | "LK" => __( "Likoma Island", "wemail" ), 22 | "MC" => __( "Mchinji", "wemail" ), 23 | "MG" => __( "Mangochi", "wemail" ), 24 | "MH" => __( "Machinga", "wemail" ), 25 | "MU" => __( "Mulanje", "wemail" ), 26 | "MW" => __( "Mwanza", "wemail" ), 27 | "MZ" => __( "Mzimba", "wemail" ), 28 | "NB" => __( "Nkhata Bay", "wemail" ), 29 | "NI" => __( "Ntchisi", "wemail" ), 30 | "NK" => __( "Nkhotakota", "wemail" ), 31 | "NS" => __( "Nsanje", "wemail" ), 32 | "NU" => __( "Ntcheu", "wemail" ), 33 | "PH" => __( "Phalombe", "wemail" ), 34 | "RU" => __( "Rumphi", "wemail" ), 35 | "SA" => __( "Salima", "wemail" ), 36 | "TH" => __( "Thyolo", "wemail" ), 37 | "ZO" => __( "Zomba", "wemail" ), 38 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MX.php: -------------------------------------------------------------------------------- 1 | __( "Aguascalientes", "wemail" ), 12 | "BCN" => __( "Baja California", "wemail" ), 13 | "BCS" => __( "Baja California Sur", "wemail" ), 14 | "CAM" => __( "Campeche", "wemail" ), 15 | "CHH" => __( "Chihuahua", "wemail" ), 16 | "CHP" => __( "Chiapas", "wemail" ), 17 | "COA" => __( "Coahuila", "wemail" ), 18 | "COL" => __( "Colima", "wemail" ), 19 | "DIF" => __( "Distrito Federal", "wemail" ), 20 | "DUR" => __( "Durango", "wemail" ), 21 | "GRO" => __( "Guerrero", "wemail" ), 22 | "GUA" => __( "Guanajuato", "wemail" ), 23 | "HID" => __( "Hidalgo", "wemail" ), 24 | "JAL" => __( "Jalisco", "wemail" ), 25 | "MEX" => __( "México", "wemail" ), 26 | "MIC" => __( "Michoacán", "wemail" ), 27 | "MOR" => __( "Morelos", "wemail" ), 28 | "NAY" => __( "Nayarit", "wemail" ), 29 | "NLE" => __( "Nuevo León", "wemail" ), 30 | "OAX" => __( "Oaxaca", "wemail" ), 31 | "PUE" => __( "Puebla", "wemail" ), 32 | "QUE" => __( "Querétaro", "wemail" ), 33 | "ROO" => __( "Quintana Roo", "wemail" ), 34 | "SIN" => __( "Sinaloa", "wemail" ), 35 | "SLP" => __( "San Luis Potosí", "wemail" ), 36 | "SON" => __( "Sonora", "wemail" ), 37 | "TAB" => __( "Tabasco", "wemail" ), 38 | "TAM" => __( "Tamaulipas", "wemail" ), 39 | "TLA" => __( "Tlaxcala", "wemail" ), 40 | "VER" => __( "Veracruz", "wemail" ), 41 | "YUC" => __( "Yucatán", "wemail" ), 42 | "ZAC" => __( "Zacatecas", "wemail" ), 43 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MY.php: -------------------------------------------------------------------------------- 1 | __( "Johor", "wemail" ), 12 | "02" => __( "Kedah", "wemail" ), 13 | "03" => __( "Kelantan", "wemail" ), 14 | "04" => __( "Melaka", "wemail" ), 15 | "05" => __( "Negeri Sembilan", "wemail" ), 16 | "06" => __( "Pahang", "wemail" ), 17 | "07" => __( "Pulau Pinang", "wemail" ), 18 | "08" => __( "Perak", "wemail" ), 19 | "09" => __( "Perlis", "wemail" ), 20 | "10" => __( "Selangor", "wemail" ), 21 | "11" => __( "Terengganu", "wemail" ), 22 | "12" => __( "Sabah", "wemail" ), 23 | "13" => __( "Sarawak", "wemail" ), 24 | "14" => __( "Wilayah Persekutuan Kuala Lumpur", "wemail" ), 25 | "15" => __( "Wilayah Persekutuan Labuan", "wemail" ), 26 | "16" => __( "Wilayah Persekutuan Putrajaya", "wemail" ), 27 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/MZ.php: -------------------------------------------------------------------------------- 1 | __( "Niassa", "wemail" ), 12 | "B" => __( "Manica", "wemail" ), 13 | "G" => __( "Gaza", "wemail" ), 14 | "I" => __( "Inhambane", "wemail" ), 15 | "L" => __( "Maputo", "wemail" ), 16 | "MPM" => __( "Maputo City", "wemail" ), 17 | "N" => __( "Nampula", "wemail" ), 18 | "P" => __( "Cabo Delgado", "wemail" ), 19 | "Q" => __( "Zambézia", "wemail" ), 20 | "S" => __( "Sofala", "wemail" ), 21 | "T" => __( "Tete", "wemail" ), 22 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/NA.php: -------------------------------------------------------------------------------- 1 | __( "Zambezi", "wemail" ), 12 | "ER" => __( "Erongo", "wemail" ), 13 | "HA" => __( "Hardap", "wemail" ), 14 | "KA" => __( "Karas", "wemail" ), 15 | "KE" => __( "Kavango East", "wemail" ), 16 | "KW" => __( "Kavango West", "wemail" ), 17 | "KH" => __( "Khomas", "wemail" ), 18 | "KU" => __( "Kunene", "wemail" ), 19 | "OD" => __( "Otjozondjupa", "wemail" ), 20 | "OH" => __( "Omaheke", "wemail" ), 21 | "ON" => __( "Oshana", "wemail" ), 22 | "OS" => __( "Omusati", "wemail" ), 23 | "OT" => __( "Oshikoto", "wemail" ), 24 | "OW" => __( "Ohangwena", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/NE.php: -------------------------------------------------------------------------------- 1 | __( "Agadez", "wemail" ), 12 | "2" => __( "Diffa", "wemail" ), 13 | "3" => __( "Dosso", "wemail" ), 14 | "4" => __( "Maradi", "wemail" ), 15 | "5" => __( "Tahoua", "wemail" ), 16 | "6" => __( "Tillabéri", "wemail" ), 17 | "7" => __( "Zinder", "wemail" ), 18 | "8" => __( "Niamey", "wemail" ), 19 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/NI.php: -------------------------------------------------------------------------------- 1 | __( "Atlántico Norte*", "wemail" ), 12 | "AS" => __( "Atlántico Sur*", "wemail" ), 13 | "BO" => __( "Boaco", "wemail" ), 14 | "CA" => __( "Carazo", "wemail" ), 15 | "CI" => __( "Chinandega", "wemail" ), 16 | "CO" => __( "Chontales", "wemail" ), 17 | "ES" => __( "Estelí", "wemail" ), 18 | "GR" => __( "Granada", "wemail" ), 19 | "JI" => __( "Jinotega", "wemail" ), 20 | "LE" => __( "León", "wemail" ), 21 | "MD" => __( "Madriz", "wemail" ), 22 | "MN" => __( "Managua", "wemail" ), 23 | "MS" => __( "Masaya", "wemail" ), 24 | "MT" => __( "Matagalpa", "wemail" ), 25 | "NS" => __( "Nueva Segovia", "wemail" ), 26 | "RI" => __( "Rivas", "wemail" ), 27 | "SJ" => __( "Río San Juan", "wemail" ), 28 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/NL.php: -------------------------------------------------------------------------------- 1 | __( "Drenthe", "wemail" ), 12 | "FL" => __( "Flevoland", "wemail" ), 13 | "FR" => __( "Friesland", "wemail" ), 14 | "GE" => __( "Gelderland", "wemail" ), 15 | "GR" => __( "Groningen", "wemail" ), 16 | "LI" => __( "Limburg", "wemail" ), 17 | "NB" => __( "Noord-Brabant", "wemail" ), 18 | "NH" => __( "Noord-Holland", "wemail" ), 19 | "OV" => __( "Overijssel", "wemail" ), 20 | "UT" => __( "Utrecht", "wemail" ), 21 | "ZE" => __( "Zeeland", "wemail" ), 22 | "ZH" => __( "Zuid-Holland", "wemail" ), 23 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/NO.php: -------------------------------------------------------------------------------- 1 | __( "Østfold", "wemail" ), 12 | "NO-02" => __( "Akershus", "wemail" ), 13 | "NO-03" => __( "Oslo", "wemail" ), 14 | "NO-04" => __( "Hedmark", "wemail" ), 15 | "NO-05" => __( "Oppland", "wemail" ), 16 | "NO-06" => __( "Buskerud", "wemail" ), 17 | "NO-07" => __( "Vestfold", "wemail" ), 18 | "NO-08" => __( "Telemark", "wemail" ), 19 | "NO-09" => __( "Aust-Agder", "wemail" ), 20 | "NO-10" => __( "Vest-Agder", "wemail" ), 21 | "NO-11" => __( "Rogaland", "wemail" ), 22 | "NO-12" => __( "Hordaland", "wemail" ), 23 | "NO-14" => __( "Sogn og Fjordane", "wemail" ), 24 | "NO-15" => __( "Møre og Romsdal", "wemail" ), 25 | "NO-16" => __( "Sør-Trøndelag", "wemail" ), 26 | "NO-17" => __( "Nord-Trøndelag", "wemail" ), 27 | "NO-18" => __( "Nordland", "wemail" ), 28 | "NO-19" => __( "Troms", "wemail" ), 29 | "NO-20" => __( "Finnmark", "wemail" ), 30 | "NO-21" => __( "Svalbard (Arctic Region) (See also country code SJ)", "wemail" ), 31 | "NO-22" => __( "Jan Mayen (Arctic Region) (See also country code SJ)", "wemail" ), 32 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/NP.php: -------------------------------------------------------------------------------- 1 | __( "Bagmati", "wemail" ), 12 | "BH" => __( "Bheri", "wemail" ), 13 | "DH" => __( "Dhawalagiri", "wemail" ), 14 | "GA" => __( "Gandaki", "wemail" ), 15 | "JA" => __( "Janakpur", "wemail" ), 16 | "KA" => __( "Karnali", "wemail" ), 17 | "KO" => __( "Kosi [Koshi]", "wemail" ), 18 | "LU" => __( "Lumbini", "wemail" ), 19 | "MA" => __( "Mahakali", "wemail" ), 20 | "ME" => __( "Mechi", "wemail" ), 21 | "NA" => __( "Narayani", "wemail" ), 22 | "RA" => __( "Rapti", "wemail" ), 23 | "SA" => __( "Sagarmatha", "wemail" ), 24 | "SE" => __( "Seti", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/NR.php: -------------------------------------------------------------------------------- 1 | __( "Aiwo", "wemail" ), 12 | "02" => __( "Anabar", "wemail" ), 13 | "03" => __( "Anetan", "wemail" ), 14 | "04" => __( "Anibare", "wemail" ), 15 | "05" => __( "Baiti", "wemail" ), 16 | "06" => __( "Boe", "wemail" ), 17 | "07" => __( "Buada", "wemail" ), 18 | "08" => __( "Denigomodu", "wemail" ), 19 | "09" => __( "Ewa", "wemail" ), 20 | "10" => __( "Ijuw", "wemail" ), 21 | "11" => __( "Meneng", "wemail" ), 22 | "12" => __( "Nibok", "wemail" ), 23 | "13" => __( "Uaboe", "wemail" ), 24 | "14" => __( "Yaren", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/NZ.php: -------------------------------------------------------------------------------- 1 | __( "Auckland", "wemail" ), 12 | "BOP" => __( "Bay of Plenty", "wemail" ), 13 | "CAN" => __( "Canterbury", "wemail" ), 14 | "GIS" => __( "Gisborne", "wemail" ), 15 | "HKB" => __( "Hawke's Bay", "wemail" ), 16 | "MBH" => __( "Marlborough", "wemail" ), 17 | "MWT" => __( "Manawatu-Wanganui", "wemail" ), 18 | "NSN" => __( "Nelson", "wemail" ), 19 | "NTL" => __( "Northland", "wemail" ), 20 | "OTA" => __( "Otago", "wemail" ), 21 | "STL" => __( "Southland", "wemail" ), 22 | "TAS" => __( "Tasman", "wemail" ), 23 | "TKI" => __( "Taranaki", "wemail" ), 24 | "WGN" => __( "Wellington", "wemail" ), 25 | "WKO" => __( "Waikato", "wemail" ), 26 | "WTC" => __( "West Coast", "wemail" ), 27 | "X1~" => __( "Chatham Islands", "wemail" ), 28 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/OM.php: -------------------------------------------------------------------------------- 1 | __( "Al Batinah", "wemail" ), 12 | "DA" => __( "Ad Dakhiliyah", "wemail" ), 13 | "JA" => __( "Dhofar", "wemail" ), 14 | "MA" => __( "Masqat", "wemail" ), 15 | "MU" => __( "Musandam", "wemail" ), 16 | "SH" => __( "Ash Sharqiyah", "wemail" ), 17 | "WU" => __( "Al Wustá", "wemail" ), 18 | "X1~" => __( "Al Buraymi", "wemail" ), 19 | "ZA" => __( "Adh Dhahirah", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/PA.php: -------------------------------------------------------------------------------- 1 | __( "Comarca de San Blas", "wemail" ), 12 | "1" => __( "Bocas del Toro", "wemail" ), 13 | "2" => __( "Coclé", "wemail" ), 14 | "3" => __( "Colón", "wemail" ), 15 | "4" => __( "Chiriquí", "wemail" ), 16 | "5" => __( "Darién", "wemail" ), 17 | "6" => __( "Herrera", "wemail" ), 18 | "7" => __( "Los Santos", "wemail" ), 19 | "8" => __( "Panamá", "wemail" ), 20 | "9" => __( "Veraguas", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/PE.php: -------------------------------------------------------------------------------- 1 | __( "Amazonas", "wemail" ), 12 | "ANC" => __( "Ancash", "wemail" ), 13 | "APU" => __( "Apurímac", "wemail" ), 14 | "ARE" => __( "Arequipa", "wemail" ), 15 | "AYA" => __( "Ayacucho", "wemail" ), 16 | "CAJ" => __( "Cajamarca", "wemail" ), 17 | "CAL" => __( "El Callao", "wemail" ), 18 | "CUS" => __( "Cuzco [Cusco]", "wemail" ), 19 | "HUC" => __( "Huánuco", "wemail" ), 20 | "HUV" => __( "Huancavelica", "wemail" ), 21 | "ICA" => __( "Ica", "wemail" ), 22 | "JUN" => __( "Junín", "wemail" ), 23 | "LAL" => __( "La Libertad", "wemail" ), 24 | "LAM" => __( "Lambayeque", "wemail" ), 25 | "LIM" => __( "Lima", "wemail" ), 26 | "LOR" => __( "Loreto", "wemail" ), 27 | "MDD" => __( "Madre de Dios", "wemail" ), 28 | "MOQ" => __( "Moquegua", "wemail" ), 29 | "PAS" => __( "Pasco", "wemail" ), 30 | "PIU" => __( "Piura", "wemail" ), 31 | "PUN" => __( "Puno", "wemail" ), 32 | "SAM" => __( "San Martín", "wemail" ), 33 | "TAC" => __( "Tacna", "wemail" ), 34 | "TUM" => __( "Tumbes", "wemail" ), 35 | "UCA" => __( "Ucayali", "wemail" ), 36 | "X1~" => __( "Lima Metropolitana", "wemail" ), 37 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/PG.php: -------------------------------------------------------------------------------- 1 | __( "Chimbu", "wemail" ), 12 | "CPM" => __( "Central", "wemail" ), 13 | "EBR" => __( "East New Britain", "wemail" ), 14 | "EHG" => __( "Eastern Highlands", "wemail" ), 15 | "EPW" => __( "Enga", "wemail" ), 16 | "ESW" => __( "East Sepik", "wemail" ), 17 | "GPK" => __( "Gulf", "wemail" ), 18 | "MBA" => __( "Milne Bay", "wemail" ), 19 | "MPL" => __( "Morobe", "wemail" ), 20 | "MPM" => __( "Madang", "wemail" ), 21 | "MRL" => __( "Manus", "wemail" ), 22 | "NCD" => __( "National Capital District (Port Moresby)", "wemail" ), 23 | "NIK" => __( "New Ireland", "wemail" ), 24 | "NPP" => __( "Northern", "wemail" ), 25 | "NSA" => __( "North Solomons", "wemail" ), 26 | "SAN" => __( "Sandaun [West Sepik]", "wemail" ), 27 | "SHM" => __( "Southern Highlands", "wemail" ), 28 | "WBK" => __( "West New Britain", "wemail" ), 29 | "WHM" => __( "Western Highlands", "wemail" ), 30 | "WPD" => __( "Western", "wemail" ), 31 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/PK.php: -------------------------------------------------------------------------------- 1 | __( "Baluchistan (en)", "wemail" ), 12 | "IS" => __( "Islamabad", "wemail" ), 13 | "JK" => __( "Azad Kashmir", "wemail" ), 14 | "NA" => __( "Northern Areas", "wemail" ), 15 | "NW" => __( "North-West Frontier", "wemail" ), 16 | "PB" => __( "Punjab", "wemail" ), 17 | "SD" => __( "Sind (en)", "wemail" ), 18 | "TA" => __( "Federally Administered Tribal Areas", "wemail" ), 19 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/PL.php: -------------------------------------------------------------------------------- 1 | __( "Dolnośląskie", "wemail" ), 12 | "KP" => __( "Kujawsko-pomorskie", "wemail" ), 13 | "LU" => __( "Lubelskie", "wemail" ), 14 | "LB" => __( "Lubuskie", "wemail" ), 15 | "LD" => __( "Łódzkie", "wemail" ), 16 | "MA" => __( "Małopolskie", "wemail" ), 17 | "MZ" => __( "Mazowieckie", "wemail" ), 18 | "OP" => __( "Opolskie", "wemail" ), 19 | "PK" => __( "Podkarpackie", "wemail" ), 20 | "PD" => __( "Podlaskie", "wemail" ), 21 | "PM" => __( "Pomorskie", "wemail" ), 22 | "SL" => __( "Śląskie", "wemail" ), 23 | "SK" => __( "Świętokrzyskie", "wemail" ), 24 | "WN" => __( "Warmińsko-mazurskie", "wemail" ), 25 | "WP" => __( "Wielkopolskie", "wemail" ), 26 | "ZP" => __( "Zachodniopomorskie", "wemail" ), 27 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/PT.php: -------------------------------------------------------------------------------- 1 | __( "Aveiro", "wemail" ), 12 | "02" => __( "Beja", "wemail" ), 13 | "03" => __( "Braga", "wemail" ), 14 | "04" => __( "Bragança", "wemail" ), 15 | "05" => __( "Castelo Branco", "wemail" ), 16 | "06" => __( "Coimbra", "wemail" ), 17 | "07" => __( "Évora", "wemail" ), 18 | "08" => __( "Faro", "wemail" ), 19 | "09" => __( "Guarda", "wemail" ), 20 | "10" => __( "Leiria", "wemail" ), 21 | "11" => __( "Lisboa", "wemail" ), 22 | "12" => __( "Portalegre", "wemail" ), 23 | "13" => __( "Porto", "wemail" ), 24 | "14" => __( "Santarém", "wemail" ), 25 | "15" => __( "Setúbal", "wemail" ), 26 | "16" => __( "Viana do Castelo", "wemail" ), 27 | "17" => __( "Vila Real", "wemail" ), 28 | "18" => __( "Viseu", "wemail" ), 29 | "20" => __( "Açores", "wemail" ), 30 | "30" => __( "Madeira", "wemail" ), 31 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/PW.php: -------------------------------------------------------------------------------- 1 | __( "Aimeliik", "wemail" ), 12 | "004" => __( "Airai", "wemail" ), 13 | "010" => __( "Angaur", "wemail" ), 14 | "050" => __( "Hatobohei", "wemail" ), 15 | "100" => __( "Kayangel", "wemail" ), 16 | "150" => __( "Koror", "wemail" ), 17 | "212" => __( "Melekeok", "wemail" ), 18 | "214" => __( "Ngaraard", "wemail" ), 19 | "218" => __( "Ngarchelong", "wemail" ), 20 | "222" => __( "Ngardmau", "wemail" ), 21 | "224" => __( "Ngatpang", "wemail" ), 22 | "226" => __( "Ngchesar", "wemail" ), 23 | "227" => __( "Ngeremlengui", "wemail" ), 24 | "228" => __( "Ngiwal", "wemail" ), 25 | "350" => __( "Peleliu", "wemail" ), 26 | "370" => __( "Sonsorol", "wemail" ), 27 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/PY.php: -------------------------------------------------------------------------------- 1 | __( "Concepción", "wemail" ), 12 | "10" => __( "Alto Paraná", "wemail" ), 13 | "11" => __( "Central", "wemail" ), 14 | "12" => __( "Ñeembucú", "wemail" ), 15 | "13" => __( "Amambay", "wemail" ), 16 | "14" => __( "Canindeyú", "wemail" ), 17 | "15" => __( "Presidente Hayes", "wemail" ), 18 | "16" => __( "Alto Paraguay", "wemail" ), 19 | "19" => __( "Boquerón", "wemail" ), 20 | "2" => __( "San Pedro", "wemail" ), 21 | "3" => __( "Cordillera", "wemail" ), 22 | "4" => __( "Guairá", "wemail" ), 23 | "5" => __( "Caaguazú", "wemail" ), 24 | "6" => __( "Caazapá", "wemail" ), 25 | "7" => __( "Itapúa", "wemail" ), 26 | "8" => __( "Misiones", "wemail" ), 27 | "9" => __( "Paraguarí", "wemail" ), 28 | "ASU" => __( "Asunción", "wemail" ), 29 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/QA.php: -------------------------------------------------------------------------------- 1 | __( "Ad Dawhah", "wemail" ), 12 | "GH" => __( "Al Ghuwayriyah", "wemail" ), 13 | "JB" => __( "Jariyan al Batnah", "wemail" ), 14 | "JU" => __( "Al Jumayliyah", "wemail" ), 15 | "KH" => __( "Al Khawr", "wemail" ), 16 | "MS" => __( "Madinat ash Shamal", "wemail" ), 17 | "RA" => __( "Ar Rayyan", "wemail" ), 18 | "US" => __( "Umm Salal", "wemail" ), 19 | "WA" => __( "Al Wakrah", "wemail" ), 20 | "X1~" => __( "Umm Sa'id", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/RS.php: -------------------------------------------------------------------------------- 1 | __( "Belgrade", "wemail" ), 12 | "01" => __( "Severna Backa", "wemail" ), 13 | "02" => __( "Srednji Banat", "wemail" ), 14 | "03" => __( "Severni Banat", "wemail" ), 15 | "04" => __( "Južni Banat", "wemail" ), 16 | "05" => __( "Zapadna Backa", "wemail" ), 17 | "06" => __( "Južna Backa", "wemail" ), 18 | "07" => __( "Srem", "wemail" ), 19 | "08" => __( "Macva", "wemail" ), 20 | "09" => __( "Kolubara", "wemail" ), 21 | "10" => __( "Podunavlje", "wemail" ), 22 | "11" => __( "Branicevo", "wemail" ), 23 | "12" => __( "Šumadija", "wemail" ), 24 | "13" => __( "Pomoravlje", "wemail" ), 25 | "14" => __( "Bor", "wemail" ), 26 | "15" => __( "Zajecar", "wemail" ), 27 | "16" => __( "Zlatibor", "wemail" ), 28 | "17" => __( "Moravica", "wemail" ), 29 | "18" => __( "Raška", "wemail" ), 30 | "19" => __( "Rasina", "wemail" ), 31 | "20" => __( "Nišava", "wemail" ), 32 | "21" => __( "Toplica", "wemail" ), 33 | "22" => __( "Pirot", "wemail" ), 34 | "23" => __( "Jablanica", "wemail" ), 35 | "24" => __( "Pcinja", "wemail" ), 36 | "25" => __( "Kosovo", "wemail" ), 37 | "26" => __( "Pec´", "wemail" ), 38 | "27" => __( "Prizren", "wemail" ), 39 | "28" => __( "Kosovska Mitrovica", "wemail" ), 40 | "29" => __( "Kosovo-Pomoravlje", "wemail" ), 41 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/RW.php: -------------------------------------------------------------------------------- 1 | __( "Ville de Kigali", "wemail" ), 12 | "02" => __( "Est", "wemail" ), 13 | "03" => __( "Nord", "wemail" ), 14 | "04" => __( "Ouest", "wemail" ), 15 | "05" => __( "Sud", "wemail" ), 16 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SA.php: -------------------------------------------------------------------------------- 1 | __( "Ar Riya?", "wemail" ), 12 | "02" => __( "Makkah", "wemail" ), 13 | "03" => __( "Al Madinah", "wemail" ), 14 | "04" => __( "Ash Sharqiyah", "wemail" ), 15 | "05" => __( "Al Qasim", "wemail" ), 16 | "06" => __( "?a'il", "wemail" ), 17 | "07" => __( "Tabuk", "wemail" ), 18 | "08" => __( "Al ?udud ash Shamaliyah", "wemail" ), 19 | "09" => __( "Jizan", "wemail" ), 20 | "10" => __( "Najran", "wemail" ), 21 | "11" => __( "Al Ba?ah", "wemail" ), 22 | "12" => __( "Al Jawf", "wemail" ), 23 | "14" => __( "?Asir", "wemail" ), 24 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SB.php: -------------------------------------------------------------------------------- 1 | __( "Central", "wemail" ), 12 | "CH" => __( "Choiseul", "wemail" ), 13 | "CT" => __( "Capital Territory (Honiara)", "wemail" ), 14 | "GU" => __( "Guadalcanal", "wemail" ), 15 | "IS" => __( "Isabel", "wemail" ), 16 | "MK" => __( "Makira", "wemail" ), 17 | "ML" => __( "Malaita", "wemail" ), 18 | "RB" => __( "Rennell and Bellona", "wemail" ), 19 | "TE" => __( "Temotu", "wemail" ), 20 | "WE" => __( "Western", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SC.php: -------------------------------------------------------------------------------- 1 | __( "Anse aux Pins", "wemail" ), 12 | "02" => __( "Anse Boileau", "wemail" ), 13 | "03" => __( "Anse Étoile", "wemail" ), 14 | "04" => __( "Anse Louis", "wemail" ), 15 | "05" => __( "Anse Royale", "wemail" ), 16 | "06" => __( "Baie Lazare", "wemail" ), 17 | "07" => __( "Baie Sainte Anne", "wemail" ), 18 | "08" => __( "Beau Vallon", "wemail" ), 19 | "09" => __( "Bel Air", "wemail" ), 20 | "10" => __( "Bel Ombre", "wemail" ), 21 | "11" => __( "Cascade", "wemail" ), 22 | "12" => __( "Glacis", "wemail" ), 23 | "13" => __( "Grand' Anse (Mahé)", "wemail" ), 24 | "14" => __( "Grand' Anse (Praslin)", "wemail" ), 25 | "15" => __( "La Digue", "wemail" ), 26 | "16" => __( "La Rivière Anglaise", "wemail" ), 27 | "17" => __( "Mont Buxton", "wemail" ), 28 | "18" => __( "Mont Fleuri", "wemail" ), 29 | "19" => __( "Plaisance", "wemail" ), 30 | "20" => __( "Pointe La Rue", "wemail" ), 31 | "21" => __( "Port Glaud", "wemail" ), 32 | "22" => __( "Saint Louis", "wemail" ), 33 | "23" => __( "Takamaka", "wemail" ), 34 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SD.php: -------------------------------------------------------------------------------- 1 | __( "Ash Shamaliyah", "wemail" ), 12 | "02" => __( "Shamal Darfur", "wemail" ), 13 | "03" => __( "Al Khartum", "wemail" ), 14 | "04" => __( "An Nil", "wemail" ), 15 | "05" => __( "Kassala", "wemail" ), 16 | "06" => __( "Al Qa?arif", "wemail" ), 17 | "07" => __( "Al Jazirah", "wemail" ), 18 | "08" => __( "An Nil al Abya?", "wemail" ), 19 | "09" => __( "Shamal Kurdufan", "wemail" ), 20 | "10" => __( "Gharb Kurdufan", "wemail" ), 21 | "11" => __( "Janub Darfur", "wemail" ), 22 | "12" => __( "Gharb Darfur", "wemail" ), 23 | "13" => __( "Janub Kurdufan", "wemail" ), 24 | "14" => __( "Gharb Ba?r al Ghazal", "wemail" ), 25 | "15" => __( "Shamal Ba?r al Ghazal", "wemail" ), 26 | "16" => __( "Gharb al Istiwa'iyah", "wemail" ), 27 | "17" => __( "Ba?r al Jabal", "wemail" ), 28 | "18" => __( "Al Bu?ayrat", "wemail" ), 29 | "19" => __( "Sharq al Istiwa'iyah", "wemail" ), 30 | "20" => __( "Junqali", "wemail" ), 31 | "21" => __( "Warab", "wemail" ), 32 | "22" => __( "Al Wa?dah", "wemail" ), 33 | "23" => __( "A?ali an Nil", "wemail" ), 34 | "24" => __( "An Nil al Azraq", "wemail" ), 35 | "25" => __( "Sinnar", "wemail" ), 36 | "26" => __( "Al Ba?r al A?mar", "wemail" ), 37 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SE.php: -------------------------------------------------------------------------------- 1 | __( "Stockholms län", "wemail" ), 12 | "AC" => __( "Västerbottens län", "wemail" ), 13 | "BD" => __( "Norrbottens län", "wemail" ), 14 | "C" => __( "Uppsala län", "wemail" ), 15 | "D" => __( "Södermanlands län", "wemail" ), 16 | "E" => __( "Östergötlands län", "wemail" ), 17 | "F" => __( "Jönköpings län", "wemail" ), 18 | "G" => __( "Kronobergs län", "wemail" ), 19 | "H" => __( "Kalmar län", "wemail" ), 20 | "I" => __( "Gotlands län", "wemail" ), 21 | "K" => __( "Blekinge län", "wemail" ), 22 | "M" => __( "Skåne län", "wemail" ), 23 | "N" => __( "Hallands län", "wemail" ), 24 | "O" => __( "Västra Götalands län", "wemail" ), 25 | "S" => __( "Värmlands län", "wemail" ), 26 | "T" => __( "Örebro län", "wemail" ), 27 | "U" => __( "Västmanlands län", "wemail" ), 28 | "W" => __( "Dalarnas län", "wemail" ), 29 | "X" => __( "Gävleborgs län", "wemail" ), 30 | "Y" => __( "Västernorrlands län", "wemail" ), 31 | "Z" => __( "Jämtlands län", "wemail" ), 32 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SG.php: -------------------------------------------------------------------------------- 1 | __( "Central Singapore", "wemail" ), 12 | "SG-02" => __( "North East", "wemail" ), 13 | "SG-03" => __( "North West", "wemail" ), 14 | "SG-04" => __( "South East", "wemail" ), 15 | "SG-05" => __( "South West", "wemail" ), 16 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SH.php: -------------------------------------------------------------------------------- 1 | __( "Ascension", "wemail" ), 12 | "SH" => __( "Saint Helena", "wemail" ), 13 | "TA" => __( "Tristan da Cunha", "wemail" ), 14 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SK.php: -------------------------------------------------------------------------------- 1 | __( "Banskobystrický kraj", "wemail" ), 12 | "BL" => __( "Bratislavský kraj", "wemail" ), 13 | "KI" => __( "Košický kraj", "wemail" ), 14 | "NI" => __( "Nitriansky kraj", "wemail" ), 15 | "PV" => __( "Prešovský kraj", "wemail" ), 16 | "TA" => __( "Trnavský kraj", "wemail" ), 17 | "TC" => __( "Trenciansky kraj", "wemail" ), 18 | "ZI" => __( "Žilinský kraj", "wemail" ), 19 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SL.php: -------------------------------------------------------------------------------- 1 | __( "Eastern", "wemail" ), 12 | "N" => __( "Northern", "wemail" ), 13 | "S" => __( "Southern", "wemail" ), 14 | "W" => __( "Western Area (Freetown)", "wemail" ), 15 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SM.php: -------------------------------------------------------------------------------- 1 | __( "Acquaviva", "wemail" ), 12 | "02" => __( "Chiesanuova", "wemail" ), 13 | "03" => __( "Domagnano", "wemail" ), 14 | "04" => __( "Faetano", "wemail" ), 15 | "05" => __( "Fiorentino", "wemail" ), 16 | "06" => __( "Borgo Maggiore", "wemail" ), 17 | "07" => __( "San Marino", "wemail" ), 18 | "08" => __( "Montegiardino", "wemail" ), 19 | "09" => __( "Serravalle", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SN.php: -------------------------------------------------------------------------------- 1 | __( "Diourbel", "wemail" ), 12 | "DK" => __( "Dakar", "wemail" ), 13 | "FK" => __( "Fatick", "wemail" ), 14 | "KD" => __( "Kolda", "wemail" ), 15 | "KL" => __( "Kaolack", "wemail" ), 16 | "LG" => __( "Louga", "wemail" ), 17 | "MT" => __( "Matam", "wemail" ), 18 | "SL" => __( "Saint-Louis", "wemail" ), 19 | "TC" => __( "Tambacounda", "wemail" ), 20 | "TH" => __( "Thiès", "wemail" ), 21 | "ZG" => __( "Ziguinchor", "wemail" ), 22 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SO.php: -------------------------------------------------------------------------------- 1 | __( "Awdal", "wemail" ), 12 | "BK" => __( "Bakool", "wemail" ), 13 | "BN" => __( "Banaadir", "wemail" ), 14 | "BR" => __( "Bari", "wemail" ), 15 | "BY" => __( "Bay", "wemail" ), 16 | "GA" => __( "Galguduud", "wemail" ), 17 | "GE" => __( "Gedo", "wemail" ), 18 | "HI" => __( "Hiiraan", "wemail" ), 19 | "JD" => __( "Jubbada Dhexe", "wemail" ), 20 | "JH" => __( "Jubbada Hoose", "wemail" ), 21 | "MU" => __( "Mudug", "wemail" ), 22 | "NU" => __( "Nugaal", "wemail" ), 23 | "SA" => __( "Sanaag", "wemail" ), 24 | "SD" => __( "Shabeellaha Dhexe", "wemail" ), 25 | "SH" => __( "Shabeellaha Hoose", "wemail" ), 26 | "SO" => __( "Sool", "wemail" ), 27 | "TO" => __( "Togdheer", "wemail" ), 28 | "WO" => __( "Woqooyi Galbeed", "wemail" ), 29 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SR.php: -------------------------------------------------------------------------------- 1 | __( "Brokopondo", "wemail" ), 12 | "CM" => __( "Commewijne", "wemail" ), 13 | "CR" => __( "Coronie", "wemail" ), 14 | "MA" => __( "Marowijne", "wemail" ), 15 | "NI" => __( "Nickerie", "wemail" ), 16 | "PM" => __( "Paramaribo", "wemail" ), 17 | "PR" => __( "Para", "wemail" ), 18 | "SA" => __( "Saramacca", "wemail" ), 19 | "SI" => __( "Sipaliwini", "wemail" ), 20 | "WA" => __( "Wanica", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/ST.php: -------------------------------------------------------------------------------- 1 | __( "Príncipe", "wemail" ), 12 | "S" => __( "São Tomé", "wemail" ), 13 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SV.php: -------------------------------------------------------------------------------- 1 | __( "Ahuachapán", "wemail" ), 12 | "CA" => __( "Cabañas", "wemail" ), 13 | "CH" => __( "Chalatenango", "wemail" ), 14 | "CU" => __( "Cuscatlán", "wemail" ), 15 | "LI" => __( "La Libertad", "wemail" ), 16 | "MO" => __( "Morazán", "wemail" ), 17 | "PA" => __( "La Paz", "wemail" ), 18 | "SA" => __( "Santa Ana", "wemail" ), 19 | "SM" => __( "San Miguel", "wemail" ), 20 | "SO" => __( "Sonsonate", "wemail" ), 21 | "SS" => __( "San Salvador", "wemail" ), 22 | "SV" => __( "San Vicente", "wemail" ), 23 | "UN" => __( "La Unión", "wemail" ), 24 | "US" => __( "Usulután", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SY.php: -------------------------------------------------------------------------------- 1 | __( "Dimashq", "wemail" ), 12 | "DR" => __( "Dar?a", "wemail" ), 13 | "DY" => __( "Dayr az Zawr", "wemail" ), 14 | "HA" => __( "Al ?asakah", "wemail" ), 15 | "HI" => __( "?ims", "wemail" ), 16 | "HL" => __( "?alab", "wemail" ), 17 | "HM" => __( "?amah", "wemail" ), 18 | "ID" => __( "Idlib", "wemail" ), 19 | "LA" => __( "Al Ladhiqiyah", "wemail" ), 20 | "QU" => __( "Al Qunaytirah", "wemail" ), 21 | "RA" => __( "Ar Raqqah", "wemail" ), 22 | "RD" => __( "Rif Dimashq", "wemail" ), 23 | "SU" => __( "As Suwayda'", "wemail" ), 24 | "TA" => __( "Tartus", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/SZ.php: -------------------------------------------------------------------------------- 1 | __( "Hhohho", "wemail" ), 12 | "LU" => __( "Lubombo", "wemail" ), 13 | "MA" => __( "Manzini", "wemail" ), 14 | "SH" => __( "Shiselweni", "wemail" ), 15 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TD.php: -------------------------------------------------------------------------------- 1 | __( "Batha", "wemail" ), 12 | "BET" => __( "Borkou-Ennedi-Tibesti", "wemail" ), 13 | "CB" => __( "Chari-Baguirmi", "wemail" ), 14 | "GR" => __( "Guéra", "wemail" ), 15 | "HL" => __( "Hadjer Lamis", "wemail" ), 16 | "KA" => __( "Kanem", "wemail" ), 17 | "LC" => __( "Lac", "wemail" ), 18 | "LO" => __( "Logone-Occidental", "wemail" ), 19 | "LR" => __( "Logone-Oriental", "wemail" ), 20 | "MA" => __( "Mandoul", "wemail" ), 21 | "MC" => __( "Moyen-Chari", "wemail" ), 22 | "ME" => __( "Mayo-Kébbi-Est", "wemail" ), 23 | "MO" => __( "Mayo-Kébbi-Ouest", "wemail" ), 24 | "ND" => __( "Ndjamena", "wemail" ), 25 | "OD" => __( "Ouaddaï", "wemail" ), 26 | "SA" => __( "Salamat", "wemail" ), 27 | "TA" => __( "Tandjilé", "wemail" ), 28 | "WF" => __( "Wadi Fira", "wemail" ), 29 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TF.php: -------------------------------------------------------------------------------- 1 | __( "Ile Saint-Paul et Ile Amsterdam", "wemail" ), 12 | "X2~" => __( "Crozet Islands", "wemail" ), 13 | "X3~" => __( "Kerguelen", "wemail" ), 14 | "X4~" => __( "Iles Eparses", "wemail" ), 15 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TG.php: -------------------------------------------------------------------------------- 1 | __( "Centre", "wemail" ), 12 | "K" => __( "Kara", "wemail" ), 13 | "M" => __( "Maritime (Région)", "wemail" ), 14 | "P" => __( "Plateaux", "wemail" ), 15 | "S" => __( "Savannes", "wemail" ), 16 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TJ.php: -------------------------------------------------------------------------------- 1 | __( "Gorno-Badakhshan", "wemail" ), 12 | "KT" => __( "Khatlon", "wemail" ), 13 | "SU" => __( "Sughd", "wemail" ), 14 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TL.php: -------------------------------------------------------------------------------- 1 | __( "Aileu", "wemail" ), 12 | "AN" => __( "Ainaro", "wemail" ), 13 | "BA" => __( "Baucau", "wemail" ), 14 | "BO" => __( "Bobonaro", "wemail" ), 15 | "CO" => __( "Cova Lima", "wemail" ), 16 | "DI" => __( "Dili", "wemail" ), 17 | "ER" => __( "Ermera", "wemail" ), 18 | "LA" => __( "Lautem", "wemail" ), 19 | "LI" => __( "Liquiça", "wemail" ), 20 | "MF" => __( "Manufahi", "wemail" ), 21 | "MT" => __( "Manatuto", "wemail" ), 22 | "OE" => __( "Oecussi", "wemail" ), 23 | "VI" => __( "Viqueque", "wemail" ), 24 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TM.php: -------------------------------------------------------------------------------- 1 | __( "Ahal", "wemail" ), 12 | "B" => __( "Balkan", "wemail" ), 13 | "D" => __( "Dasoguz", "wemail" ), 14 | "L" => __( "Lebap", "wemail" ), 15 | "M" => __( "Mary", "wemail" ), 16 | "X~" => __( "", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TN.php: -------------------------------------------------------------------------------- 1 | __( "Tunis", "wemail" ), 12 | "12" => __( "L'Ariana", "wemail" ), 13 | "13" => __( "Ben Arous", "wemail" ), 14 | "14" => __( "La Manouba", "wemail" ), 15 | "21" => __( "Nabeul", "wemail" ), 16 | "22" => __( "Zaghouan", "wemail" ), 17 | "23" => __( "Bizerte", "wemail" ), 18 | "31" => __( "Béja", "wemail" ), 19 | "32" => __( "Jendouba", "wemail" ), 20 | "33" => __( "Le Kef", "wemail" ), 21 | "34" => __( "Siliana", "wemail" ), 22 | "41" => __( "Kairouan", "wemail" ), 23 | "42" => __( "Kasserine", "wemail" ), 24 | "43" => __( "Sidi Bouzid", "wemail" ), 25 | "51" => __( "Sousse", "wemail" ), 26 | "52" => __( "Monastir", "wemail" ), 27 | "53" => __( "Mahdia", "wemail" ), 28 | "61" => __( "Sfax", "wemail" ), 29 | "71" => __( "Gafsa", "wemail" ), 30 | "72" => __( "Tozeur", "wemail" ), 31 | "73" => __( "Kebili", "wemail" ), 32 | "81" => __( "Gabès", "wemail" ), 33 | "82" => __( "Medenine", "wemail" ), 34 | "83" => __( "Tataouine", "wemail" ), 35 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TO.php: -------------------------------------------------------------------------------- 1 | __( "'Eua", "wemail" ), 12 | "02" => __( "Ha'apai", "wemail" ), 13 | "03" => __( "Niuas", "wemail" ), 14 | "04" => __( "Tongatapu", "wemail" ), 15 | "05" => __( "Vava'u", "wemail" ), 16 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TT.php: -------------------------------------------------------------------------------- 1 | __( "Arima", "wemail" ), 12 | "CHA" => __( "Chaguanas", "wemail" ), 13 | "CTT" => __( "Couva-Tabaquite-Talparo", "wemail" ), 14 | "DMN" => __( "Diego Martin", "wemail" ), 15 | "ETO" => __( "Eastern Tobago", "wemail" ), 16 | "PED" => __( "Penal-Debe", "wemail" ), 17 | "POS" => __( "Port of Spain", "wemail" ), 18 | "PRT" => __( "Princes Town", "wemail" ), 19 | "PTF" => __( "Point Fortin", "wemail" ), 20 | "RCM" => __( "Rio Claro-Mayaro", "wemail" ), 21 | "SFO" => __( "San Fernando", "wemail" ), 22 | "SGE" => __( "Sangre Grande", "wemail" ), 23 | "SIP" => __( "Siparia", "wemail" ), 24 | "SJL" => __( "San Juan-Laventille", "wemail" ), 25 | "TUP" => __( "Tunapuna-Piarco", "wemail" ), 26 | "WTO" => __( "Western Tobago", "wemail" ), 27 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TV.php: -------------------------------------------------------------------------------- 1 | __( "Funafuti", "wemail" ), 12 | "NIT" => __( "Niutao", "wemail" ), 13 | "NIU" => __( "Nui", "wemail" ), 14 | "NKF" => __( "Nukufetau", "wemail" ), 15 | "NKL" => __( "Nukulaelae", "wemail" ), 16 | "NMA" => __( "Nanumea", "wemail" ), 17 | "NMG" => __( "Nanumanga", "wemail" ), 18 | "VAI" => __( "Vaitupu", "wemail" ), 19 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TW.php: -------------------------------------------------------------------------------- 1 | __( "Changhua", "wemail" ), 12 | "CYI" => __( "Chiayi Municipality", "wemail" ), 13 | "CYQ" => __( "Chiayi", "wemail" ), 14 | "HSQ" => __( "Hsinchu", "wemail" ), 15 | "HSZ" => __( "Hsinchu Municipality", "wemail" ), 16 | "HUA" => __( "Hualien", "wemail" ), 17 | "ILA" => __( "Ilan", "wemail" ), 18 | "KEE" => __( "Keelung Municipality", "wemail" ), 19 | "KHH" => __( "Kaohsiung Special Municipality", "wemail" ), 20 | "KHQ" => __( "Kaohsiung", "wemail" ), 21 | "MIA" => __( "Miaoli", "wemail" ), 22 | "NAN" => __( "Nantou", "wemail" ), 23 | "PEN" => __( "Penghu", "wemail" ), 24 | "PIF" => __( "Pingtung", "wemail" ), 25 | "TAO" => __( "Taoyuan", "wemail" ), 26 | "TNN" => __( "Tainan Municipality", "wemail" ), 27 | "TNQ" => __( "Tainan", "wemail" ), 28 | "TPE" => __( "Taipei Special Municipality", "wemail" ), 29 | "TPQ" => __( "Taipei", "wemail" ), 30 | "TTT" => __( "Taitung", "wemail" ), 31 | "TXG" => __( "Taichung Municipality", "wemail" ), 32 | "TXQ" => __( "Taichung", "wemail" ), 33 | "YUN" => __( "Yunlin", "wemail" ), 34 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/TZ.php: -------------------------------------------------------------------------------- 1 | __( "Arusha", "wemail" ), 12 | "02" => __( "Dar es Salaam", "wemail" ), 13 | "03" => __( "Dodoma", "wemail" ), 14 | "04" => __( "Iringa", "wemail" ), 15 | "05" => __( "Kagera", "wemail" ), 16 | "06" => __( "Kaskazini Pemba", "wemail" ), 17 | "07" => __( "Kaskazini Unguja", "wemail" ), 18 | "08" => __( "Kigoma", "wemail" ), 19 | "09" => __( "Kilimanjaro", "wemail" ), 20 | "10" => __( "Kusini Pemba", "wemail" ), 21 | "11" => __( "Kusini Unguja", "wemail" ), 22 | "12" => __( "Lindi", "wemail" ), 23 | "13" => __( "Mara", "wemail" ), 24 | "14" => __( "Mbeya", "wemail" ), 25 | "15" => __( "Mjini Magharibi", "wemail" ), 26 | "16" => __( "Morogoro", "wemail" ), 27 | "17" => __( "Mtwara", "wemail" ), 28 | "18" => __( "Mwanza", "wemail" ), 29 | "19" => __( "Pwani", "wemail" ), 30 | "20" => __( "Rukwa", "wemail" ), 31 | "21" => __( "Ruvuma", "wemail" ), 32 | "22" => __( "Shinyanga", "wemail" ), 33 | "23" => __( "Singida", "wemail" ), 34 | "24" => __( "Tabora", "wemail" ), 35 | "25" => __( "Tanga", "wemail" ), 36 | "26" => __( "Manyara", "wemail" ), 37 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/UA.php: -------------------------------------------------------------------------------- 1 | __( "Vinnyts'ka Oblast'", "wemail" ), 12 | "07" => __( "Volyns'ka Oblast'", "wemail" ), 13 | "09" => __( "Luhans'ka Oblast'", "wemail" ), 14 | "12" => __( "Dnipropetrovs'ka Oblast'", "wemail" ), 15 | "14" => __( "Donets'ka Oblast'", "wemail" ), 16 | "18" => __( "Zhytomyrs'ka Oblast'", "wemail" ), 17 | "21" => __( "Zakarpats'ka Oblast'", "wemail" ), 18 | "23" => __( "Zaporiz'ka Oblast'", "wemail" ), 19 | "26" => __( "Ivano-Frankivs'ka Oblast'", "wemail" ), 20 | "30" => __( "Kyïv", "wemail" ), 21 | "32" => __( "Kyïvs'ka Oblast'", "wemail" ), 22 | "35" => __( "Kirovohrads'ka Oblast'", "wemail" ), 23 | "40" => __( "Sevastopol'", "wemail" ), 24 | "43" => __( "Respublika Krym", "wemail" ), 25 | "46" => __( "L'vivs'ka Oblast'", "wemail" ), 26 | "48" => __( "Mykolaïvs'ka Oblast'", "wemail" ), 27 | "51" => __( "Odes'ka Oblast'", "wemail" ), 28 | "53" => __( "Poltavs'ka Oblast'", "wemail" ), 29 | "56" => __( "Rivnens'ka Oblast'", "wemail" ), 30 | "59" => __( "Sums'ka Oblast'", "wemail" ), 31 | "61" => __( "Ternopil's'ka Oblast'", "wemail" ), 32 | "63" => __( "Kharkivs'ka Oblast'", "wemail" ), 33 | "65" => __( "Khersons'ka Oblast'", "wemail" ), 34 | "68" => __( "Khmel'nyts'ka Oblast'", "wemail" ), 35 | "71" => __( "Cherkas'ka Oblast'", "wemail" ), 36 | "74" => __( "Chernihivs'ka Oblast'", "wemail" ), 37 | "77" => __( "Chernivets'ka Oblast'", "wemail" ), 38 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/UM.php: -------------------------------------------------------------------------------- 1 | __( "Johnston Atoll", "wemail" ), 12 | "71" => __( "Midway Islands", "wemail" ), 13 | "76" => __( "Navassa Island", "wemail" ), 14 | "79" => __( "Wake Island", "wemail" ), 15 | "81" => __( "Baker Island", "wemail" ), 16 | "84" => __( "Howland Island", "wemail" ), 17 | "86" => __( "Jarvis Island", "wemail" ), 18 | "89" => __( "Kingman Reef", "wemail" ), 19 | "95" => __( "Palmyra Atoll", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/UY.php: -------------------------------------------------------------------------------- 1 | __( "Artigas", "wemail" ), 12 | "CA" => __( "Canelones", "wemail" ), 13 | "CO" => __( "Colonia", "wemail" ), 14 | "CL" => __( "Cerro Lago", "wemail" ), 15 | "DU" => __( "Durazno", "wemail" ), 16 | "FD" => __( "Florida", "wemail" ), 17 | "FS" => __( "Flores", "wemail" ), 18 | "LA" => __( "Lavalleja", "wemail" ), 19 | "MA" => __( "Maldonado", "wemail" ), 20 | "MO" => __( "Montevideo", "wemail" ), 21 | "PA" => __( "Paysandú", "wemail" ), 22 | "RN" => __( "Río Negro", "wemail" ), 23 | "RO" => __( "Rocha", "wemail" ), 24 | "RV" => __( "Rivera", "wemail" ), 25 | "SA" => __( "Salto", "wemail" ), 26 | "SJ" => __( "San José", "wemail" ), 27 | "SO" => __( "Soriano", "wemail" ), 28 | "TA" => __( "Tacuarembó", "wemail" ), 29 | "TT" => __( "Treinta y Tres", "wemail" ), 30 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/UZ.php: -------------------------------------------------------------------------------- 1 | __( "Andijon", "wemail" ), 12 | "BU" => __( "Buxoro", "wemail" ), 13 | "FA" => __( "Farg‘ona", "wemail" ), 14 | "JI" => __( "Jizzax", "wemail" ), 15 | "NG" => __( "Namangan", "wemail" ), 16 | "NW" => __( "Navoiy", "wemail" ), 17 | "QA" => __( "Qashqadaryo", "wemail" ), 18 | "QR" => __( "Qoraqalpog‘iston Respublikasi", "wemail" ), 19 | "SA" => __( "Samarqand", "wemail" ), 20 | "SI" => __( "Sirdaryo", "wemail" ), 21 | "SU" => __( "Surxondaryo", "wemail" ), 22 | "TK" => __( "Toshkent City", "wemail" ), 23 | "TO" => __( "Toshkent", "wemail" ), 24 | "XO" => __( "Xorazm", "wemail" ), 25 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/VC.php: -------------------------------------------------------------------------------- 1 | __( "Charlotte", "wemail" ), 12 | "02" => __( "Saint Andrew", "wemail" ), 13 | "03" => __( "Saint David", "wemail" ), 14 | "04" => __( "Saint George", "wemail" ), 15 | "05" => __( "Saint Patrick", "wemail" ), 16 | "06" => __( "Grenadines", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/VE.php: -------------------------------------------------------------------------------- 1 | __( "Distrito Federal", "wemail" ), 12 | "B" => __( "Anzoátegui", "wemail" ), 13 | "C" => __( "Apure", "wemail" ), 14 | "D" => __( "Aragua", "wemail" ), 15 | "E" => __( "Barinas", "wemail" ), 16 | "F" => __( "Bolívar", "wemail" ), 17 | "G" => __( "Carabobo", "wemail" ), 18 | "H" => __( "Cojedes", "wemail" ), 19 | "I" => __( "Falcón", "wemail" ), 20 | "J" => __( "Guárico", "wemail" ), 21 | "K" => __( "Lara", "wemail" ), 22 | "L" => __( "Mérida", "wemail" ), 23 | "M" => __( "Miranda", "wemail" ), 24 | "N" => __( "Monagas", "wemail" ), 25 | "O" => __( "Nueva Esparta", "wemail" ), 26 | "P" => __( "Portuguesa", "wemail" ), 27 | "R" => __( "Sucre", "wemail" ), 28 | "S" => __( "Táchira", "wemail" ), 29 | "T" => __( "Trujillo", "wemail" ), 30 | "U" => __( "Yaracuy", "wemail" ), 31 | "V" => __( "Zulia", "wemail" ), 32 | "W" => __( "Dependencias Federales", "wemail" ), 33 | "X" => __( "Vargas", "wemail" ), 34 | "Y" => __( "Delta Amacuro", "wemail" ), 35 | "Z" => __( "Amazonas", "wemail" ), 36 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/VU.php: -------------------------------------------------------------------------------- 1 | __( "Malampa", "wemail" ), 12 | "PAM" => __( "Pénama", "wemail" ), 13 | "SAM" => __( "Sanma", "wemail" ), 14 | "SEE" => __( "Shéfa", "wemail" ), 15 | "TAE" => __( "Taféa", "wemail" ), 16 | "TOB" => __( "Torba", "wemail" ), 17 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/WS.php: -------------------------------------------------------------------------------- 1 | __( "A'ana", "wemail" ), 12 | "AL" => __( "Aiga-i-le-Tai", "wemail" ), 13 | "AT" => __( "Atua", "wemail" ), 14 | "FA" => __( "Fa'asaleleaga", "wemail" ), 15 | "GE" => __( "Gaga'emauga", "wemail" ), 16 | "GI" => __( "Gagaifomauga", "wemail" ), 17 | "PA" => __( "Palauli", "wemail" ), 18 | "SA" => __( "Satupa'itea", "wemail" ), 19 | "TU" => __( "Tuamasaga", "wemail" ), 20 | "VF" => __( "Va'a-o-Fonoti", "wemail" ), 21 | "VS" => __( "Vaisigano", "wemail" ), 22 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/YE.php: -------------------------------------------------------------------------------- 1 | __( "Abyan", "wemail" ), 12 | "AD" => __( "ʿAdan", "wemail" ), 13 | "AM" => __( "'Amran", "wemail" ), 14 | "BA" => __( "Al Bay?a'", "wemail" ), 15 | "DA" => __( "Ad¸ D¸ali'", "wemail" ), 16 | "DH" => __( "Dhamar", "wemail" ), 17 | "HD" => __( "Hadramawt", "wemail" ), 18 | "HJ" => __( "Hajjah", "wemail" ), 19 | "HU" => __( "Al ?udaydah", "wemail" ), 20 | "IB" => __( "Ibb", "wemail" ), 21 | "JA" => __( "Al Jawf", "wemail" ), 22 | "LA" => __( "La?ij", "wemail" ), 23 | "MA" => __( "Ma'rib", "wemail" ), 24 | "MR" => __( "Al Mahrah", "wemail" ), 25 | "MW" => __( "Al Mahwit", "wemail" ), 26 | "SD" => __( "Sa`dah", "wemail" ), 27 | "SH" => __( "Shabwah", "wemail" ), 28 | "SN" => __( "Sanʿā", "wemail" ), 29 | "TA" => __( "Taʿizz", "wemail" ), 30 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/ZA.php: -------------------------------------------------------------------------------- 1 | __( "Eastern Cape", "wemail" ), 12 | "FS" => __( "Free State", "wemail" ), 13 | "GT" => __( "Gauteng", "wemail" ), 14 | "LP" => __( "Limpopo", "wemail" ), 15 | "MP" => __( "Mpumalanga", "wemail" ), 16 | "NC" => __( "Northern Cape", "wemail" ), 17 | "NL" => __( "Kwazulu-Natal", "wemail" ), 18 | "NW" => __( "North-West", "wemail" ), 19 | "WC" => __( "Western Cape", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/ZM.php: -------------------------------------------------------------------------------- 1 | __( "Western", "wemail" ), 12 | "02" => __( "Central", "wemail" ), 13 | "03" => __( "Eastern", "wemail" ), 14 | "04" => __( "Luapula", "wemail" ), 15 | "05" => __( "Northern", "wemail" ), 16 | "06" => __( "North-Western", "wemail" ), 17 | "07" => __( "Southern", "wemail" ), 18 | "08" => __( "Copperbelt", "wemail" ), 19 | "09" => __( "Lusaka", "wemail" ), 20 | ]; -------------------------------------------------------------------------------- /i18n/countries/states/ZW.php: -------------------------------------------------------------------------------- 1 | __( "Bulawayo", "wemail" ), 12 | "HA" => __( "Harare", "wemail" ), 13 | "MA" => __( "Manicaland", "wemail" ), 14 | "MC" => __( "Mashonaland Central", "wemail" ), 15 | "ME" => __( "Mashonaland East", "wemail" ), 16 | "MI" => __( "Midlands", "wemail" ), 17 | "MN" => __( "Matabeleland North", "wemail" ), 18 | "MS" => __( "Matabeleland South", "wemail" ), 19 | "MV" => __( "Masvingo", "wemail" ), 20 | "MW" => __( "Mashonaland West", "wemail" ), 21 | ]; -------------------------------------------------------------------------------- /includes/Admin/Admin.php: -------------------------------------------------------------------------------- 1 | add_action( 'admin_init', 'redirect_after_activation', 9999 ); 13 | $this->includes(); 14 | Notice::instance()->connect_notice(); 15 | ReviewNotice::instance()->connect_review_notice(); 16 | } 17 | 18 | private function includes() { 19 | new Scripts(); 20 | new Menu(); 21 | new FormPreview(); 22 | 23 | if ( current_user_can( 'edit_posts' ) && wemail_validate_boolean( get_user_option( 'rich_editing' ) ) ) { 24 | new Shortcode(); 25 | } 26 | } 27 | 28 | public function remove_admin_notice() { 29 | remove_all_actions( 'admin_notices' ); 30 | } 31 | 32 | /** 33 | * Redirect to wemail setup page after plugin installation 34 | * 35 | * If the setup isn't done, it'll be redirected to the wemail page, 36 | * also that redirects to the authentication page. 37 | * 38 | * @return void 39 | */ 40 | public function redirect_after_activation() { 41 | if ( ! get_transient( 'wemail_activation_redirect' ) || wemail()->user->api_key ) { 42 | return; 43 | } 44 | 45 | delete_transient( 'wemail_activation_redirect' ); 46 | 47 | // Only do this for single site installs. 48 | if ( is_network_admin() || isset( $_GET['activate-multi'] ) ) { 49 | return; 50 | } 51 | 52 | wp_safe_redirect( admin_url( 'admin.php?page=wemail' ) ); 53 | exit; 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /includes/Admin/GutenbergBlock.php: -------------------------------------------------------------------------------- 1 | add_action( 'init', 'register' ); 14 | $this->add_action( 'enqueue_block_editor_assets', 'export_forms' ); 15 | } 16 | 17 | public function register() { 18 | $block_meta = require_once WEMAIL_PATH . '/assets/js/block/index.asset.php'; 19 | 20 | wp_register_style( 'wemail-block-style', WEMAIL_ASSETS . '/css/gutenberg.css', array(), WEMAIL_VERSION ); 21 | wp_register_script( 'wemail-block-script', WEMAIL_ASSETS . '/js/block/index.js', $block_meta['dependencies'], $block_meta['version'] ); 22 | 23 | register_block_type( 24 | 'wemail/forms', 25 | array( 26 | 'editor_script' => 'wemail-block-script', 27 | 'editor_style' => 'wemail-block-style', 28 | ) 29 | ); 30 | } 31 | 32 | public function export_forms() { 33 | $forms = wemail()->form->get_forms( 34 | array( 35 | 'type' => array( 'modal', 'inline' ), 36 | 'select' => array( 'id', 'name' ), 37 | ) 38 | ); 39 | 40 | wp_localize_script( 41 | 'wemail-block-script', 42 | 'weMailData', 43 | array( 44 | 'forms' => $forms ? $forms : array(), 45 | 'siteUrl' => get_site_url(), 46 | ) 47 | ); 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /includes/Core/Automation/Menu.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 28 | } 29 | 30 | /** 31 | * Register submenu 32 | * 33 | * @since 1.0.0 34 | * 35 | * @param array $menu_items 36 | * @param string $capability 37 | * 38 | * @return array 39 | */ 40 | public function register_submenu( $menu_items, $capability ) { 41 | if ( wemail()->user->can( 'view_campaign' ) ) { 42 | $menu_items[] = array( __( 'Automations', 'wemail' ), $capability, 'admin.php?page=wemail#/automations' ); 43 | } 44 | 45 | return $menu_items; 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /includes/Core/Billing/Menu.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'manage_settings' ) ) { 43 | $menu_items[] = array( __( 'Billing', 'wemail' ), $capability, 'admin.php?page=wemail#/billing' ); 44 | } 45 | 46 | return $menu_items; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /includes/Core/Campaign/Event.php: -------------------------------------------------------------------------------- 1 | 'wemail_subscribed_to_list', 15 | 'actionTitle' => __( 'when someone subscribes to the list', 'wemail' ), 16 | 'options' => wemail()->lists->items(), 17 | ), 18 | array( 19 | 'action' => 'wemail_matches_segment', 20 | 'actionTitle' => __( 'when a subscriber added to the segment', 'wemail' ), 21 | 'options' => wemail()->segment->all(), 22 | ), 23 | ) 24 | ); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /includes/Core/Campaign/Menu.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'view_campaign' ) ) { 43 | $menu_items[] = array( __( 'Campaigns', 'wemail' ), $capability, 'admin.php?page=wemail#/campaigns' ); 44 | } 45 | 46 | return $menu_items; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /includes/Core/Ecommerce/Ecommerce.php: -------------------------------------------------------------------------------- 1 | WooCommerce::class, 15 | 'edd' => EDD::class, 16 | ); 17 | 18 | /** 19 | * @param $platform 20 | * 21 | * @return AbstractPlatform 22 | */ 23 | public function platform( $platform ) { 24 | return $this->platforms[ $platform ]::instance(); 25 | } 26 | 27 | /** 28 | * Get platforms 29 | * 30 | * @return string[] 31 | */ 32 | public function getPlatforms() { 33 | return $this->platforms; 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /includes/Core/Ecommerce/Hooks/Ecommerce.php: -------------------------------------------------------------------------------- 1 | ecommerce->getPlatforms() as $platform ) { 16 | if ( $platform::instance()->is_active() ) { 17 | $platform::instance()->register_hooks(); 18 | } 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /includes/Core/Ecommerce/Platforms/AbstractPlatform.php: -------------------------------------------------------------------------------- 1 | is_integrated() && Settings::instance()->platform() === $this->get_name(); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /includes/Core/Ecommerce/Platforms/PlatformInterface.php: -------------------------------------------------------------------------------- 1 | is_active = true; 39 | } 40 | } 41 | 42 | /** 43 | * Get available forms 44 | * 45 | * @since 1.0.0 46 | * 47 | * @return array 48 | */ 49 | public function forms() {} 50 | } 51 | -------------------------------------------------------------------------------- /includes/Core/Form/Menu.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'view_form' ) ) { 43 | $menu_items[] = array( __( 'Forms', 'wemail' ), $capability, 'admin.php?page=wemail#/forms' ); 44 | } 45 | 46 | return $menu_items; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /includes/Core/Help/Menu.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'manage_settings' ) ) { 43 | $menu_items[] = array( __( 'Help', 'wemail' ), $capability, 'admin.php?page=wemail#/help' ); 44 | } 45 | 46 | return $menu_items; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /includes/Core/Help/SystemInfo.php: -------------------------------------------------------------------------------- 1 | system = new SystemService(); 19 | $this->wp = new WordpressInfo(); 20 | $this->plugins = new PluginsInfo(); 21 | } 22 | 23 | public function allInfo() { 24 | $name = $this->wp->name( true ); 25 | 26 | return array( 27 | 'admin_email' => get_option( 'admin_email' ), 28 | 'first_name' => $name['first_name'], 29 | 'last_name' => $name['last_name'], 30 | 'ip_address' => $this->wp->get_user_ip_address(), 31 | 'plugins' => $this->plugins->plugins(), 32 | 'site_name' => $this->wp->site_name(), 33 | 'users' => $this->wp->get_user_counts(), 34 | 'wp' => $this->wp->get_wp_info(), 35 | 'server' => $this->system->get_server_info(), 36 | 'post_types' => $this->wp->post_types(), 37 | 'time_info' => $this->wp->time_info(), 38 | ); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /includes/Core/Import/Import.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'manage_settings' ) ) { 43 | $menu_items[] = array( __( 'Import', 'wemail' ), $capability, 'admin.php?page=wemail#/import' ); 44 | } 45 | 46 | return $menu_items; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /includes/Core/Integrations/Menu.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'manage_settings' ) ) { 43 | $menu_items[] = array( __( 'Integrations', 'wemail' ), $capability, 'admin.php?page=wemail#/integrations' ); 44 | } 45 | 46 | return $menu_items; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /includes/Core/Lists/Lists.php: -------------------------------------------------------------------------------- 1 | api->lists()->query( $query )->get(); 22 | } 23 | 24 | /** 25 | * Get all lists 26 | * Id-name paired items 27 | * @since 1.0.0 28 | * @return array 29 | */ 30 | public function items() { 31 | $items = wemail()->api->lists()->items()->get(); 32 | 33 | return $this->data( $items ); 34 | } 35 | 36 | /** 37 | * Get a single list 38 | * 39 | * @since 1.0.0 40 | * 41 | * @param integer $id 42 | * 43 | * @return array 44 | */ 45 | public function get( $id ) { 46 | $list = wemail()->api->lists( $id )->get(); 47 | 48 | return ! empty( $list['data'] ) ? $list['data'] : null; 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /includes/Core/Lists/Menu.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'view_list' ) ) { 43 | $menu_items[] = array( __( 'Lists', 'wemail' ), $capability, 'admin.php?page=wemail#/lists' ); 44 | } 45 | 46 | return $menu_items; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /includes/Core/Mail/Hooks.php: -------------------------------------------------------------------------------- 1 | add_action( 'phpmailer_init', 'handle_transactional_emails' ); 15 | } 16 | 17 | /** 18 | * Replace phpmailer instance 19 | * 20 | * @param $phpmailer 21 | * @return void 22 | */ 23 | public function handle_transactional_emails( &$phpmailer ) { 24 | if ( ! get_option( 'wemail_transactional_emails', false ) ) { 25 | return; 26 | } 27 | 28 | global $wp_version; 29 | 30 | if ( version_compare( $wp_version, '5.5' ) >= 0 ) { 31 | $mailer = new WeMailMailer55(); 32 | } else { 33 | $mailer = new WeMailMailer54(); 34 | } 35 | 36 | $mailer->setPHPMailer( clone $phpmailer ); 37 | 38 | $phpmailer = $mailer; 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /includes/Core/Mail/WeMailMailer54.php: -------------------------------------------------------------------------------- 1 | attemptToSend(); 17 | 18 | if ( is_wp_error( $response ) ) { 19 | throw new \phpmailerException( esc_html( $response->get_error_message() ) ); 20 | } 21 | 22 | if ( isset( $response['success'] ) && ! wemail_validate_boolean( $response['success'] ) ) { 23 | throw new \phpmailerException( 'Could not send transactional email' ); 24 | } 25 | 26 | return true; 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /includes/Core/Mail/WeMailMailer55.php: -------------------------------------------------------------------------------- 1 | attemptToSend(); 18 | 19 | if ( is_wp_error( $response ) ) { 20 | throw new PHPMailerException( esc_html( $response->get_error_message() ) ); 21 | } 22 | 23 | if ( isset( $response['success'] ) && ! wemail_validate_boolean( $response['success'] ) ) { 24 | throw new PHPMailerException( 'Could not send transactional email' ); 25 | } 26 | 27 | return true; 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /includes/Core/Overview/Menu.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'view_dashboard' ) ) { 43 | $menu_items[] = array( __( 'Overview', 'wemail' ), $capability, 'admin.php?page=wemail#/' ); 44 | } 45 | 46 | return $menu_items; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /includes/Core/Overview/Overview.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'manage_settings' ) ) { 43 | $menu_items[] = array( __( 'Settings', 'wemail' ), $capability, 'admin.php?page=wemail#/settings' ); 44 | } 45 | 46 | return $menu_items; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /includes/Core/Settings/Settings.php: -------------------------------------------------------------------------------- 1 | underscored( $name ); 24 | 25 | $settings = wemail()->api->settings()->$name()->get(); 26 | 27 | return $this->data( $settings ); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /includes/Core/SuppressionLists/Menu.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'view_list' ) ) { 43 | $menu_items[] = array( __( 'Suppressions', 'wemail' ), $capability, 'admin.php?page=wemail#/suppression-lists' ); 44 | } 45 | 46 | return $menu_items; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /includes/Core/Sync/Subscriber/Subscriber.php: -------------------------------------------------------------------------------- 1 | null, 12 | 'erp' => null, 13 | ); 14 | 15 | public function __get( $prop ) { 16 | if ( array_key_exists( $prop, $this->container ) ) { 17 | if ( ! $this->container[ $prop ] ) { 18 | $integration = $this->upperCamelize( $prop ); 19 | $class_fqn = "\\WeDevs\\WeMail\\Core\\Sync\\Subscriber\\$integration\\$integration"; 20 | 21 | $this->container[ $prop ] = new $class_fqn(); 22 | } 23 | 24 | return $this->container[ $prop ]; 25 | } 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /includes/Core/Sync/Sync.php: -------------------------------------------------------------------------------- 1 | null, 15 | ); 16 | 17 | public function __get( $prop ) { 18 | if ( array_key_exists( $prop, $this->container ) ) { 19 | if ( ! $this->container[ $prop ] ) { 20 | $class_name = $this->upperCamelize( $prop ); 21 | $class_fqn = "\\WeDevs\\WeMail\\Core\\Sync\\$class_name\\$class_name"; 22 | 23 | $this->container[ $prop ] = new $class_fqn(); 24 | } 25 | 26 | return $this->container[ $prop ]; 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /includes/Core/Users/Menu.php: -------------------------------------------------------------------------------- 1 | add_filter( 'wemail_admin_submenu', 'register_submenu', $this->menu_priority, 2 ); 29 | } 30 | 31 | /** 32 | * Register submenu 33 | * 34 | * @since 1.0.0 35 | * 36 | * @param array $menu_items 37 | * @param string $capability 38 | * 39 | * @return array 40 | */ 41 | public function register_submenu( $menu_items, $capability ) { 42 | if ( wemail()->user->can( 'manage_settings' ) ) { 43 | $menu_items[] = array( 44 | __( 'Teams', 'wemail' ), 45 | $capability, 46 | 'admin.php?page=wemail#/teams', 47 | ); 48 | } 49 | 50 | return $menu_items; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /includes/FrontEnd/Scripts.php: -------------------------------------------------------------------------------- 1 | add_action( 'wp_enqueue_scripts', 'scripts' ); 13 | } 14 | 15 | public function scripts() { 16 | $this->enqueue_scripts(); 17 | } 18 | 19 | public function enqueue_scripts() { 20 | if ( ! is_wemail_hmr_enable() ) { 21 | wp_register_script( 'wemail-frontend-vendor', wemail()->wemail_cdn . '/build/js/frontend-vendor.js', array( 'jquery' ), WEMAIL_VERSION, true ); 22 | wp_register_script( 'wemail-frontend', wemail()->wemail_cdn . '/build/js/frontend.js', array( 'wemail-frontend-vendor' ), WEMAIL_VERSION, true ); 23 | } else { 24 | $hmr_host = wemail()->hmr_host(); 25 | 26 | wp_register_script( 'wemail-frontend-vendor', $hmr_host . '/src/js/frontend/frontend-vendor.js', array( 'jquery' ), WEMAIL_VERSION, true ); 27 | wp_register_script( 'wemail-frontend', $hmr_host . '/src/js/frontend/frontend.js', array( 'wemail-frontend-vendor' ), WEMAIL_VERSION, true ); 28 | } 29 | 30 | $wemail = array( 31 | 'restURL' => untrailingslashit( get_rest_url( null, '/wemail/v1' ) ), 32 | 'nonce' => wp_create_nonce( 'wp_rest' ), 33 | 'cdn' => wemail()->wemail_cdn, 34 | ); 35 | 36 | wp_localize_script( 'wemail-frontend-vendor', 'weMail', $wemail ); 37 | 38 | WeMail::register_module_scripts(); 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /includes/FrontEnd/Shortcodes.php: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 |
5 | 6 | -------------------------------------------------------------------------------- /includes/Rest/Countries.php: -------------------------------------------------------------------------------- 1 | register_routes(); 16 | } 17 | 18 | public function register_routes() { 19 | register_rest_route( 20 | $this->namespace, 21 | '/' . $this->rest_base, 22 | array( 23 | array( 24 | 'methods' => WP_REST_Server::READABLE, 25 | 'permission_callback' => array( $this, 'permission' ), 26 | 'callback' => array( $this, 'countries' ), 27 | ), 28 | ) 29 | ); 30 | } 31 | 32 | public function permission( $request ) { 33 | return wemail()->user->can( 'view_wemail' ); 34 | } 35 | 36 | public function countries() { 37 | $response = rest_ensure_response( 38 | array( 39 | 'data' => wemail_get_countries(), 40 | ) 41 | ); 42 | 43 | return $response; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /includes/Rest/Customizer.php: -------------------------------------------------------------------------------- 1 | campaign|rss)'; 13 | 14 | public function __construct() { 15 | $this->register_routes(); 16 | } 17 | 18 | public function register_routes() { 19 | register_rest_route( 20 | $this->namespace, 21 | '/' . $this->rest_base, 22 | array( 23 | 'args' => array( 24 | 'context' => array( 25 | 'description' => __( 'Customizer context like campaign, wp, woocommerce etc', 'wemail' ), 26 | 'type' => 'string', 27 | 'required' => true, 28 | ), 29 | ), 30 | array( 31 | 'methods' => WP_REST_Server::READABLE, 32 | 'permission_callback' => array( $this, 'permission' ), 33 | 'callback' => array( $this, 'data' ), 34 | ), 35 | ) 36 | ); 37 | } 38 | 39 | public function permission( $request ) { 40 | return wemail()->user->can( 'view_wemail' ); 41 | } 42 | 43 | public function data( $request ) { 44 | return rest_ensure_response( 45 | array( 46 | 'data' => wemail()->campaign->editor->get_customizer_data( $request['context'] ), 47 | ) 48 | ); 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /includes/Rest/Middleware/WeMailMiddleware.php: -------------------------------------------------------------------------------- 1 | permission = $permission; 17 | } 18 | 19 | /** 20 | * @param $request 21 | * @return bool 22 | */ 23 | public function handle( $request ) { 24 | $api_key = $request->get_header( 'X-WeMail-Key' ); 25 | 26 | if ( ! empty( $api_key ) ) { 27 | $query = new WP_User_Query( 28 | array( 29 | 'fields' => 'ID', 30 | 'meta_key' => 'wemail_api_key', 31 | 'meta_value' => $api_key, 32 | ) 33 | ); 34 | 35 | if ( $query->get_total() ) { 36 | $results = $query->get_results(); 37 | $user_id = array_pop( $results ); 38 | 39 | wp_set_current_user( $user_id ); 40 | 41 | return wemail()->user->can( 'manage_settings' ); 42 | } 43 | } 44 | 45 | return false; 46 | } 47 | 48 | /** 49 | * @param string $permission 50 | * @param \WP_REST_Request $request 51 | * @return bool 52 | */ 53 | public static function check( $permission, $request ) { 54 | return ( new self( $permission ) )->handle( $request ); 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /includes/Rest/Resources/Ecommerce/EDD/CategoryResource.php: -------------------------------------------------------------------------------- 1 | (string) $resource['id'], 17 | 'parent_id' => null, 18 | 'name' => $resource['name'], 19 | 'quantity' => intval( $resource['quantity'] ), 20 | 'total' => floatval( $resource['price'] ), 21 | 'thumbnail' => $thumbnail ? $thumbnail : null, 22 | 'categories' => $this->get_categories( $resource['id'] ), 23 | 'permalink' => get_permalink( $resource['id'] ), 24 | ); 25 | } 26 | 27 | protected function get_categories( $id ) { 28 | $terms = get_the_terms( $id, 'download_category' ); 29 | 30 | return array_map( 31 | function ( $term ) { 32 | return $term->term_id; 33 | }, is_array( $terms ) ? $terms : array() 34 | ); 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /includes/Rest/Resources/Ecommerce/WooCommerce/CategoryResource.php: -------------------------------------------------------------------------------- 1 | $resource->term_id, 21 | 'name' => $resource->name, 22 | ); 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /includes/Rest/Resources/Ecommerce/WooCommerce/OrderItemResource.php: -------------------------------------------------------------------------------- 1 | get_product(); 17 | $permalink = $product->get_permalink(); 18 | $thumbnail = wp_get_attachment_image_url( $product->get_image_id() ); 19 | 20 | return array( 21 | 'id' => (string) $product->get_id(), 22 | 'parent_id' => (string) $product->get_parent_id(), 23 | 'name' => $order_item->get_name(), 24 | 'quantity' => $order_item->get_quantity(), 25 | 'total' => floatval( $order_item->get_total() ), 26 | 'thumbnail' => $thumbnail ? $thumbnail : null, 27 | 'categories' => $product->get_category_ids(), 28 | 'permalink' => $permalink ? $permalink : null, 29 | ); 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /includes/Rest/Resources/JsonResource.php: -------------------------------------------------------------------------------- 1 | blueprint( $resource ); 27 | } 28 | 29 | /** 30 | * Transform collection of items 31 | * 32 | * @param array $resources 33 | * 34 | * @return array 35 | */ 36 | public static function collection( array $resources ) { 37 | $instance = new static(); 38 | 39 | $data = array_map( array( $instance, 'blueprint' ), $resources ); 40 | 41 | if ( $instance->reset_keys ) { 42 | $data = array_values( $data ); 43 | } 44 | 45 | return $data; 46 | } 47 | 48 | /** 49 | * Check is it refund item 50 | * 51 | * @param $type 52 | * 53 | * @return bool 54 | */ 55 | public function is_refund( $type ) { 56 | return $type === 'refund'; 57 | } 58 | 59 | /** 60 | * Check item status is completed 61 | * 62 | * @param $status 63 | * 64 | * @return bool 65 | */ 66 | public function is_completed( $status ) { 67 | return $status === 'completed'; 68 | } 69 | } 70 | -------------------------------------------------------------------------------- /includes/Rest/Rest.php: -------------------------------------------------------------------------------- 1 | add_action( 'rest_api_init', 'register_controllers' ); 17 | } 18 | 19 | public function register_controllers() { 20 | new Countries(); 21 | new Pages(); 22 | new States(); 23 | new Customizer(); 24 | new Auth(); 25 | new MailPoet(); 26 | new Csv(); 27 | new Forms(); 28 | new Video(); 29 | new WP(); 30 | new Site(); 31 | new FormIntegrations(); 32 | new ERP(); 33 | new Pages(); 34 | new Users(); 35 | new Ecommerce(); 36 | new Help(); 37 | new AffiliateIntegrations(); 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /includes/Rest/States.php: -------------------------------------------------------------------------------- 1 | [\w-]+)'; 13 | 14 | public function __construct() { 15 | $this->register_routes(); 16 | } 17 | 18 | public function register_routes() { 19 | register_rest_route( 20 | $this->namespace, 21 | '/' . $this->rest_base, 22 | array( 23 | 'args' => array( 24 | 'country' => array( 25 | 'description' => __( 'ISO 3166-1 alpha-2 country code', 'wemail' ), 26 | 'type' => 'string', 27 | 'required' => true, 28 | ), 29 | ), 30 | array( 31 | 'methods' => WP_REST_Server::READABLE, 32 | 'permission_callback' => array( $this, 'permission' ), 33 | 'callback' => array( $this, 'states' ), 34 | ), 35 | ) 36 | ); 37 | } 38 | 39 | public function permission( $request ) { 40 | return wemail()->user->can( 'view_wemail' ); 41 | } 42 | 43 | public function states( $request ) { 44 | $response = rest_ensure_response( 45 | array( 46 | 'data' => wemail_get_country_states( $request['country'] ), 47 | ) 48 | ); 49 | 50 | return $response; 51 | } 52 | } 53 | -------------------------------------------------------------------------------- /includes/Traits/Core.php: -------------------------------------------------------------------------------- 1 | boot(); 25 | } 26 | } 27 | 28 | return self::$instance; 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /includes/Traits/Stringy.php: -------------------------------------------------------------------------------- 1 | true, 10 | ); 11 | 12 | wemail()->api->site()->update_activation_status()->post( $data ); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /includes/Upgrades/upgrade-1.0.0.php: -------------------------------------------------------------------------------- 1 | get_charset_collate(); 11 | 12 | $table_schema = "CREATE TABLE IF NOT EXISTS `{$wpdb->prefix}wemail_forms` ( 13 | `id` varchar(36) NOT NULL, 14 | `name` varchar(150) DEFAULT NULL, 15 | `template` longtext NULL, 16 | `plugin_version` varchar(10) NULL, 17 | `settings` longtext NULL, 18 | `type` varchar(191) DEFAULT 'inline', 19 | `status` tinyint(1) DEFAULT '1', 20 | `deleted_at` timestamp NULL DEFAULT NULL, 21 | PRIMARY KEY (`id`) 22 | ) {$charset_collate}"; 23 | 24 | if ( ! function_exists( 'dbDelta' ) ) { 25 | require_once ABSPATH . 'wp-admin/includes/upgrade.php'; 26 | } 27 | 28 | dbDelta( $table_schema ); 29 | } 30 | 31 | wemail_upgrade_1_0_0_create_wemail_tables(); 32 | -------------------------------------------------------------------------------- /includes/Upgrades/upgrade-1.10.0.php: -------------------------------------------------------------------------------- 1 | set_wemail_api(); 6 | $site = \WeDevs\WeMail\Core\Api\Api::instance() 7 | ->auth()->sites( get_option( 'wemail_site_slug' ) )->get(); 8 | 9 | if ( ! is_wp_error( $site ) && is_array( $site ) ) { 10 | update_option( 'wemail_installed_time', strtotime( $site['data']['created_at'] ) ); 11 | } else { 12 | update_option( 'wemail_installed_time', time() ); 13 | } 14 | } 15 | } 16 | 17 | wemail_add_installed_time(); 18 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "wemail", 3 | "version": "1.14.14", 4 | "description": "Send Beautiful Email Newsletters with WordPress", 5 | "scripts": { 6 | "build": "node build", 7 | "start": "wp-scripts start src/index.js --output-path=assets/js/block", 8 | "wp:build": "wp-scripts build src/index.js --output-path=assets/js/block" 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/weMail/wemail" 13 | }, 14 | "author": { 15 | "name": "weMail", 16 | "email": "support@getwemail.io", 17 | "homepage": "https://getwemail.io" 18 | }, 19 | "license": "GPL-3.0", 20 | "devDependencies": { 21 | "@wordpress/scripts": "^23.2.0", 22 | "archiver": "^2.1.1", 23 | "filesize": "^3.6.1", 24 | "fs-extra": "^6.0.1" 25 | }, 26 | "dependencies": { 27 | "@wordpress/block-editor": "^7.0.2", 28 | "@wordpress/blocks": "^11.1.0", 29 | "@wordpress/components": "^17.0.0", 30 | "@wordpress/element": "^4.0.1", 31 | "@wordpress/i18n": "^4.2.2" 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /src/blocks/wemail-form/icon.js: -------------------------------------------------------------------------------- 1 | export function icon(options = {}) { 2 | return 10 | } 11 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | import './blocks/wemail-form' 2 | -------------------------------------------------------------------------------- /views/admin-widget-form.php: -------------------------------------------------------------------------------- 1 |2 | 6 |
7 | 8 |9 | 22 |
23 | -------------------------------------------------------------------------------- /views/admin.php: -------------------------------------------------------------------------------- 1 |