Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-04-17 02:28:03 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2008-04-17 02:28:03 +0400
commitf85e6caa77c092cfb736b4d0250bec92a0d973a3 (patch)
tree87b870466b3ae7e36f3bddca06b3dbc82ec37c31 /lang
parent48187389f65599017f4f1fabcc8054069015e445 (diff)
[mauser]- refs #62 commited huge work by Maciej ZawadziƄski: thanks! still some work to do + QA but looks really good :)
[mauser]- refs #116 commited partial fix [mauser]- refs #65 commited partial fix - fixed broken tests
Diffstat (limited to 'lang')
-rw-r--r--lang/en.php43
-rw-r--r--lang/fr.php16
2 files changed, 38 insertions, 21 deletions
diff --git a/lang/en.php b/lang/en.php
index 2c8eb8ada8..107f3881d1 100644
--- a/lang/en.php
+++ b/lang/en.php
@@ -1,11 +1,34 @@
-<?php
-$translations = array(
- 'General_Unknown' => 'Unknown',
- 'General_Required' => '%s required',
+<?php
+
+// sets locale for dates, always use UTF-8!
+setlocale(LC_TIME, 'en_US.UTF-8');
+
+$translations = array(
+ 'General_Unknown' => 'Unknown',
+ 'General_Required' => '%s required',
+ 'General_Error' => 'Error',
+ 'General_Warning' => 'Warning',
+ 'General_BackToHomepage' => 'Back to Piwik homepage',
+ 'General_Yes' => 'Yes',
+ 'General_No' => 'No',
+ 'General_Delete' => 'Delete',
+ 'General_Edit' => 'Edit',
+ 'General_Ok' => 'Ok',
+ 'General_Close' => 'Close',
+ 'General_Logout' => 'Logout',
+ 'General_Done' => 'Done',
+ 'General_LoadingData' => 'Loading data...',
+ 'General_ErrorRequest' => 'Oops&hellip; problem during the request, please try again.',
+ 'General_Next' => 'Next',
+ 'General_Previous' => 'Previous',
+ 'General_Table' => 'Table',
+ 'General_Piechart' => 'Piechart',
+ 'General_TagCloud' => 'Tag Cloud',
+ 'General_VBarGraph' => 'Vertial bar graph',
+ 'General_GraphData' => 'Graph data',
+ 'General_Refresh' => 'Refresh the page',
+ 'General_ColumnNbUniqVisitors' => 'Unique visitors',
+ 'General_ColumnNbVisits' => 'Visits',
+ 'General_ColumnLabel' => 'Label',
+);
- 'Login_LoginPasswordNotCorrect' => 'Username & Password not correct',
- 'Login_Login' => 'Username',
- 'Login_Password' => 'Password',
- 'Login_LogIn' => 'Log in',
-
-); \ No newline at end of file
diff --git a/lang/fr.php b/lang/fr.php
index a66d4cfd03..64fb4e3e3d 100644
--- a/lang/fr.php
+++ b/lang/fr.php
@@ -1,11 +1,5 @@
-<?php
-$translations = array(
- 'General_Unknown' => 'Inconnu',
- 'General_Required' => '%s requis',
-
- 'Login_LoginPasswordNotCorrect' => 'Utilisateur & Mot de passe not correct',
- 'Login_Login' => 'Utilisateur',
- 'Login_Password' => 'Mot de passe',
- 'Login_LogIn' => 'Log in',
-
-);
+<?php
+$translations = array(
+ 'General_Unknown' => 'Inconnu',
+ 'General_Required' => '%s requis',
+);