Return $LANG array for Transifex

This commit is contained in:
Holger Lösken 2016-07-03 11:06:34 +02:00 committed by vagrant
parent 337ed1c719
commit 1aa0110580
2 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,8 @@
<?php <?php
$LANG = array( $LANG = array(
// client
'organization' => 'Organisation', 'organization' => 'Organisation',
'name' => 'Name', 'name' => 'Name',
'website' => 'Webseite', 'website' => 'Webseite',
@ -1420,11 +1422,7 @@ $LANG = array(
'industry_Travel & Luxury' => 'Reisen und Luxus', 'industry_Travel & Luxury' => 'Reisen und Luxus',
'industry_Other' => 'Andere', 'industry_Other' => 'Andere',
'industry_Photography' => 'Fotografie', 'industry_Photography' => 'Fotografie',
<<<<<<< b13b9a2d7d8ac931c44189a9ef85c8aeaf165f52
=======
>>>>>>> - Fix #426, closes #426
// Countries // Countries
'country_Afghanistan' => '', 'country_Afghanistan' => '',
'country_Albania' => 'Albanien', 'country_Albania' => 'Albanien',
@ -1675,11 +1673,9 @@ $LANG = array(
'country_Samoa' => '', 'country_Samoa' => '',
'country_Yemen' => '', 'country_Yemen' => '',
'country_Zambi' => '', 'country_Zambi' => '',
); );
<<<<<<< b13b9a2d7d8ac931c44189a9ef85c8aeaf165f52
return $LANG; return $LANG;
?> ?>
=======
>>>>>>> - Fix #426, closes #426

View File

@ -1,6 +1,7 @@
<?php <?php
return [ $LANG = array(
'organization' => 'Organization', 'organization' => 'Organization',
'name' => 'Name', 'name' => 'Name',
'website' => 'Website', 'website' => 'Website',
@ -1672,7 +1673,10 @@ return [
'country_Samoa' => 'Samoa', 'country_Samoa' => 'Samoa',
'country_Yemen' => 'Yemen', 'country_Yemen' => 'Yemen',
'country_Zambi' => 'Zambi', 'country_Zambi' => 'Zambi',
];
);
return $LANG;
?>