Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
Merge pull request #9360 from michalbe/bug859555
Browse files Browse the repository at this point in the history
Bug 859555 - Localization of the information in the network operator list
  • Loading branch information
michalbe committed Apr 28, 2013
2 parents 447cdaa + 0c336a8 commit 8bcd3d9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/settings/js/carrier.js
Original file line number Diff line number Diff line change
Expand Up @@ -359,8 +359,8 @@ var Carrier = (function newCarrier(window, document, undefined) {

// state
var state = document.createElement('small');
// XXX do we need l10n here?
state.textContent = network.state;
state.textContent =
network.state ? _('state-' + network.state) : _('state-unknown');

// create list item
var li = document.createElement('li');
Expand Down
5 changes: 5 additions & 0 deletions apps/settings/locales/settings.en-US.properties
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,11 @@ dataConnection-warning-head=Turn ON data connection?
dataConnection-warning-message=Applications will automatically fetch data via data connection when required. Additional data charges may apply.
dataRoaming-warning-head=Turn ON data roaming?
dataRoaming-warning-message=Depending on your service agreement, extra charges may apply for data when you are in a roaming area.
state-unknown = Unknown state
state-available = Available
state-connected = Connected
state-current = Connected
state-forbidden = Forbidden

# Connectivity :: Bluetooth
bluetooth = Bluetooth
Expand Down
5 changes: 5 additions & 0 deletions apps/settings/locales/settings.fr.properties
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,11 @@ dataConnection-warning-head=Activer connexion de données ?
dataConnection-warning-message=Les applications récupèreront automatiquement des données par la connexion de données quand nécessaire. Des frais supplémentaires liés aux données pourraient s’appliquer.
dataRoaming-warning-head=Activer l’itinérance des données ?
dataRoaming-warning-message=Selon votre contrat avec votre opérateur, vous devrez payer un supplément pour vos données si vous êtes en mode itinérance.
state-unknown = état inconnu
state-available = Disponible
state-connected = Actuel
state-current = Actuel
state-forbidden = Interdit

# Connectivity :: Bluetooth
bluetooth=Bluetooth
Expand Down

0 comments on commit 8bcd3d9

Please sign in to comment.