[freeside-commits] branch FREESIDE_3_BRANCH updated. a4da08852e2b5f30bbb8926ddd4310ce1f128449
Ivan
ivan at 420.am
Tue May 19 14:08:30 PDT 2015
The branch, FREESIDE_3_BRANCH has been updated
via a4da08852e2b5f30bbb8926ddd4310ce1f128449 (commit)
from 2a465dba420cb89d0492e3dd0b184ec399ef2c40 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit a4da08852e2b5f30bbb8926ddd4310ce1f128449
Author: Ivan Kohler <ivan at freeside.biz>
Date: Tue May 19 14:08:29 2015 -0700
add spanish locales
diff --git a/FS/FS/L10N/es_cu.pm b/FS/FS/L10N/es_cu.pm
new file mode 100644
index 0000000..f556c1f
--- /dev/null
+++ b/FS/FS/L10N/es_cu.pm
@@ -0,0 +1,4 @@
+package FS::L10N::es_cu;
+use base qw(FS::L10N::es_es);
+
+1;
diff --git a/FS/FS/L10N/es_es.pm b/FS/FS/L10N/es_es.pm
new file mode 100644
index 0000000..4071731
--- /dev/null
+++ b/FS/FS/L10N/es_es.pm
@@ -0,0 +1,6 @@
+package FS::L10N::es_es;
+use base qw(FS::L10N::DBI);
+
+our %Lexicon = ();
+
+1;
diff --git a/FS/FS/L10N/es_mx.pm b/FS/FS/L10N/es_mx.pm
new file mode 100644
index 0000000..1901b9d
--- /dev/null
+++ b/FS/FS/L10N/es_mx.pm
@@ -0,0 +1,4 @@
+package FS::L10N::es_mx;
+use base qw(FS::L10N::es_es);
+
+1;
diff --git a/FS/FS/L10N/es_us.pm b/FS/FS/L10N/es_us.pm
new file mode 100644
index 0000000..838b047
--- /dev/null
+++ b/FS/FS/L10N/es_us.pm
@@ -0,0 +1,4 @@
+package FS::L10N::es_us;
+use base qw(FS::L10N::es_es);
+
+1;
diff --git a/FS/FS/Locales.pm b/FS/FS/Locales.pm
index 032c3b5..849929c 100644
--- a/FS/FS/Locales.pm
+++ b/FS/FS/Locales.pm
@@ -31,6 +31,10 @@ tie our %locales, 'Tie::IxHash',
'en_US', { name => 'English', country => 'United States', },
'en_AU', { name => 'English', country => 'Australia', },
'en_CA', { name => 'English', country => 'Canada', },
+ 'es_ES', { name => 'Spanish', country => 'Spain', },
+ 'es_CU', { name => 'Spanish', country => 'Cuba', },
+ 'es_MX', { name => 'Spanish', country => 'Mexico', },
+ 'es_US', { name => 'Spanish', country => 'United States', },
'fr_CA', { name => 'French', country => 'Canada', },
'fr_FR', { name => 'French', country => 'France', },
'fr_HT', { name => 'French', country => 'Haiti', },
-----------------------------------------------------------------------
Summary of changes:
FS/FS/L10N/es_cu.pm | 4 ++++
FS/FS/L10N/{fr_fr.pm => es_es.pm} | 2 +-
FS/FS/L10N/es_mx.pm | 4 ++++
FS/FS/L10N/es_us.pm | 4 ++++
FS/FS/Locales.pm | 4 ++++
5 files changed, 17 insertions(+), 1 deletion(-)
create mode 100644 FS/FS/L10N/es_cu.pm
copy FS/FS/L10N/{fr_fr.pm => es_es.pm} (67%)
create mode 100644 FS/FS/L10N/es_mx.pm
create mode 100644 FS/FS/L10N/es_us.pm
More information about the freeside-commits
mailing list