aboutsummaryrefslogtreecommitdiff
path: root/languages
diff options
context:
space:
mode:
Diffstat (limited to 'languages')
-rw-r--r--languages/ca.php11
-rw-r--r--languages/en.php11
-rw-r--r--languages/es.php11
3 files changed, 33 insertions, 0 deletions
diff --git a/languages/ca.php b/languages/ca.php
new file mode 100644
index 000000000..882ef9df4
--- /dev/null
+++ b/languages/ca.php
@@ -0,0 +1,11 @@
+<?php
+/**
+ * Colorbox language strings
+ *
+ */
+
+$catalan = array(
+ "js:lightbox:current" => "imatge %s de %s",
+);
+
+add_translation("ca", $catalan);
diff --git a/languages/en.php b/languages/en.php
new file mode 100644
index 000000000..a585ca9b5
--- /dev/null
+++ b/languages/en.php
@@ -0,0 +1,11 @@
+<?php
+/**
+ * Colorbox language strings
+ *
+ */
+
+$english = array(
+ "js:lightbox:current" => "image %s of %s",
+);
+
+add_translation("en", $english);
diff --git a/languages/es.php b/languages/es.php
new file mode 100644
index 000000000..baeea98e4
--- /dev/null
+++ b/languages/es.php
@@ -0,0 +1,11 @@
+<?php
+/**
+ * Colorbox language strings
+ *
+ */
+
+$spanish = array(
+ "js:lightbox:current" => "imagen %s de %s",
+);
+
+add_translation("es", $spanish);