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 #23312 from mancas/bug958041
Browse files Browse the repository at this point in the history
Bug 958041 - [DSDS] When unlock SIM PIN in FTE, due to device hasn't cam...
  • Loading branch information
rvandermeulen committed Sep 16, 2014
2 parents 6668b67 + 089eced commit 248d88f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/ftu/js/sim_manager.js
Expand Up @@ -301,7 +301,7 @@ var SimManager = (function() {
}

UIManager['simCarrier' + iccNumber].textContent = operator ||
_('noOperator');
_('searchingOperator');
var number = icc.mozIcc.iccInfo.msisdn ||
icc.mozIcc.iccInfo.mdn || '';
if (number) {
Expand Down
1 change: 1 addition & 0 deletions apps/ftu/locales/ftu.en-US.properties
Expand Up @@ -104,6 +104,7 @@ simDefaultMessage=Outgoing calls, outgoing messages and data connection are set
simSettingsMessage=You can change default settings at Settings > SIM manager
simPinLocked=SIM PIN locked
noOperator=No operator
searchingOperator=Searching

#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#=#
# Language
Expand Down
2 changes: 1 addition & 1 deletion apps/ftu/test/unit/sim_manager_test.js
Expand Up @@ -476,7 +476,7 @@ suite('sim mgmt >', function() {
});

test('should read no operator when unlocked', function() {
assert.equal('noOperator', UIManager.simCarrier1.textContent);
assert.equal('searchingOperator', UIManager.simCarrier1.textContent);
});

test('should update the operator on voicechange', function() {
Expand Down

0 comments on commit 248d88f

Please sign in to comment.