aboutsummaryrefslogtreecommitdiff
path: root/languages
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:42:50 -0300
committerSilvio Rhatto <rhatto@riseup.net>2014-03-15 14:42:50 -0300
commit36102a094de700ee339f6eaeffb8ab16ba4f2f3b (patch)
tree57676a64905ae0e112cc5d698a5f61b36a88c5b3 /languages
downloadelgg-36102a094de700ee339f6eaeffb8ab16ba4f2f3b.tar.gz
elgg-36102a094de700ee339f6eaeffb8ab16ba4f2f3b.tar.bz2
Squashed 'mod/graphstats/' content from commit b5d0461
git-subtree-dir: mod/graphstats git-subtree-split: b5d046138c5841d55b4497618d5678cb8027c245
Diffstat (limited to 'languages')
-rw-r--r--languages/ca.php17
-rw-r--r--languages/en.php17
-rw-r--r--languages/es.php17
-rw-r--r--languages/pt.php14
4 files changed, 65 insertions, 0 deletions
diff --git a/languages/ca.php b/languages/ca.php
new file mode 100644
index 000000000..fc4dbd719
--- /dev/null
+++ b/languages/ca.php
@@ -0,0 +1,17 @@
+<?php
+/**
+ * Elgg graphstats plugin language pack
+ *
+ * @package ElggGraphStats
+ */
+
+$catalan = array(
+ 'graphstats:implication' => 'Implicació',
+ 'graphstats:graphs' => 'Gràfics',
+ 'graphstats:timestats' => 'Estadístiques a través del temps',
+ 'graphstats:groupgraph' => 'Xarxa de grups',
+ 'timeline' => 'Línea temporal',
+);
+
+add_translation("ca", $catalan);
+?>
diff --git a/languages/en.php b/languages/en.php
new file mode 100644
index 000000000..fc3ed075e
--- /dev/null
+++ b/languages/en.php
@@ -0,0 +1,17 @@
+<?php
+/**
+ * Elgg graphstats plugin language pack
+ *
+ * @package ElggGraphStats
+ */
+
+$english = array(
+ 'graphstats:implication' => 'Implication',
+ 'graphstats:graphs' => 'Graphs',
+ 'graphstats:timestats' => 'Stats over time',
+ 'graphstats:groupgraph' => 'Group network',
+ 'timeline' => 'Timeline',
+);
+
+add_translation("en", $english);
+?>
diff --git a/languages/es.php b/languages/es.php
new file mode 100644
index 000000000..eba4a683e
--- /dev/null
+++ b/languages/es.php
@@ -0,0 +1,17 @@
+<?php
+/**
+ * Elgg graphstats plugin language pack
+ *
+ * @package ElggGraphStats
+ */
+
+$spanish = array(
+ 'graphstats:implication' => 'Implicación',
+ 'graphstats:graphs' => 'Gráficos',
+ 'graphstats:timestats' => 'Estadísticas a través del tiempo',
+ 'graphstats:groupgraph' => 'Red de grupos',
+ 'timeline' => 'Línea temporal',
+);
+
+add_translation("es", $spanish);
+?>
diff --git a/languages/pt.php b/languages/pt.php
new file mode 100644
index 000000000..891430139
--- /dev/null
+++ b/languages/pt.php
@@ -0,0 +1,14 @@
+<?php
+/**
+ * Elgg graphstats plugin language pack
+ *
+ * @package ElggGraphStats
+ */
+
+$portuguese = array(
+ 'graphstats:graphs' => "Gráficos" ,
+);
+
+add_translation('pt', $portuguese);
+
+?>