GR.php 956 Bytes
Newer Older
imac's avatar
imac committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
<?php
/**
 * Greek Regions
 *
 * @author   WooThemes
 * @category i18n
 * @package  WooCommerce/i18n
 * @version  2.3.0
 */
global $states;

if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$states['GR'] = array(
	'I' => __( 'Αττική', 'woocommerce' ),
	'A' => __( 'Ανατολική Μακεδονία και Θράκη', 'woocommerce' ),
	'B' => __( 'Κεντρική Μακεδονία', 'woocommerce' ),
	'C' => __( 'Δυτική Μακεδονία', 'woocommerce' ),
	'D' => __( 'Ήπειρος', 'woocommerce' ),
	'E' => __( 'Θεσσαλία', 'woocommerce' ),
	'F' => __( 'Ιόνιοι Νήσοι', 'woocommerce' ),
	'G' => __( 'Δυτική Ελλάδα', 'woocommerce' ),
	'H' => __( 'Στερεά Ελλάδα', 'woocommerce' ),
	'J' => __( 'Πελοπόννησος', 'woocommerce' ),
	'K' => __( 'Βόρειο Αιγαίο', 'woocommerce' ),
	'L' => __( 'Νότιο Αιγαίο', 'woocommerce' ),
	'M' => __( 'Κρήτη', 'woocommerce' ),
);