aboutsummaryrefslogtreecommitdiffstats
path: root/examples/declarative/i18n/i18n.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/i18n/i18n.qml')
-rw-r--r--examples/declarative/i18n/i18n.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/declarative/i18n/i18n.qml b/examples/declarative/i18n/i18n.qml
index 3e24f659fc..250935ee7b 100644
--- a/examples/declarative/i18n/i18n.qml
+++ b/examples/declarative/i18n/i18n.qml
@@ -38,7 +38,7 @@
**
****************************************************************************/
-import QtQuick 1.0
+import QtQuick 2.0
//
// The QML runtime automatically loads a translation from the i18n subdirectory of the root
@@ -53,7 +53,7 @@ import QtQuick 1.0
//
// linguist i18n/qml_fr.ts
//
-// The run-time translation files are then generaeted by running:
+// The run-time translation files are then generated by running:
//
// lrelease i18n/*.ts
//
@@ -65,8 +65,8 @@ Rectangle {
anchors.fill: parent; spacing: 20
Text {
- text: "If a translation is available for the system language (eg. French) then the
- string below will translated (eg. 'Bonjour'). Otherwise it will show 'Hello'."
+ text: "If a translation is available for the system language (eg. French) then the "+
+ "string below will translated (eg. 'Bonjour'). Otherwise it will show 'Hello'."
width: parent.width; wrapMode: Text.WordWrap
}