You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by za...@apache.org on 2014/12/15 14:33:08 UTC

[19/37] cordova-ubuntu git commit: Corrected a spelling mistake in a msg property key.

Corrected a spelling mistake in a msg property key.


Project: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/commit/cb3692c6
Tree: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/tree/cb3692c6
Diff: http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/diff/cb3692c6

Branch: refs/heads/master
Commit: cb3692c68de6243d7bbc2475446b3d396d1e4de9
Parents: ba8276b
Author: Jean-Francois Moy <je...@gmail.com>
Authored: Thu Nov 6 12:54:27 2014 +0000
Committer: Jean-Francois Moy <je...@gmail.com>
Committed: Thu Nov 6 12:54:27 2014 +0000

----------------------------------------------------------------------
 bin/templates/project/cordova/lib/constants.js | 4 ++--
 bin/templates/project/cordova/lib/run.js       | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/blob/cb3692c6/bin/templates/project/cordova/lib/constants.js
----------------------------------------------------------------------
diff --git a/bin/templates/project/cordova/lib/constants.js b/bin/templates/project/cordova/lib/constants.js
index a12155b..b6390be 100644
--- a/bin/templates/project/cordova/lib/constants.js
+++ b/bin/templates/project/cordova/lib/constants.js
@@ -17,7 +17,7 @@
  * specific language governing permissions and limitations
  * under the License.
  */
- 
+
 module.exports = {
     'DEFAULT_FRAMEWORK': 'ubuntu-sdk-14.04',
     'DEFAULT_ARCH': 'armhf',
@@ -27,7 +27,7 @@ module.exports = {
         'ALL': 2
     },
     'MSG': {
-        'UBUNTU_TOUCH_DEVICE_NOT_AVALIABLE': 'UbuntuTouch device is not attached',
+        'UBUNTU_TOUCH_DEVICE_NOT_AVALAIBLE': 'UbuntuTouch device is not attached',
         'EMULATOR_IS_NOT_RUNNING': 'UbuntuTouch emulator is not running'
     }
 };

http://git-wip-us.apache.org/repos/asf/cordova-ubuntu/blob/cb3692c6/bin/templates/project/cordova/lib/run.js
----------------------------------------------------------------------
diff --git a/bin/templates/project/cordova/lib/run.js b/bin/templates/project/cordova/lib/run.js
index c0beaee..dfe0274 100644
--- a/bin/templates/project/cordova/lib/run.js
+++ b/bin/templates/project/cordova/lib/run.js
@@ -47,7 +47,7 @@ module.exports.run = function(rootDir, desktop, debug, target, nobuild, emulator
         var devices = Devices.list();
 
         if (!devices.length) {
-            console.error(MSG.UBUNTU_TOUCH_DEVICE_NOT_AVALIABLE.red)
+            console.error(MSG.UBUNTU_TOUCH_DEVICE_NOT_AVALAIBLE.red)
             process.exit(1);
         }
 
@@ -97,7 +97,7 @@ function runOnDevice(rootDir, debug, target, architecture, framework) {
     var ubuntuDir = path.join(rootDir, 'platforms', 'ubuntu');
 
     if (!Devices.isAttached(target)) {
-        console.error(MSG.UBUNTU_TOUCH_DEVICE_NOT_AVALIABLE.red);
+        console.error(MSG.UBUNTU_TOUCH_DEVICE_NOT_AVALAIBLE.red);
         process.exit(1);
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org