diff --git a/wp-app-kit/app/core/app.js b/wp-app-kit/app/core/app.js
index 9317fd0..7d9c09a 100644
--- a/wp-app-kit/app/core/app.js
+++ b/wp-app-kit/app/core/app.js
@@ -919,7 +919,7 @@ define(function (require) {
};
//--------------------------------------------------------------------------
- //Network : handle network state if the Network phonegap plugin is available
+ //Network : handle network state if the Network PhoneGap plugin is available
app.onOnline = function(){
vent.trigger('network:online');
diff --git a/wp-app-kit/app/lang/theme-messages.js b/wp-app-kit/app/lang/theme-messages.js
index b49e8a6..992233b 100644
--- a/wp-app-kit/app/lang/theme-messages.js
+++ b/wp-app-kit/app/lang/theme-messages.js
@@ -7,7 +7,7 @@ define( function ( require ) {
return {
error_remote_connexion_failed : 'Remote connection to website failed',
- error_occured_undefined : 'Oops, an error occured...',
+ error_occured_undefined : 'Oops, an error occurred...',
info_no_content : "The application couldn't retrieve any content, please check your internet connection!",
info_network_online : "Internet connection ok",
info_network_offline : "Internet connection lost",
diff --git a/wp-app-kit/app/themes/bootstrap/layout.html b/wp-app-kit/app/themes/bootstrap/layout.html
index c1fa6fc..c60bde8 100644
--- a/wp-app-kit/app/themes/bootstrap/layout.html
+++ b/wp-app-kit/app/themes/bootstrap/layout.html
@@ -9,7 +9,7 @@
diff --git a/wp-app-kit/lang/wp-app-kit-fr_FR.po b/wp-app-kit/lang/wp-app-kit-fr_FR.po
index 08a3255..1fb9ec5 100644
--- a/wp-app-kit/lang/wp-app-kit-fr_FR.po
+++ b/wp-app-kit/lang/wp-app-kit-fr_FR.po
@@ -139,7 +139,7 @@ msgstr "Email de l'auteur"
# @ wp-app-kit
#: ../lib/apps/apps.php:164
-msgid "Phonegap plugins"
+msgid "Phonegap Plugins"
msgstr "Plugins Phonegap"
# @ wp-app-kit
@@ -929,7 +929,7 @@ msgid "Application title (displayed in app top bar)"
msgstr "Titre de l'application (affiché dans la top bar)"
#: ../lib/themes/upload-themes.php:18
-msgid "Upload themes"
+msgid "Upload Themes"
msgstr "Télécharger des thèmes"
#: ../lib/themes/upload-themes.php:26
diff --git a/wp-app-kit/lang/wp-app-kit-fr_FR.pot b/wp-app-kit/lang/wp-app-kit-fr_FR.pot
index 6460d18..f2d4d9d 100644
--- a/wp-app-kit/lang/wp-app-kit-fr_FR.pot
+++ b/wp-app-kit/lang/wp-app-kit-fr_FR.pot
@@ -83,7 +83,7 @@ msgstr ""
#: ../lib/apps/apps.php:131
msgid ""
"PhoneGap config.xml informations that are going to be displayed on App "
-"Stores.
They are required when exporting the App to Phonegap, but are "
+"Stores.
They are required when exporting the App to PhoneGap, but are "
"not used for App debug and simulation in browsers."
msgstr ""
@@ -114,7 +114,7 @@ msgstr ""
# @ wp-app-kit
#: ../lib/apps/apps.php:148
-msgid "Phonegap version"
+msgid "PhoneGap version"
msgstr ""
# @ wp-app-kit
@@ -134,14 +134,14 @@ msgstr ""
# @ wp-app-kit
#: ../lib/apps/apps.php:160
-msgid "Phonegap plugins"
+msgid "PhoneGap plugins"
msgstr ""
# @ wp-app-kit
#: ../lib/apps/apps.php:162
msgid ""
-"Write the phonegap plugins tags as defined in the PhoneGap documentation.
Example : to include the \"In App Browser\" plugin for a Phonegap Build "
+"Write the PhoneGap plugins tags as defined in the PhoneGap documentation.
Example : to include the \"In App Browser\" plugin for a PhoneGap Build "
"compilation, enter <gap:plugin name=\"org.apache.cordova.inappbrowser\" "
"version=\"0.3.3\" /> directly in the textarea."
msgstr ""
@@ -212,7 +212,7 @@ msgstr ""
# @ wp-app-kit
#: ../lib/apps/build.php:28
-msgid "Phonegap ready App export"
+msgid "PhoneGap ready App export"
msgstr ""
# @ wp-app-kit
@@ -270,7 +270,7 @@ msgstr ""
# @ wp-app-kit
#: ../lib/apps/build.php:72
msgid ""
-"Phonegap exports are Zip files created in the WordPress uploads directory"
+"PhoneGap exports are Zip files created in the WordPress uploads directory"
msgstr ""
# @ wp-app-kit
diff --git a/wp-app-kit/lib/apps/apps.php b/wp-app-kit/lib/apps/apps.php
index 4bcbe3e..5c08b2d 100644
--- a/wp-app-kit/lib/apps/apps.php
+++ b/wp-app-kit/lib/apps/apps.php
@@ -44,7 +44,7 @@ public static function apps_custom_post_type() {
'add_new' => __( 'Add', WpAppKit::i18n_domain ),
'add_new_item' => __( 'Add an application', WpAppKit::i18n_domain ),
'edit' => __( 'Edit', WpAppKit::i18n_domain ),
- 'edit_item' => __( 'Edit application', WpAppKit::i18n_domain ),
+ 'edit_item' => __( 'Edit Application', WpAppKit::i18n_domain ),
'new_item' => __( 'New application', WpAppKit::i18n_domain ),
'not_found' => __( 'No application found', WpAppKit::i18n_domain ),
)
@@ -91,7 +91,7 @@ public static function add_phonegap_meta_box() {
add_meta_box(
'wpak_app_phonegap_data',
- __( 'Phonegap config.xml data', WpAppKit::i18n_domain ),
+ __( 'PhoneGap config.xml Data', WpAppKit::i18n_domain ),
array( __CLASS__, 'inner_phonegap_infos_box' ),
'wpak_apps',
'normal',
@@ -132,7 +132,7 @@ public static function inner_phonegap_infos_box( $post, $current_box ) {
$main_infos = self::get_app_main_infos( $post->ID );
?>