Skip to content

Commit

Permalink
Fixed issue : strange characters in language selector
Browse files Browse the repository at this point in the history
Dev: just use html entities
  • Loading branch information
Shnoulle committed Oct 20, 2013
1 parent a5e11ee commit d486502
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions application/helpers/surveytranslator_helper.php
Expand Up @@ -135,7 +135,7 @@ function getLanguageData($bOrderByNative=false,$sLanguageCode='en') {

// Catalan
$supportedLanguages['ca-valencia']['description'] = $clang->gT('Catalan (Valencian)');
$supportedLanguages['ca-valencia']['nativedescription'] = 'Català (Valencià)';
$supportedLanguages['ca-valencia']['nativedescription'] = 'Català (Valencià)';
$supportedLanguages['ca-valencia']['rtl'] = false;
$supportedLanguages['ca-valencia']['dateformat'] = 1;
$supportedLanguages['ca-valencia']['radixpoint'] = 1;
Expand Down Expand Up @@ -452,7 +452,7 @@ function getLanguageData($bOrderByNative=false,$sLanguageCode='en') {

// Occitan
$supportedLanguages['oc']['description'] = $clang->gT('Occitan');
$supportedLanguages['oc']['nativedescription'] = 'Lenga d\'òc';
$supportedLanguages['oc']['nativedescription'] = 'Lenga d'òc';
$supportedLanguages['oc']['rtl'] = false;
$supportedLanguages['oc']['dateformat'] = 5;
$supportedLanguages['oc']['radixpoint'] = 1;
Expand Down

0 comments on commit d486502

Please sign in to comment.