WWW update
authorMuki <mkiol@o2.pl>
Fri, 8 Jun 2012 12:15:45 +0000 (14:15 +0200)
committerMuki <mkiol@o2.pl>
Fri, 8 Jun 2012 12:15:45 +0000 (14:15 +0200)
29 files changed:
main.cpp
qml/ubi/FilesPage.qml
qml/ubi/InitPage.qml
qml/ubi/Page.qml
qml/ubi/PropertiesPage.qml
qml/ubi/SettingsPage.qml
qml/ubi/components/DialogCombo.qml
qml/ubi/components/File.qml
qml/ubi/components/TextField.qml
qml/ubi/main.qml
qml/ubi/meego_main.qml [new file with mode: 0644]
qmlapplicationviewer/qmlapplicationviewer.cpp
qtc_packaging/debian_fremantle/changelog
qtc_packaging/debian_fremantle/control
qtc_packaging/debian_harmattan/changelog
qtc_packaging/debian_harmattan/control
qtc_packaging/debian_harmattan/control~
translation.pri
translations/ubi.it.qm [new file with mode: 0644]
translations/ubi.it.ts [new file with mode: 0644]
translations/ubi.it.ts~ [new file with mode: 0644]
translations/ubi.pl.qm
translations/ubi.pl.ts
ubi.pro
ubi.pro.user
ubi.qrc
www/index.html
www/index.html~
www/index2.html [new file with mode: 0644]

index b30bc56..9238ebc 100644 (file)
--- a/main.cpp
+++ b/main.cpp
@@ -6,6 +6,7 @@
 #include <QSettings>
 #include "qmlapplicationviewer.h"
 #include "utils.h"
+#include <qplatformdefs.h> // MEEGO_EDITION_HARMATTAN
 
 Q_DECL_EXPORT int main(int argc, char *argv[])
 {
@@ -16,20 +17,22 @@ Q_DECL_EXPORT int main(int argc, char *argv[])
     Utils utils(&viewer,&settings);
 
     QString locale = settings.value("locale").toString();
-
-    if(locale!="pl_PL" && locale!="en_US") {
+    if(locale!="pl_PL" && locale!="en_US" && locale!="it_IT") {
         locale = QLocale::system().name();
-        if(locale!="pl_PL") {
+        if(locale!="pl_PL" && locale!="it_IT") {
             locale="en_US";
         }
         settings.setValue("locale",locale);
     }
-
     QTranslator translator;
-    //QString dir = "translations";
-    QString dir = ":/translations";
+    QString dir = "translations";
+    //dir = ":/translations";
+#if defined(MEEGO_EDITION_HARMATTAN)
+    dir = ":/translations";
+#endif
 #if defined(Q_WS_MAEMO_5)
-    //dir = "/opt/ubi/"+dir;
+    //dir = "/opt/ubi/translations";
+    dir = ":/translations";
 #endif
     if (translator.load(QString("ubi.")+locale,dir)) {
         app->installTranslator(&translator);
@@ -41,20 +44,37 @@ Q_DECL_EXPORT int main(int argc, char *argv[])
     QDeclarativeContext *context = viewer.rootContext();
     context->setContextProperty("Utils", &utils);
 
-    viewer.setOrientation(QmlApplicationViewer::ScreenOrientationAuto);
+#if defined(MEEGO_EDITION_HARMATTAN)
+    //viewer.setMainQmlFile(QLatin1String("qml/ubi/meego_main.qml"));
+    viewer.setSource(QUrl("qrc:///qml/ubi/meego_main.qml"));
+    viewer.setOrientation(QmlApplicationViewer::ScreenOrientationLockPortrait);
+#endif
+
 #if defined(Q_WS_MAEMO_5)
-    //viewer.engine()->addImportPath(QString("/opt/qtm12/imports"));
+    qputenv("N900_PORTRAIT_SENSORS", "1");
+    //viewer.setMainQmlFile(QLatin1String("qml/ubi/meego_main.qml"));
+    viewer.setSource(QUrl("qrc:///qml/ubi/meego_main.qml"));
+    viewer.setOrientation(QmlApplicationViewer::ScreenOrientationLockLandscape);
+    viewer.setGeometry(QRect(0,0,800,480));
 #endif
+
+#if !defined(MEEGO_EDITION_HARMATTAN) && !defined(Q_WS_MAEMO_5)
     //viewer.setMainQmlFile(QLatin1String("qml/ubi/main.qml"));
     viewer.setSource(QUrl("qrc:///qml/ubi/main.qml"));
+    viewer.setOrientation(QmlApplicationViewer::ScreenOrientationAuto);
+#endif
+
     viewer.setWindowTitle(QString("Ubi"));
+    viewer.showExpanded();
 
+/*
 #if defined(Q_WS_MAEMO_5)
     viewer.setGeometry(QRect(0,0,800,480));
     viewer.showFullScreen();
 #else
     viewer.showExpanded();
 #endif
+*/
 
     return app->exec();
 }
index 5a55fa8..2791510 100644 (file)
@@ -291,11 +291,9 @@ Page {
         placeholderText: root.name
         onOpened: {
             reset();
-            Utils.setOrientation("auto");
         }
         onClosed: {
             mask.state = "idle";
-            Utils.setOrientation(root.orientation);
             var r = trim(resp);
             if(r!="") {
                 mask.state = "busy";
@@ -306,9 +304,6 @@ Page {
                 tip.show(qsTr("Invalid folder name!"))
             }
         }
-        onCanceled: {
-            Utils.setOrientation(root.orientation);
-        }
     }
 
     DialogInput {
@@ -319,10 +314,8 @@ Page {
         placeholderText: ""
         onOpened: {
             reset();
-            Utils.setOrientation("auto");
         }
         onClosed: {
-            Utils.setOrientation(root.orientation);
             var r = trim(resp);
             if(r!="") {
                 mask.state = "busy";
@@ -337,9 +330,6 @@ Page {
                 tip.show(qsTr("Invalid folder name!"))
             }
         }
-        onCanceled: {
-            Utils.setOrientation(root.orientation);
-        }
     }
 
     TaskMenu {
index 7cec8a2..554cd02 100644 (file)
@@ -80,7 +80,7 @@ Showable {
             anchors.horizontalCenter: parent.horizontalCenter
             font.pixelSize: 20
             color: "white"
-            text: "v0.9.3-2 © 2012 Michal Kosciesza"
+            text: "v0.9.4-1 © 2012 Michal Kosciesza"
         }
 
         Text {
index 1ffd7d5..880ad5e 100644 (file)
@@ -26,7 +26,7 @@ Item {
         onClicked: taskBar.close()
     }
 
-    Component.onCompleted: {
-        Utils.setOrientation(orientation);
-    }
+    /*Component.onCompleted: {
+        //Utils.setOrientation(orientation);
+    }*/
 }
index 8dfebd1..ae46618 100644 (file)
@@ -236,9 +236,7 @@ Page {
                     tip.show(qsTr("Public URL copied to clipboard!"));
                 }
             }
-
             Spacer{}
-
         }
     }
 
@@ -331,12 +329,10 @@ Page {
         placeholderText: filename.text
         onOpened: {
             reset();
-            Utils.setOrientation("auto");
             mask.state = "dialog";
         }
         onClosed: {
             mask.state = "idle";
-            Utils.setOrientation(root.orientation);
             var r = trim(resp);
             if(r!="") {
                 mask.state = "busy";
@@ -348,7 +344,6 @@ Page {
             }
         }
         onCanceled: {
-            Utils.setOrientation(root.orientation);
             mask.state = "idle";
         }
     }
index 2e29b09..c67f209 100644 (file)
@@ -10,11 +10,13 @@ Page {
 
     Component.onCompleted: {
         var _lang = Utils.locale();
-        if(_lang=="pl_PL") {
+        if(_lang=="pl_PL")
             lang.text = "Polski";
-        } else {
+        if(_lang=="it_IT")
+            lang.text = "Italiano";
+        if(_lang=="en_US")
             lang.text = "English";
-        }
+
         login.text = Utils.name();
     }
 
index 53d4c05..fa69bde 100644 (file)
@@ -44,6 +44,13 @@ DialogBox {
                         root.closed("pl_PL");
                     }
                 }
+                Button {
+                    label: "Italiano"
+                    onButtonClicked: {
+                        root.close();
+                        root.closed("it_IT");
+                    }
+                }
             }
             Spacer {}
         }
index f459cb3..a268ff2 100644 (file)
@@ -50,7 +50,7 @@ Item {
         id: icon
         width: 60
         height: 60
-        x: Const.TEXT_MARGIN-5
+        x: Const.TEXT_MARGIN-8
         source: root.isDirectory ? "../images/folder.png" :
                 root.isPhoto ? "../images/photo.png" :
                 root.isMusic ? "../images/music.png" :
index 8745baa..b13ab84 100644 (file)
@@ -24,7 +24,14 @@ Rectangle {
         selectByMouse: true
         selectionColor: "gray"
         onTextChanged: root.textChanged()
+
+        Keys.onReturnPressed: {
+            closeSoftwareInputPanel()
+            dummy.focus = true
+        }
+
     }
+    Item { id: dummy }
 
     Text {
         id: placeholder
index 60cd7ab..6f42c54 100644 (file)
@@ -78,7 +78,7 @@ Rectangle {
         iconSource: "images/ubi50.png"
         textHeader: qsTr("<b>Ubi</b>")
 
-        text: qsTr("<p>An unofficial Ubuntu One app for Maemo 5 "
+        text: qsTr("<p>An unofficial Ubuntu One app for Maemo/Meego "
               +"and other Qt-enabled platforms.</p>"
               +"<p><small>http://ubi.garage.maemo.org</small></p>"
               +"<p><small>© 2012 Michal Kosciesza</small></p>")
diff --git a/qml/ubi/meego_main.qml b/qml/ubi/meego_main.qml
new file mode 100644 (file)
index 0000000..98c2002
--- /dev/null
@@ -0,0 +1,128 @@
+import QtQuick 1.1
+import "components"
+import "UIConstants.js" as Const
+import com.nokia.meego 1.0 as Meego
+
+Meego.PageStackWindow {
+    id: appWindow
+
+    initialPage: mainPage
+    showToolBar: false
+    //showStatusBar: false
+
+    Component.onCompleted: {
+        theme.inverted = true;
+    }
+
+    Meego.Page {
+        id: mainPage
+
+        Rectangle {
+            id: mainWindow
+
+            anchors.fill: parent
+            color: Const.DEFAULT_BACKGROUND_COLOR
+
+            PageStack {
+                id: pageStack
+                initialPage: Qt.resolvedUrl("FilesPage.qml")
+            }
+
+            TopBar {
+                id: topbar
+            }
+
+            NotificationNew {
+                id: tip
+                z: 201
+                anchors.horizontalCenter: mainWindow.horizontalCenter
+                y: mainWindow.height-height-Const.SYSTEM_BAR_HEIGHT-Const.TEXT_MARGIN
+            }
+
+            Connections {
+                target: Utils
+                onFileDownloaded: tip.show(qsTr("File downloaded."))
+                onFileUploaded: tip.show(qsTr("File uploaded."))
+                onDownloadError: tip.show(qsTr("Error while downloading."))
+                onUploadError: tip.show(qsTr("Error while uploading."))
+                onDownloadAdded: tip.show(qsTr("File added to the queue."))
+                onUploadAdded: tip.show(qsTr("File added to the queue."))
+                onOperationCanceled: tip.show(qsTr("File operation canceled."))
+            }
+
+            DialogBlank {
+                id: downloadDialog
+                z: 200
+
+                property bool isActiveDownloads: progressArea.count>0
+
+                boxHeight: progressArea.height + 3*Const.DEFAULT_MARGIN
+
+                Connections {
+                    target: Utils
+                    onFileDownloadProgress: progressArea.setProgress(filename,progress)
+                    onFileUploadProgress: progressArea.setProgress(filename,progress)
+                    onDownloadAdded: progressArea.addTask("download",filename)
+                    onUploadAdded: progressArea.addTask("upload",filename)
+                    onDownloadStarted: progressArea.start(filename)
+                    onUploadStarted: progressArea.start(filename)
+                    onFileDownloaded: progressArea.stop(filename)
+                    onFileUploaded: progressArea.stop(filename)
+                    onDownloadError: progressArea.stop(filename)
+                    onUploadError: progressArea.stop(filename)
+                    onOperationCanceled: progressArea.stop(filename)
+                    onFileRemovedFromQuee: progressArea.stop(filename)
+                }
+
+                DownloadArea {
+                    anchors.top: parent.box.top
+                    anchors.topMargin: 2*Const.DEFAULT_MARGIN
+                    anchors.margins: Const.DEFAULT_MARGIN
+                    anchors.horizontalCenter: parent.horizontalCenter
+                    id: progressArea
+                    width: parent.width-3*Const.DEFAULT_MARGIN
+                }
+            }
+
+            DialogInfo {
+                id: aboutDialog
+                z: 200
+                fontSize: 28
+                iconSource: "images/ubi50.png"
+                textHeader: qsTr("<b>Ubi</b>")
+
+                text: qsTr("<p>An unofficial Ubuntu One app for Maemo/Meego "
+                      +"and other Qt-enabled platforms.</p>"
+                      +"<p><small>http://ubi.garage.maemo.org</small></p>"
+                      +"<p><small>© 2012 Michal Kosciesza</small></p>")
+            }
+
+            SystemBar {
+                id: systemBar
+                z: 201
+                onClickedOnMask: {
+                    aboutDialog.close();
+                    downloadDialog.close();
+                    pageStack.currentPage.taskMenu.close();
+                }
+            }
+
+            Rectangle {
+                color: "black"
+                z: 300
+                width: 1
+                anchors.left: parent.left
+                anchors.top: parent.top
+                anchors.bottom: parent.bottom
+            }
+
+            InitPage {
+                id: initPage
+                z: 301
+                height: mainWindow.height;
+                width: mainWindow.width;
+            }
+        }
+
+    }
+}
index 997bbfc..78b362e 100644 (file)
@@ -158,7 +158,8 @@ void QmlApplicationViewer::showExpanded()
 #if defined(Q_OS_SYMBIAN) || defined(MEEGO_EDITION_HARMATTAN) || defined(Q_WS_SIMULATOR)
     showFullScreen();
 #elif defined(Q_WS_MAEMO_5)
-    showMaximized();
+    showFullScreen();
+    //showMaximized();
 #else
     show();
 #endif
index 559b422..f7048db 100644 (file)
@@ -1,3 +1,17 @@
+ubi (0.9.4-1) unstable; urgency=low
+
+  * Italian translation
+  * Support for Meego/Harmattan devices
+
+ -- Michal Kosciesza <mkiol@o2.pl>  Sun, 03 Jun 2012 19:19:01 +0200
+
+ubi (0.9.3-3) unstable; urgency=low
+
+  * Portrait mode for Meego/Harmattan
+  * SW keyboard hiding fix for Meego/Harmattan
+
+ -- Michal Kosciesza <mkiol@o2.pl>  Fri, 01 Jun 2012 22:59:59 +0200
+
 ubi (0.9.3-2) unstable; urgency=low
 
   * Patch for authorization bug
index 7d63e8a..53beff8 100644 (file)
@@ -8,19 +8,25 @@ Homepage: http://ubi.garage.maemo.org/
 
 Package: ubi
 Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: An unofficial Ubuntu One app for Maemo 5.
+Depends: ${shlibs:Depends}, ${misc:Depends}, qtquickcompat
+Description: An unofficial Ubuntu One app for Maemo/Meego.
  The Ubi app provides access to Ubuntu One cloud service. 
  Initial version supports simple storage management tasks
  like: file Download, Upload and Deletion. The plan is to
  provide other cloud features i.e. Notes editing and
  Contact synchronization.
-XB-Description-pl_PL: Nieoficjalna aplikacja Ubuntu One na Maemo 5.
+XB-Description-pl_PL: Nieoficjalna aplikacja Ubuntu One na Maemo/Meego.
  Ubi umożliwia dostęp do usługi Ubuntu One. Aktualna wersja
  obsługuje proste zarządzanie plikami takie jak: Pobieranie,
  Przesyłanie lub Usuwanie plików z chmury. Planowane jest
- wzbogacenie aplikacji o obsługę Notatek i synchrnizacje
+ wzbogacenie aplikacji o obsługę Notatek i synchronizacje
  Kontaktów.
+XB-Description-it_IT: Applicazione non ufficiale del servizio cloud di Ubuntu One.
+ Ubi permette di accedere al servizio cloud di Ubuntu One. La
+ versione iniziale supporta semplici operazioni di gestione
+ dei file come: Scaricamento, Caricamento e Cancellazione. Il
+ piano è di fornire in futuro altre funzioni cloud, ad es.
+ modifica delle Note e sincronizzazione dei Contatti.
 XSBC-Bugtracker: https://garage.maemo.org/tracker/?group_id=2327
 XB-Maemo-Display-Name: Ubi
 XB-Maemo-Icon-26: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABHNCSVQICAgI
index 559b422..f7048db 100644 (file)
@@ -1,3 +1,17 @@
+ubi (0.9.4-1) unstable; urgency=low
+
+  * Italian translation
+  * Support for Meego/Harmattan devices
+
+ -- Michal Kosciesza <mkiol@o2.pl>  Sun, 03 Jun 2012 19:19:01 +0200
+
+ubi (0.9.3-3) unstable; urgency=low
+
+  * Portrait mode for Meego/Harmattan
+  * SW keyboard hiding fix for Meego/Harmattan
+
+ -- Michal Kosciesza <mkiol@o2.pl>  Fri, 01 Jun 2012 22:59:59 +0200
+
 ubi (0.9.3-2) unstable; urgency=low
 
   * Patch for authorization bug
index 7d63e8a..f63d150 100644 (file)
@@ -9,18 +9,24 @@ Homepage: http://ubi.garage.maemo.org/
 Package: ubi
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: An unofficial Ubuntu One app for Maemo 5.
+Description: An unofficial Ubuntu One app for Maemo/Meego.
  The Ubi app provides access to Ubuntu One cloud service. 
  Initial version supports simple storage management tasks
  like: file Download, Upload and Deletion. The plan is to
  provide other cloud features i.e. Notes editing and
  Contact synchronization.
-XB-Description-pl_PL: Nieoficjalna aplikacja Ubuntu One na Maemo 5.
+XB-Description-pl_PL: Nieoficjalna aplikacja Ubuntu One na Maemo/Meego.
  Ubi umożliwia dostęp do usługi Ubuntu One. Aktualna wersja
  obsługuje proste zarządzanie plikami takie jak: Pobieranie,
  Przesyłanie lub Usuwanie plików z chmury. Planowane jest
  wzbogacenie aplikacji o obsługę Notatek i synchrnizacje
  Kontaktów.
+XB-Description-it_IT: Applicazione non ufficiale del servizio cloud di Ubuntu One.
+ Ubi permette di accedere al servizio cloud di Ubuntu One. La
+ versione iniziale supporta semplici operazioni di gestione
+ dei file come: Scaricamento, Caricamento e Cancellazione. Il
+ piano è di fornire in futuro altre funzioni cloud, ad es.
+ modifica delle Note e sincronizzazione dei Contatti.
 XSBC-Bugtracker: https://garage.maemo.org/tracker/?group_id=2327
 XB-Maemo-Display-Name: Ubi
 XB-Maemo-Icon-26: iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABHNCSVQICAgI
index 75bfe5f..f460ed5 100644 (file)
@@ -1,15 +1,82 @@
 Source: ubi
-Section: user/other
+Section: user/network
 Priority: optional
-Maintainer: Michał <mkiol@unknown>
+Maintainer: Michal Kosciesza <mkiol@o2.pl>
 Build-Depends: debhelper (>= 5), libqt4-dev
 Standards-Version: 3.7.3
-Homepage: <insert the upstream URL, if relevant>
+Homepage: http://ubi.garage.maemo.org/
 
 Package: ubi
 Architecture: any
 Depends: ${shlibs:Depends}, ${misc:Depends}
-Description: An unofficial Ubuntu One app for Maemo 5.
- <insert long description, indented with spaces>
-XSBC-Maemo-Display-Name: ubi
-XB-Maemo-Icon-26: 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
+Description: An unofficial Ubuntu One app for Maemo/Meego.
+ The Ubi app provides access to Ubuntu One cloud service. 
+ Initial version supports simple storage management tasks
+ like: file Download, Upload and Deletion. The plan is to
+ provide other cloud features i.e. Notes editing and
+ Contact synchronization.
+XB-Description-pl_PL: Nieoficjalna aplikacja Ubuntu One na Maemo/Meego.
+ Ubi umożliwia dostęp do usługi Ubuntu One. Aktualna wersja
+ obsługuje proste zarządzanie plikami takie jak: Pobieranie,
+ Przesyłanie lub Usuwanie plików z chmury. Planowane jest
+ wzbogacenie aplikacji o obsługę Notatek i synchrnizacje
+ Kontaktów.
+
+XSBC-Bugtracker: https://garage.maemo.org/tracker/?group_id=2327
+XB-Maemo-Display-Name: Ubi
+XB-Maemo-Icon-26: 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
+ d4EAAAAASUVORK5CYII=
index b9766d9..3d9ef5d 100644 (file)
@@ -8,6 +8,7 @@ evil_hack_to_fool_lupdate {
             qml/ubi/LoginPage.qml \
             qml/ubi/InitPage.qml \
             qml/ubi/main.qml \
+            qml/ubi/meego_main.qml \
             qml/ubi/PageStack.qml \
             qml/ubi/PropertiesPage.qml \
             qml/ubi/SettingsPage.qml \
diff --git a/translations/ubi.it.qm b/translations/ubi.it.qm
new file mode 100644 (file)
index 0000000..fbda539
Binary files /dev/null and b/translations/ubi.it.qm differ
diff --git a/translations/ubi.it.ts b/translations/ubi.it.ts
new file mode 100644 (file)
index 0000000..af109cb
--- /dev/null
@@ -0,0 +1,421 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="it_IT">
+<context>
+    <name>AccountPage</name>
+    <message>
+        <source>Account</source>
+        <translation>Account</translation>
+    </message>
+    <message>
+        <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
+        <translation>Autorizzazione di Ubuntu One fallita. Prova di nuovo o controlla i dati di accesso. </translation>
+    </message>
+    <message>
+        <source>Unable to connect. Check internet connection.</source>
+        <translation>Impossibile collegarsi. Controlla la connessione a internet.</translation>
+    </message>
+    <message>
+        <source>Unknown error: </source>
+        <translation>Errore sconosciuto: </translation>
+    </message>
+    <message>
+        <source>User name:</source>
+        <translation>Nome utente:</translation>
+    </message>
+    <message>
+        <source>Email:</source>
+        <translation>Email:</translation>
+    </message>
+    <message>
+        <source>Total storage:</source>
+        <translation>Spazio totale:</translation>
+    </message>
+    <message>
+        <source>Used:</source>
+        <translation>Usato:</translation>
+    </message>
+</context>
+<context>
+    <name>DialogYesNo</name>
+    <message>
+        <source>Yes</source>
+        <translation>Si</translation>
+    </message>
+    <message>
+        <source>No</source>
+        <translation>No</translation>
+    </message>
+</context>
+<context>
+    <name>DownloadArea</name>
+    <message>
+        <source>No active downloads or uploads</source>
+        <translation>Nessuno scaricamento o caricamento attivo</translation>
+    </message>
+    <message>
+        <source>Active downloads and uploads</source>
+        <translation>Scaricamenti e caricamenti attivi</translation>
+    </message>
+</context>
+<context>
+    <name>FilesPage</name>
+    <message>
+        <source>Files</source>
+        <translation>File</translation>
+    </message>
+    <message>
+        <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
+        <translation>Autorizzazione di Ubuntu One fallita. Prova di nuovo o controlla i dati di accesso. </translation>
+    </message>
+    <message>
+        <source>Unable to connect. Check internet connection.</source>
+        <translation>Impossibile collegarsi. Controlla la connessione a internet.</translation>
+    </message>
+    <message>
+        <source>Unknown error: </source>
+        <translation>Errore sconosciuto: </translation>
+    </message>
+    <message>
+        <source>Folder renamed!</source>
+        <translation>Cartella rinominata!</translation>
+    </message>
+    <message>
+        <source>New folder created!</source>
+        <translation>Nuova cartella creata!</translation>
+    </message>
+    <message>
+        <source>Empty</source>
+        <translation>Vuoto</translation>
+    </message>
+    <message>
+        <source>Folder was deleted!</source>
+        <translation>La cartella è stata eliminata!</translation>
+    </message>
+    <message>
+        <source>Authorization failed!</source>
+        <translation>Autorizzazione fallita!</translation>
+    </message>
+    <message>
+        <source>Error: </source>
+        <translation>Errore: </translation>
+    </message>
+    <message>
+        <source>Delete folder?</source>
+        <translation>Eliminare cartella?</translation>
+    </message>
+    <message>
+        <source>Enter new folder name:</source>
+        <translation>Inserisci il nome della nuova cartella:</translation>
+    </message>
+    <message>
+        <source>Invalid folder name!</source>
+        <translation>Nome cartella non valido!</translation>
+    </message>
+    <message>
+        <source>Upload file</source>
+        <translation>Carica file</translation>
+    </message>
+    <message>
+        <source>Rename</source>
+        <translation>Rinomina</translation>
+    </message>
+    <message>
+        <source>Root folder cannot be renamed.</source>
+        <translation>La cartella root non può essere rinominata.</translation>
+    </message>
+    <message>
+        <source>Delete</source>
+        <translation>Cancella</translation>
+    </message>
+    <message>
+        <source>Root folder cannot be deleted.</source>
+        <translation>La cartella root non può essere eliminata.</translation>
+    </message>
+    <message>
+        <source>New folder</source>
+        <translation>Nuova cartella</translation>
+    </message>
+    <message>
+        <source>Refresh</source>
+        <translation>Aggiorna</translation>
+    </message>
+</context>
+<context>
+    <name>InitPage</name>
+    <message>
+        <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
+        <translation>Autorizzazione di Ubuntu One fallita. Prova di nuovo o controlla le impostazioni di accesso. </translation>
+    </message>
+    <message>
+        <source>Unable to connect. Check internet connection.</source>
+        <translation>Impossibile collegarsi. Controlla la connessione a internet.</translation>
+    </message>
+    <message>
+        <source>Unknown error: </source>
+        <translation>Errore sconosciuto: </translation>
+    </message>
+    <message>
+        <source>Connecting...</source>
+        <translation>Connessione...</translation>
+    </message>
+</context>
+<context>
+    <name>LoginPage</name>
+    <message>
+        <source>Login</source>
+        <translation>Accedi</translation>
+    </message>
+    <message>
+        <source>Logged in!</source>
+        <translation>Accesso effettuato!</translation>
+    </message>
+    <message>
+        <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
+        <translation>Autorizzazione di Ubuntu One fallita. Prova di nuovo o controlla le impostazioni di accesso.</translation>
+    </message>
+    <message>
+        <source>Unable to connect. Check internet connection.</source>
+        <translation>Impossibile collegarsi. Controlla la connessione a internet.</translation>
+    </message>
+    <message>
+        <source>Unknown error: </source>
+        <translation>Errore sconosciuto: </translation>
+    </message>
+    <message>
+        <source>Ubuntu One sign in:</source>
+        <translation>Iscriviti a Ubuntu One:</translation>
+    </message>
+    <message>
+        <source>User ID</source>
+        <translation>Nome utente</translation>
+    </message>
+    <message>
+        <source>Password</source>
+        <translation>Password</translation>
+    </message>
+    <message>
+        <source>Save</source>
+        <translation>Salva</translation>
+    </message>
+</context>
+<context>
+    <name>PropertiesPage</name>
+    <message>
+        <source>File</source>
+        <translation>File</translation>
+    </message>
+    <message>
+        <source>Download</source>
+        <translation>Scarica</translation>
+    </message>
+    <message>
+        <source>Publish</source>
+        <translation>Pubblica</translation>
+    </message>
+    <message>
+        <source>Rename</source>
+        <translation>Rinomina</translation>
+    </message>
+    <message>
+        <source>Delete</source>
+        <translation>Cancella</translation>
+    </message>
+    <message>
+        <source>File deleted!</source>
+        <translation>File cancellato!</translation>
+    </message>
+    <message>
+        <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
+        <translation>Autorizzazione di Ubuntu One fallita. Prova di nuovo o controlla le impostazioni di accesso.</translation>
+    </message>
+    <message>
+        <source>Unknown error: </source>
+        <translation>Errore sconosciuto: </translation>
+    </message>
+    <message>
+        <source>Internal error!</source>
+        <translation>Errore interno!</translation>
+    </message>
+    <message>
+        <source>Unable to connect. Check internet connection.</source>
+        <translation>Impossibile collegarsi. Controlla la connessione a internet.</translation>
+    </message>
+    <message>
+        <source>File renamed!</source>
+        <translation>File rinominato!</translation>
+    </message>
+    <message>
+        <source>Publishing stopped!</source>
+        <translation>Pubblicazione interrotta!</translation>
+    </message>
+    <message>
+        <source>Publishing started!</source>
+        <translation>Pubblicazione iniziata!</translation>
+    </message>
+    <message>
+        <source>File name:</source>
+        <translation>Nome file:</translation>
+    </message>
+    <message>
+        <source>Size:</source>
+        <translation>Dimensioni:</translation>
+    </message>
+    <message>
+        <source>Created:</source>
+        <translation>Creato il:</translation>
+    </message>
+    <message>
+        <source>Changed:</source>
+        <translation>Modificato il:</translation>
+    </message>
+    <message>
+        <source>Public URL:</source>
+        <translation>URL pubblico:</translation>
+    </message>
+    <message>
+        <source>Copy</source>
+        <translation>Copia</translation>
+    </message>
+    <message>
+        <source>Public URL copied to clipboard!</source>
+        <translation>URL pubblico copiato negli appunti!</translation>
+    </message>
+    <message>
+        <source>Delete file?</source>
+        <translation>Cancellare il file?</translation>
+    </message>
+    <message>
+        <source>Stop publishing?</source>
+        <translation>Interrompere la pubblicazione?</translation>
+    </message>
+    <message>
+        <source>Start publishing?</source>
+        <translation>Iniziare la pubblicazione?</translation>
+    </message>
+    <message>
+        <source>Enter new file name:</source>
+        <translation>Inserisci il nuovo nome del file:</translation>
+    </message>
+    <message>
+        <source>Invalid file name!</source>
+        <translation>Nome file non valido!</translation>
+    </message>
+</context>
+<context>
+    <name>SettingsPage</name>
+    <message>
+        <source>Settings</source>
+        <translation>Impostazioni</translation>
+    </message>
+    <message>
+        <source>Language:</source>
+        <translation>Lingua:</translation>
+    </message>
+    <message>
+        <source>Change</source>
+        <translation>Cambia</translation>
+    </message>
+    <message>
+        <source>Logged as:</source>
+        <translation>Accesso effettuato come:</translation>
+    </message>
+    <message>
+        <source>Log out</source>
+        <translation>Esci</translation>
+    </message>
+    <message>
+        <source>Choose language:</source>
+        <translation>Scegli lingua:</translation>
+    </message>
+    <message>
+        <source>Restart application!</source>
+        <translation>Riavvia l&apos;applicazione!</translation>
+    </message>
+</context>
+<context>
+    <name>TaskMenu</name>
+    <message>
+        <source>Account</source>
+        <translation>Account</translation>
+    </message>
+    <message>
+        <source>Settings</source>
+        <translation>Impostazioni</translation>
+    </message>
+    <message>
+        <source>About Ubi</source>
+        <translation>A proposito di Ubi</translation>
+    </message>
+</context>
+<context>
+    <name>main</name>
+    <message>
+        <source>File downloaded.</source>
+        <translation>File scaricato.</translation>
+    </message>
+    <message>
+        <source>File uploaded.</source>
+        <translation>File caricato.</translation>
+    </message>
+    <message>
+        <source>Error while downloading.</source>
+        <translation>Errore durante lo scaricamento.</translation>
+    </message>
+    <message>
+        <source>Error while uploading.</source>
+        <translation>Errore durante il caricamento.</translation>
+    </message>
+    <message>
+        <source>File added to the queue.</source>
+        <translation>File aggiunto alla coda.</translation>
+    </message>
+    <message>
+        <source>File operation canceled.</source>
+        <translation>Operazione sul file cancellata.</translation>
+    </message>
+    <message>
+        <source>&lt;b&gt;Ubi&lt;/b&gt;</source>
+        <translation>&lt;b&gt;Ubi&lt;/b&gt;</translation>
+    </message>
+    <message>
+        <source>&lt;p&gt;An unofficial Ubuntu One app for Maemo 5 and other Qt-enabled platforms.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Applicazione non ufficiale di Ubuntu One per Maemo 5 e altre piattaforme compatibili con Qt.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</translation>
+    </message>
+</context>
+<context>
+    <name>meego_main</name>
+    <message>
+        <source>File downloaded.</source>
+        <translation>File scaricato.</translation>
+    </message>
+    <message>
+        <source>File uploaded.</source>
+        <translation>File caricato.</translation>
+    </message>
+    <message>
+        <source>Error while downloading.</source>
+        <translation>Errore durante lo scaricamento.</translation>
+    </message>
+    <message>
+        <source>Error while uploading.</source>
+        <translation>Errore durante il caricamento.</translation>
+    </message>
+    <message>
+        <source>File added to the queue.</source>
+        <translation>File aggiunto alla coda.</translation>
+    </message>
+    <message>
+        <source>File operation canceled.</source>
+        <translation>Operatione sul file cancellata.</translation>
+    </message>
+    <message>
+        <source>&lt;b&gt;Ubi&lt;/b&gt;</source>
+        <translation>&lt;b&gt;Ubi&lt;/b&gt;</translation>
+    </message>
+    <message>
+        <source>&lt;p&gt;An unofficial Ubuntu One app for Maemo 5 and other Qt-enabled platforms.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</source>
+        <translation>&lt;p&gt;Applicazione non ufficiale di Ubuntu One per Maemo 5 e altre piattaforme compatibili con Qt.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</translation>
+    </message>
+</context>
+</TS>
diff --git a/translations/ubi.it.ts~ b/translations/ubi.it.ts~
new file mode 100644 (file)
index 0000000..43c7114
--- /dev/null
@@ -0,0 +1,421 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!DOCTYPE TS>
+<TS version="2.0" language="it_IT">
+<context>
+    <name>AccountPage</name>
+    <message>
+        <source>Account</source>
+        <translation type="unfinished">Account</translation>
+    </message>
+    <message>
+        <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
+        <translation type="unfinished">Autorizzazione di Ubuntu One fallita.Prova di nuovo o controlla i dati di accesso. </translation>
+    </message>
+    <message>
+        <source>Unable to connect. Check internet connection.</source>
+        <translation type="unfinished">Impossibile collegarsi. Controlla la connessione a internet.</translation>
+    </message>
+    <message>
+        <source>Unknown error: </source>
+        <translation type="unfinished">Errore sconosciuto: </translation>
+    </message>
+    <message>
+        <source>User name:</source>
+        <translation type="unfinished">Nome utente:</translation>
+    </message>
+    <message>
+        <source>Email:</source>
+        <translation type="unfinished">Email:</translation>
+    </message>
+    <message>
+        <source>Total storage:</source>
+        <translation type="unfinished">Spazio totale:</translation>
+    </message>
+    <message>
+        <source>Used:</source>
+        <translation type="unfinished">Usato:</translation>
+    </message>
+</context>
+<context>
+    <name>DialogYesNo</name>
+    <message>
+        <source>Yes</source>
+        <translation type="unfinished">Si</translation>
+    </message>
+    <message>
+        <source>No</source>
+        <translation type="unfinished">No</translation>
+    </message>
+</context>
+<context>
+    <name>DownloadArea</name>
+    <message>
+        <source>No active downloads or uploads</source>
+        <translation type="unfinished">Nessuno scaricamento o caricamento attivo</translation>
+    </message>
+    <message>
+        <source>Active downloads and uploads</source>
+        <translation type="unfinished">Scaricamenti e caricamenti attivi</translation>
+    </message>
+</context>
+<context>
+    <name>FilesPage</name>
+    <message>
+        <source>Files</source>
+        <translation type="unfinished">File</translation>
+    </message>
+    <message>
+        <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
+        <translation type="unfinished">Autorizzazione di Ubuntu One fallita.Prova di nuovo o controlla i dati di accesso. </translation>
+    </message>
+    <message>
+        <source>Unable to connect. Check internet connection.</source>
+        <translation type="unfinished">Impossibile collegarsi. Controlla la connessione a internet.</translation>
+    </message>
+    <message>
+        <source>Unknown error: </source>
+        <translation type="unfinished">Errore sconosciuto: </translation>
+    </message>
+    <message>
+        <source>Folder renamed!</source>
+        <translation type="unfinished">Cartella rinominata!</translation>
+    </message>
+    <message>
+        <source>New folder created!</source>
+        <translation type="unfinished">Nuova cartella creata!</translation>
+    </message>
+    <message>
+        <source>Empty</source>
+        <translation type="unfinished">Vuoto</translation>
+    </message>
+    <message>
+        <source>Folder was deleted!</source>
+        <translation type="unfinished">La cartella è stata eliminata!</translation>
+    </message>
+    <message>
+        <source>Authorization failed!</source>
+        <translation type="unfinished">Autorizzazione fallita!</translation>
+    </message>
+    <message>
+        <source>Error: </source>
+        <translation type="unfinished">Errore: </translation>
+    </message>
+    <message>
+        <source>Delete folder?</source>
+        <translation type="unfinished">Eliminare cartella?</translation>
+    </message>
+    <message>
+        <source>Enter new folder name:</source>
+        <translation type="unfinished">Inserisci il nome della nuova cartella:</translation>
+    </message>
+    <message>
+        <source>Invalid folder name!</source>
+        <translation type="unfinished">Nome cartella non valido!</translation>
+    </message>
+    <message>
+        <source>Upload file</source>
+        <translation type="unfinished">Carica file</translation>
+    </message>
+    <message>
+        <source>Rename</source>
+        <translation type="unfinished">Rinomina</translation>
+    </message>
+    <message>
+        <source>Root folder cannot be renamed.</source>
+        <translation type="unfinished">La cartella root non può essere rinominata.</translation>
+    </message>
+    <message>
+        <source>Delete</source>
+        <translation type="unfinished">Cancella</translation>
+    </message>
+    <message>
+        <source>Root folder cannot be deleted.</source>
+        <translation type="unfinished">La cartella root non può essere eliminata.</translation>
+    </message>
+    <message>
+        <source>New folder</source>
+        <translation type="unfinished">Nuova cartella</translation>
+    </message>
+    <message>
+        <source>Refresh</source>
+        <translation type="unfinished">Aggiorna</translation>
+    </message>
+</context>
+<context>
+    <name>InitPage</name>
+    <message>
+        <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
+        <translation type="unfinished">Autorizzazione di Ubuntu One fallita.Prova di nuovo o controlla le impostazioni di accesso. </translation>
+    </message>
+    <message>
+        <source>Unable to connect. Check internet connection.</source>
+        <translation type="unfinished">Impossibile collegarsi. Controlla la connessione a internet.</translation>
+    </message>
+    <message>
+        <source>Unknown error: </source>
+        <translation type="unfinished">Errore sconosciuto: </translation>
+    </message>
+    <message>
+        <source>Connecting...</source>
+        <translation type="unfinished">Connessione...</translation>
+    </message>
+</context>
+<context>
+    <name>LoginPage</name>
+    <message>
+        <source>Login</source>
+        <translation type="unfinished">Accedi</translation>
+    </message>
+    <message>
+        <source>Logged in!</source>
+        <translation type="unfinished">Accesso effettuato!</translation>
+    </message>
+    <message>
+        <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
+        <translation type="unfinished">Autorizzazione di Ubuntu One fallita.Prova di nuovo o controlla le impostazioni di accesso.</translation>
+    </message>
+    <message>
+        <source>Unable to connect. Check internet connection.</source>
+        <translation type="unfinished">Impossibile collegarsi. Controlla la connessione a internet.</translation>
+    </message>
+    <message>
+        <source>Unknown error: </source>
+        <translation type="unfinished">Errore sconosciuto: </translation>
+    </message>
+    <message>
+        <source>Ubuntu One sign in:</source>
+        <translation type="unfinished">Iscriviti a Ubuntu One:</translation>
+    </message>
+    <message>
+        <source>User ID</source>
+        <translation type="unfinished">Nome utente</translation>
+    </message>
+    <message>
+        <source>Password</source>
+        <translation type="unfinished">Password</translation>
+    </message>
+    <message>
+        <source>Save</source>
+        <translation type="unfinished">Salva</translation>
+    </message>
+</context>
+<context>
+    <name>PropertiesPage</name>
+    <message>
+        <source>File</source>
+        <translation type="unfinished">File</translation>
+    </message>
+    <message>
+        <source>Download</source>
+        <translation type="unfinished">Scarica</translation>
+    </message>
+    <message>
+        <source>Publish</source>
+        <translation type="unfinished">Pubblica</translation>
+    </message>
+    <message>
+        <source>Rename</source>
+        <translation type="unfinished">Rinomina</translation>
+    </message>
+    <message>
+        <source>Delete</source>
+        <translation type="unfinished">Cancella</translation>
+    </message>
+    <message>
+        <source>File deleted!</source>
+        <translation type="unfinished">File cancellato!</translation>
+    </message>
+    <message>
+        <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
+        <translation type="unfinished">Autorizzazione di Ubuntu One fallita.Prova di nuovo o controlla le impostazioni di accesso.</translation>
+    </message>
+    <message>
+        <source>Unknown error: </source>
+        <translation type="unfinished">Errore sconosciuto: </translation>
+    </message>
+    <message>
+        <source>Internal error!</source>
+        <translation type="unfinished">Errore interno!</translation>
+    </message>
+    <message>
+        <source>Unable to connect. Check internet connection.</source>
+        <translation type="unfinished">Impossibile collegarsi. Controlla la connessione a internet.</translation>
+    </message>
+    <message>
+        <source>File renamed!</source>
+        <translation type="unfinished">File rinominato!</translation>
+    </message>
+    <message>
+        <source>Publishing stopped!</source>
+        <translation type="unfinished">Pubblicazione interrotta!</translation>
+    </message>
+    <message>
+        <source>Publishing started!</source>
+        <translation type="unfinished">Pubblicazione iniziata!</translation>
+    </message>
+    <message>
+        <source>File name:</source>
+        <translation type="unfinished">Nome file:</translation>
+    </message>
+    <message>
+        <source>Size:</source>
+        <translation type="unfinished">Dimensioni:</translation>
+    </message>
+    <message>
+        <source>Created:</source>
+        <translation type="unfinished">Creato il:</translation>
+    </message>
+    <message>
+        <source>Changed:</source>
+        <translation type="unfinished">Modificato il:</translation>
+    </message>
+    <message>
+        <source>Public URL:</source>
+        <translation type="unfinished">URL pubblico:</translation>
+    </message>
+    <message>
+        <source>Copy</source>
+        <translation type="unfinished">Copia</translation>
+    </message>
+    <message>
+        <source>Public URL copied to clipboard!</source>
+        <translation type="unfinished">URL pubblico copiato negli appunti!</translation>
+    </message>
+    <message>
+        <source>Delete file?</source>
+        <translation type="unfinished">Cancellare il file?</translation>
+    </message>
+    <message>
+        <source>Stop publishing?</source>
+        <translation type="unfinished">Interrompere la pubblicazione?</translation>
+    </message>
+    <message>
+        <source>Start publishing?</source>
+        <translation type="unfinished">Iniziare la pubblicazione?</translation>
+    </message>
+    <message>
+        <source>Enter new file name:</source>
+        <translation type="unfinished">Inserisci il nuovo nome del file:</translation>
+    </message>
+    <message>
+        <source>Invalid file name!</source>
+        <translation type="unfinished">Nome file non valido!</translation>
+    </message>
+</context>
+<context>
+    <name>SettingsPage</name>
+    <message>
+        <source>Settings</source>
+        <translation type="unfinished">Impostazioni</translation>
+    </message>
+    <message>
+        <source>Language:</source>
+        <translation type="unfinished">Lingua:</translation>
+    </message>
+    <message>
+        <source>Change</source>
+        <translation type="unfinished">Cambia</translation>
+    </message>
+    <message>
+        <source>Logged as:</source>
+        <translation type="unfinished">Accesso effettuato come:</translation>
+    </message>
+    <message>
+        <source>Log out</source>
+        <translation type="unfinished">Esci</translation>
+    </message>
+    <message>
+        <source>Choose language:</source>
+        <translation type="unfinished">Scegli lingua:</translation>
+    </message>
+    <message>
+        <source>Restart application!</source>
+        <translation type="unfinished">Riavvia l&apos;applicazione!</translation>
+    </message>
+</context>
+<context>
+    <name>TaskMenu</name>
+    <message>
+        <source>Account</source>
+        <translation type="unfinished">Account</translation>
+    </message>
+    <message>
+        <source>Settings</source>
+        <translation type="unfinished">Impostazioni</translation>
+    </message>
+    <message>
+        <source>About Ubi</source>
+        <translation type="unfinished">A proposito di Ubi</translation>
+    </message>
+</context>
+<context>
+    <name>main</name>
+    <message>
+        <source>File downloaded.</source>
+        <translation type="unfinished">File scaricato.</translation>
+    </message>
+    <message>
+        <source>File uploaded.</source>
+        <translation type="unfinished">File caricato.</translation>
+    </message>
+    <message>
+        <source>Error while downloading.</source>
+        <translation type="unfinished">Errore durante lo scaricamento.</translation>
+    </message>
+    <message>
+        <source>Error while uploading.</source>
+        <translation type="unfinished">Errore durante il caricamento.</translation>
+    </message>
+    <message>
+        <source>File added to the queue.</source>
+        <translation type="unfinished">File aggiunto alla coda.</translation>
+    </message>
+    <message>
+        <source>File operation canceled.</source>
+        <translation type="unfinished">Operazione sul file cancellata.</translation>
+    </message>
+    <message>
+        <source>&lt;b&gt;Ubi&lt;/b&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Ubi&lt;/b&gt;</translation>
+    </message>
+    <message>
+        <source>&lt;p&gt;An unofficial Ubuntu One app for Maemo 5 and other Qt-enabled platforms.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;p&gt;Applicazione non ufficiale di Ubuntu One per Maemo 5 e altre piattaforme compatibili con Qt.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</translation>
+    </message>
+</context>
+<context>
+    <name>meego_main</name>
+    <message>
+        <source>File downloaded.</source>
+        <translation type="unfinished">File scaricato.</translation>
+    </message>
+    <message>
+        <source>File uploaded.</source>
+        <translation type="unfinished">File caricato.</translation>
+    </message>
+    <message>
+        <source>Error while downloading.</source>
+        <translation type="unfinished">Errore durante lo scaricamento.</translation>
+    </message>
+    <message>
+        <source>Error while uploading.</source>
+        <translation type="unfinished">Errore durante il caricamento.</translation>
+    </message>
+    <message>
+        <source>File added to the queue.</source>
+        <translation type="unfinished">File aggiunto alla coda.</translation>
+    </message>
+    <message>
+        <source>File operation canceled.</source>
+        <translation type="unfinished">Operatione sul file cancellata.</translation>
+    </message>
+    <message>
+        <source>&lt;b&gt;Ubi&lt;/b&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Ubi&lt;/b&gt;</translation>
+    </message>
+    <message>
+        <source>&lt;p&gt;An unofficial Ubuntu One app for Maemo 5 and other Qt-enabled platforms.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;p&gt;Applicazione non ufficiale di Ubuntu One per Maemo 5 e altre piattaforme compatibili con Qt.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</translation>
+    </message>
+</context>
+</TS>
index ccdebe2..346f878 100644 (file)
Binary files a/translations/ubi.pl.qm and b/translations/ubi.pl.qm differ
index e43e3bb..97305de 100644 (file)
     </message>
     <message>
         <source>User name:</source>
-        <translation>Nazwa użytkownika:</translation>
+        <translation type="unfinished">Nazwa użytkownika:</translation>
     </message>
     <message>
         <source>Email:</source>
-        <translation>Email:</translation>
+        <translation type="unfinished">Email:</translation>
     </message>
     <message>
         <source>Total storage:</source>
-        <translation>Całkowita pojemność:</translation>
+        <translation type="unfinished">Całkowita pojemność:</translation>
     </message>
     <message>
         <source>Account</source>
-        <translation>Konto</translation>
+        <translation type="unfinished">Konto</translation>
     </message>
     <message>
         <source>Unable to connect!</source>
     </message>
     <message>
         <source>Used:</source>
-        <translation>Wykorzystano:</translation>
+        <translation type="unfinished">Wykorzystano:</translation>
     </message>
     <message>
         <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
-        <translation>Autoryzacja w Ubuntu One nie powiodła się. Spróbuj jeszcze raz lub sprawdź ustawienia logowania.</translation>
+        <translation type="unfinished">Autoryzacja w Ubuntu One nie powiodła się. Spróbuj jeszcze raz lub sprawdź ustawienia logowania.</translation>
     </message>
     <message>
         <source>Unable to connect. Check internet connection.</source>
-        <translation>Nie można połączyć z siecią. Sprawadź połączenie z Internetem.</translation>
+        <translation type="unfinished">Nie można połączyć z siecią. Sprawadź połączenie z Internetem.</translation>
     </message>
     <message>
         <source>Unknown error: </source>
-        <translation>Nieznany błąd:</translation>
+        <translation type="unfinished">Nieznany błąd:</translation>
     </message>
 </context>
 <context>
     <name>DialogYesNo</name>
     <message>
         <source>Yes</source>
-        <translation>Tak</translation>
+        <translation type="unfinished">Tak</translation>
     </message>
     <message>
         <source>No</source>
-        <translation>Nie</translation>
+        <translation type="unfinished">Nie</translation>
     </message>
 </context>
 <context>
     </message>
     <message>
         <source>No active downloads or uploads</source>
-        <translation>Brak aktywnych pobrań</translation>
+        <translation type="unfinished">Brak aktywnych pobrań</translation>
     </message>
     <message>
         <source>Active downloads and uploads</source>
-        <translation>Aktywne pobrania</translation>
+        <translation type="unfinished">Aktywne pobrania</translation>
     </message>
 </context>
 <context>
     <name>FilesPage</name>
     <message>
         <source>Upload file</source>
-        <translation>Wyślij nowy plik</translation>
+        <translation type="unfinished">Wyślij nowy plik</translation>
     </message>
     <message>
         <source>Rename</source>
-        <translation>Zmień nazwę</translation>
+        <translation type="unfinished">Zmień nazwę</translation>
     </message>
     <message>
         <source>Delete</source>
-        <translation>Usuń</translation>
+        <translation type="unfinished">Usuń</translation>
     </message>
     <message>
         <source>New folder</source>
-        <translation>Nowy folder</translation>
+        <translation type="unfinished">Nowy folder</translation>
     </message>
     <message>
         <source>Refresh</source>
-        <translation>Odśwież</translation>
+        <translation type="unfinished">Odśwież</translation>
     </message>
     <message>
         <source>Root folder can&apos;t be renamed!</source>
     </message>
     <message>
         <source>Authorization failed!</source>
-        <translation>Autoryzacja nie powiodła się!</translation>
+        <translation type="unfinished">Autoryzacja nie powiodła się!</translation>
     </message>
     <message>
         <source>Error: </source>
-        <translation>Błąd:</translation>
+        <translation type="unfinished">Błąd:</translation>
     </message>
     <message>
         <source>Folder renamed!</source>
-        <translation>Zmieniono nazwę!</translation>
+        <translation type="unfinished">Zmieniono nazwę!</translation>
     </message>
     <message>
         <source>New folder created!</source>
-        <translation>Utworzono folder!</translation>
+        <translation type="unfinished">Utworzono folder!</translation>
     </message>
     <message>
         <source>Folder was deleted!</source>
-        <translation>Usunięto folder!</translation>
+        <translation type="unfinished">Usunięto folder!</translation>
     </message>
     <message>
         <source>Delete folder?</source>
-        <translation>Czy usunąć folder?</translation>
+        <translation type="unfinished">Czy usunąć folder?</translation>
     </message>
     <message>
         <source>Enter new folder name...</source>
     </message>
     <message>
         <source>Invalid folder name!</source>
-        <translation>Nieprawidłowa nazwa folderu!</translation>
+        <translation type="unfinished">Nieprawidłowa nazwa folderu!</translation>
     </message>
     <message>
         <source>Files</source>
-        <translation>Pliki</translation>
+        <translation type="unfinished">Pliki</translation>
     </message>
     <message>
         <source>Unable to connect!</source>
     </message>
     <message>
         <source>Enter new folder name:</source>
-        <translation>Podaj nową nazwę folderu:</translation>
+        <translation type="unfinished">Podaj nową nazwę folderu:</translation>
     </message>
     <message>
         <source>Folder is empty.</source>
     </message>
     <message>
         <source>Empty</source>
-        <translation>Pusty</translation>
+        <translation type="unfinished">Pusty</translation>
     </message>
     <message>
         <source>Root folder cannot be renamed.</source>
-        <translation>Nie można zmienić nazwy głównego foldera.</translation>
+        <translation type="unfinished">Nie można zmienić nazwy głównego foldera.</translation>
     </message>
     <message>
         <source>Root folder cannot be deleted.</source>
-        <translation>Nie można usunąć głównego foldera.</translation>
+        <translation type="unfinished">Nie można usunąć głównego foldera.</translation>
     </message>
     <message>
         <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
-        <translation>Autoryzacja w Ubuntu One nie powiodła się. Spróbuj jeszcze raz lub sprawdź ustawienia logowania.</translation>
+        <translation type="unfinished">Autoryzacja w Ubuntu One nie powiodła się. Spróbuj jeszcze raz lub sprawdź ustawienia logowania.</translation>
     </message>
     <message>
         <source>Unable to connect. Check internet connection.</source>
-        <translation>Nie można połączyć z siecią. Sprawadź połączenie z Internetem.</translation>
+        <translation type="unfinished">Nie można połączyć z siecią. Sprawadź połączenie z Internetem.</translation>
     </message>
     <message>
         <source>Unknown error: </source>
-        <translation>Nieznany błąd:</translation>
+        <translation type="unfinished">Nieznany błąd:</translation>
     </message>
 </context>
 <context>
     <name>InitPage</name>
     <message>
         <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
-        <translation>Autoryzacja w Ubuntu One nie powiodła się. Spróbuj jeszcze raz lub sprawdź ustawienia logowania.</translation>
+        <translation type="unfinished">Autoryzacja w Ubuntu One nie powiodła się. Spróbuj jeszcze raz lub sprawdź ustawienia logowania.</translation>
     </message>
     <message>
         <source>Unable to connect. Check internet connection.</source>
-        <translation>Nie można połączyć z siecią. Sprawadź połączenie z Internetem.</translation>
+        <translation type="unfinished">Nie można połączyć z siecią. Sprawadź połączenie z Internetem.</translation>
     </message>
     <message>
         <source>Unknown error: </source>
-        <translation>Nieznany błąd:</translation>
+        <translation type="unfinished">Nieznany błąd:</translation>
     </message>
     <message>
         <source>Connecting...</source>
-        <translation>Łączenie...</translation>
+        <translation type="unfinished">Łączenie...</translation>
     </message>
 </context>
 <context>
     <name>LoginPage</name>
     <message>
         <source>User ID</source>
-        <translation>ID użytkownika</translation>
+        <translation type="unfinished">ID użytkownika</translation>
     </message>
     <message>
         <source>Password</source>
-        <translation>Hasło</translation>
+        <translation type="unfinished">Hasło</translation>
     </message>
     <message>
         <source>Save</source>
-        <translation>Zapisz</translation>
+        <translation type="unfinished">Zapisz</translation>
     </message>
     <message>
         <source>Logged in!</source>
-        <translation>Zalogowany!</translation>
+        <translation type="unfinished">Zalogowany!</translation>
     </message>
     <message>
         <source>Authorization failed!</source>
     </message>
     <message>
         <source>Login</source>
-        <translation>Logowanie</translation>
+        <translation type="unfinished">Logowanie</translation>
     </message>
     <message>
         <source>Ubuntu One sign in:</source>
-        <translation>Zaloguj się do Ubuntu One:</translation>
+        <translation type="unfinished">Zaloguj się do Ubuntu One:</translation>
     </message>
     <message>
         <source>Unable to connect!</source>
     </message>
     <message>
         <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
-        <translation>Autoryzacja w Ubuntu One nie powiodła się. Spróbuj jeszcze raz lub sprawdź ustawienia logowania.</translation>
+        <translation type="unfinished">Autoryzacja w Ubuntu One nie powiodła się. Spróbuj jeszcze raz lub sprawdź ustawienia logowania.</translation>
     </message>
     <message>
         <source>Unable to connect. Check internet connection.</source>
-        <translation>Nie można połączyć z siecią. Sprawadź połączenie z Internetem.</translation>
+        <translation type="unfinished">Nie można połączyć z siecią. Sprawadź połączenie z Internetem.</translation>
     </message>
     <message>
         <source>Unknown error: </source>
-        <translation>Nieznany błąd:</translation>
+        <translation type="unfinished">Nieznany błąd:</translation>
     </message>
 </context>
 <context>
     <name>PropertiesPage</name>
     <message>
         <source>Download</source>
-        <translation>Pobierz</translation>
+        <translation type="unfinished">Pobierz</translation>
     </message>
     <message>
         <source>Rename</source>
-        <translation>Zmień nazwę</translation>
+        <translation type="unfinished">Zmień nazwę</translation>
     </message>
     <message>
         <source>Delete</source>
-        <translation>Usuń</translation>
+        <translation type="unfinished">Usuń</translation>
     </message>
     <message>
         <source>Authorization failed!</source>
     </message>
     <message>
         <source>Internal error!</source>
-        <translation>Błąd wewnętrzny!</translation>
+        <translation type="unfinished">Błąd wewnętrzny!</translation>
     </message>
     <message>
         <source>File renamed!</source>
-        <translation>Zmieniono nazwę!</translation>
+        <translation type="unfinished">Zmieniono nazwę!</translation>
     </message>
     <message>
         <source>File name:</source>
-        <translation>Nazwa pliku:</translation>
+        <translation type="unfinished">Nazwa pliku:</translation>
     </message>
     <message>
         <source>Size:</source>
-        <translation>Rozmiar:</translation>
+        <translation type="unfinished">Rozmiar:</translation>
     </message>
     <message>
         <source>Created:</source>
-        <translation>Utworzono:</translation>
+        <translation type="unfinished">Utworzono:</translation>
     </message>
     <message>
         <source>Changed:</source>
-        <translation>Zmieniono:</translation>
+        <translation type="unfinished">Zmieniono:</translation>
     </message>
     <message>
         <source>Delete file?</source>
-        <translation>Czy usunąć plik?</translation>
+        <translation type="unfinished">Czy usunąć plik?</translation>
     </message>
     <message>
         <source>Enter new file name...</source>
     </message>
     <message>
         <source>Invalid file name!</source>
-        <translation>Nieprawidłowa nazwa pliku!</translation>
+        <translation type="unfinished">Nieprawidłowa nazwa pliku!</translation>
     </message>
     <message>
         <source>File deleted!</source>
-        <translation>Usunięto plik!</translation>
+        <translation type="unfinished">Usunięto plik!</translation>
     </message>
     <message>
         <source>File</source>
-        <translation>Plik</translation>
+        <translation type="unfinished">Plik</translation>
     </message>
     <message>
         <source>Unable to connect!</source>
     </message>
     <message>
         <source>Enter new file name:</source>
-        <translation>Podaj nową nazwę pliku:</translation>
+        <translation type="unfinished">Podaj nową nazwę pliku:</translation>
     </message>
     <message>
         <source>Publish</source>
-        <translation>Upublicznij</translation>
+        <translation type="unfinished">Upublicznij</translation>
     </message>
     <message>
         <source>Publishing stopped!</source>
-        <translation>Upublicznianie wyłączone!</translation>
+        <translation type="unfinished">Upublicznianie wyłączone!</translation>
     </message>
     <message>
         <source>Publishing started!</source>
-        <translation>Upublicznianie włączone!</translation>
+        <translation type="unfinished">Upublicznianie włączone!</translation>
     </message>
     <message>
         <source>Public URL:</source>
-        <translation>Publiczny URL:</translation>
+        <translation type="unfinished">Publiczny URL:</translation>
     </message>
     <message>
         <source>Public URL copied to clipboard!</source>
-        <translation>Publiczny URL skopiowany!</translation>
+        <translation type="unfinished">Publiczny URL skopiowany!</translation>
     </message>
     <message>
         <source>Stop publishing?</source>
-        <translation>Wyłączyć upublicznianie?</translation>
+        <translation type="unfinished">Wyłączyć upublicznianie?</translation>
     </message>
     <message>
         <source>Start publishing?</source>
-        <translation>Włączyć upublicznianie?</translation>
+        <translation type="unfinished">Włączyć upublicznianie?</translation>
     </message>
     <message>
         <source>Copy</source>
-        <translation>Skopiuj</translation>
+        <translation type="unfinished">Skopiuj</translation>
     </message>
     <message>
         <source>Ubuntu One authorization has failed. Try once again or check login settings.</source>
-        <translation>Autoryzacja w Ubuntu One nie powiodła się. Spróbuj jeszcze raz lub sprawdź ustawienia logowania.</translation>
+        <translation type="unfinished">Autoryzacja w Ubuntu One nie powiodła się. Spróbuj jeszcze raz lub sprawdź ustawienia logowania.</translation>
     </message>
     <message>
         <source>Unknown error: </source>
-        <translation>Nieznany błąd:</translation>
+        <translation type="unfinished">Nieznany błąd:</translation>
     </message>
     <message>
         <source>Unable to connect. Check internet connection.</source>
-        <translation>Nie można połączyć z siecią. Sprawadź połączenie z Internetem.</translation>
+        <translation type="unfinished">Nie można połączyć z siecią. Sprawadź połączenie z Internetem.</translation>
     </message>
 </context>
 <context>
     <name>SettingsPage</name>
     <message>
         <source>Settings</source>
-        <translation>Ustawienia</translation>
+        <translation type="unfinished">Ustawienia</translation>
     </message>
     <message>
         <source>Polish</source>
     </message>
     <message>
         <source>Language:</source>
-        <translation>Język:</translation>
+        <translation type="unfinished">Język:</translation>
     </message>
     <message>
         <source>Change</source>
-        <translation>Zmień</translation>
+        <translation type="unfinished">Zmień</translation>
     </message>
     <message>
         <source>Log out</source>
-        <translation>Wyloguj</translation>
+        <translation type="unfinished">Wyloguj</translation>
     </message>
     <message>
         <source>Logged as:</source>
-        <translation>Zalogowany jako:</translation>
+        <translation type="unfinished">Zalogowany jako:</translation>
     </message>
     <message>
         <source>Restart application!</source>
-        <translation>Zrestartuj aplikacje!</translation>
+        <translation type="unfinished">Zrestartuj aplikacje!</translation>
     </message>
     <message>
         <source>Choose language:</source>
-        <translation>Wybierz język:</translation>
+        <translation type="unfinished">Wybierz język:</translation>
     </message>
 </context>
 <context>
     <name>StartPage</name>
     <message>
         <source>About Ubi</source>
-        <translation>O Ubi</translation>
+        <translation type="obsolete">O Ubi</translation>
     </message>
     <message>
         <source>Files</source>
-        <translation>Pliki</translation>
+        <translation type="obsolete">Pliki</translation>
     </message>
     <message>
         <source>Account</source>
-        <translation>Konto</translation>
+        <translation type="obsolete">Konto</translation>
     </message>
     <message>
         <source>Settings</source>
-        <translation>Ustawienia</translation>
+        <translation type="obsolete">Ustawienia</translation>
     </message>
     <message>
         <source>&lt;b&gt;Ubi&lt;/b&gt; 1.0.0&lt;br/&gt;Ubuntu One client for Maemo 5&lt;br/&gt;&lt;small&gt;Copyright © 2012 Michal Kosciesza&lt;/small&gt;</source>
     </message>
     <message>
         <source>&lt;b&gt;Ubi&lt;/b&gt;</source>
-        <translation>&lt;b&gt;Ubi&lt;/b&gt;</translation>
+        <translation type="obsolete">&lt;b&gt;Ubi&lt;/b&gt;</translation>
     </message>
     <message>
         <source>&lt;p&gt;An unofficial Ubuntu One app for Maemo 5 and other Qt-enabled platforms.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Nieoficjalna aplikacja Ubuntu One dla Maemo 5 i innych platform obsługujących Qt.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</translation>
+        <translation type="obsolete">&lt;p&gt;Nieoficjalna aplikacja Ubuntu One dla Maemo 5 i innych platform obsługujących Qt.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</translation>
     </message>
 </context>
 <context>
     <name>TaskMenu</name>
     <message>
         <source>Account</source>
-        <translation>Konto</translation>
+        <translation type="unfinished">Konto</translation>
     </message>
     <message>
         <source>Settings</source>
-        <translation>Ustawienia</translation>
+        <translation type="unfinished">Ustawienia</translation>
     </message>
     <message>
         <source>About Ubi</source>
-        <translation>O Ubi</translation>
+        <translation type="unfinished">O Ubi</translation>
     </message>
 </context>
 <context>
     </message>
     <message>
         <source>&lt;b&gt;Ubi&lt;/b&gt;</source>
-        <translation>&lt;b&gt;Ubi&lt;/b&gt;</translation>
+        <translation type="unfinished">&lt;b&gt;Ubi&lt;/b&gt;</translation>
     </message>
     <message>
         <source>&lt;p&gt;An unofficial Ubuntu One app for Maemo 5 and other Qt-enabled platforms.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</source>
-        <translation>&lt;p&gt;Nieoficjalna aplikacja Ubuntu One dla Maemo 5 i innych platform obsługujących Qt.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</translation>
+        <translation type="unfinished">&lt;p&gt;Nieoficjalna aplikacja Ubuntu One dla Maemo 5 i innych platform obsługujących Qt.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</translation>
     </message>
     <message>
         <source>File downloaded.</source>
-        <translation>Plik został pobrany.</translation>
+        <translation type="unfinished">Plik został pobrany.</translation>
     </message>
     <message>
         <source>File uploaded.</source>
-        <translation>Plik został wysłany.</translation>
+        <translation type="unfinished">Plik został wysłany.</translation>
     </message>
     <message>
         <source>Error while downloading.</source>
-        <translation>Błąd podczas pobierania.</translation>
+        <translation type="unfinished">Błąd podczas pobierania.</translation>
     </message>
     <message>
         <source>Error while uploading.</source>
-        <translation>Błąd podczas wysyłania.</translation>
+        <translation type="unfinished">Błąd podczas wysyłania.</translation>
     </message>
     <message>
         <source>File added to the queue.</source>
-        <translation>Plik dodany do kolejki.</translation>
+        <translation type="unfinished">Plik dodany do kolejki.</translation>
     </message>
     <message>
         <source>File operation canceled.</source>
-        <translation>Operacja anulowana.</translation>
+        <translation type="unfinished">Operacja anulowana.</translation>
+    </message>
+</context>
+<context>
+    <name>meego_main</name>
+    <message>
+        <source>File downloaded.</source>
+        <translation type="unfinished">Plik został pobrany.</translation>
+    </message>
+    <message>
+        <source>File uploaded.</source>
+        <translation type="unfinished">Plik został wysłany.</translation>
+    </message>
+    <message>
+        <source>Error while downloading.</source>
+        <translation type="unfinished">Błąd podczas pobierania.</translation>
+    </message>
+    <message>
+        <source>Error while uploading.</source>
+        <translation type="unfinished">Błąd podczas wysyłania.</translation>
+    </message>
+    <message>
+        <source>File added to the queue.</source>
+        <translation type="unfinished">Plik dodany do kolejki.</translation>
+    </message>
+    <message>
+        <source>File operation canceled.</source>
+        <translation type="unfinished">Operacja anulowana.</translation>
+    </message>
+    <message>
+        <source>&lt;b&gt;Ubi&lt;/b&gt;</source>
+        <translation type="unfinished">&lt;b&gt;Ubi&lt;/b&gt;</translation>
+    </message>
+    <message>
+        <source>&lt;p&gt;An unofficial Ubuntu One app for Maemo 5 and other Qt-enabled platforms.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</source>
+        <translation type="unfinished">&lt;p&gt;Nieoficjalna aplikacja Ubuntu One dla Maemo 5 i innych platform obsługujących Qt.&lt;/p&gt;&lt;p&gt;&lt;small&gt;http://ubi.garage.maemo.org&lt;/small&gt;&lt;/p&gt;&lt;p&gt;&lt;small&gt;© 2012 Michal Kosciesza&lt;/small&gt;&lt;/p&gt;</translation>
     </message>
 </context>
 </TS>
diff --git a/ubi.pro b/ubi.pro
index 23ea7d4..660fcc9 100644 (file)
--- a/ubi.pro
+++ b/ubi.pro
@@ -1,16 +1,22 @@
 # Add more folders to ship with the application, here
-#folder_01.source = qml/ubi
-#folder_01.target = qml
-#DEPLOYMENTFOLDERS = folder_01
+folder_01.source = qml/ubi
+folder_01.target = qml
+DEPLOYMENTFOLDERS = folder_01
 
-#folder_02.source = translations/ubi.pl.qm
-#folder_02.target = translations
-#DEPLOYMENTFOLDERS += folder_02
+folder_02.source = translations/ubi.pl.qm
+folder_02.target = translations
+DEPLOYMENTFOLDERS += folder_02
+
+folder_03.source = translations/ubi.it.qm
+folder_03.target = translations
+DEPLOYMENTFOLDERS += folder_03
 
 # Additional import path used to resolve QML modules in Creator's code model
 QML_IMPORT_PATH =
 
 symbian:TARGET.UID3 = 0xE6DE55DD
+symbian:TARGET = Ubi
+symbian:VERSION = 0.9.4
 
 # Smart Installer package's UI
 # This UID is from the protected range and therefore the package will
@@ -36,7 +42,7 @@ maemo5 {
 # CONFIG += qdeclarative-boostable
 
 # Add dependency to Symbian components
-# CONFIG += qt-components
+CONFIG += qt-components
 
 # The .cpp file which was generated for your project. Feel free to hack it.
 SOURCES += main.cpp \
@@ -45,6 +51,10 @@ SOURCES += main.cpp \
 # evil_hack_to_fool_lupdate
 #include(translation.pri)
 
+contains(MEEGO_EDITION, harmattan): {
+    DEFINES += MEEGO_HARMATTAN
+}
+
 # Please do not modify the following two lines. Required for deployment.
 include(qmlapplicationviewer/qmlapplicationviewer.pri)
 qtcAddDeployment()
@@ -63,12 +73,15 @@ OTHER_FILES += \
     qtc_packaging/debian_harmattan/control \
     qtc_packaging/debian_harmattan/compat \
     qtc_packaging/debian_harmattan/changelog \
-    translation.pri
+    translation.pri \
+    meego_main_ps.qml
 
 HEADERS += \
     utils.h
 
-TRANSLATIONS += translations/ubi.pl.ts
+TRANSLATIONS += \
+    translations/ubi.pl.ts \
+    translations/ubi.it.ts
 
 RESOURCES += \
     ubi.qrc
index f4b57b1..26932e9 100644 (file)
@@ -1,10 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE QtCreatorProject>
-<!-- Written by Qt Creator 2.4.1, 2012-05-19T15:04:52. -->
+<!-- Written by Qt Creator 2.4.1, 2012-06-04T21:42:58. -->
 <qtcreator>
  <data>
   <variable>ProjectExplorer.Project.ActiveTarget</variable>
-  <value type="int">4</value>
+  <value type="int">2</value>
  </data>
  <data>
   <variable>ProjectExplorer.Project.EditorSettings</variable>
        <value type="QString">/home/mkiol/dev/Qt/ubi-build-maemo-Maemo_Qt_4_7_0__fremantle-pr13__Release/ubi_0_9_3-1_armel.deb</value>
        <value type="QString">/home/mkiol/dev/Qt/ubi-build-maemo-Maemo_Qt_4_7_0__fremantle-pr13__Release/ubi_0_0_2_armel.deb</value>
        <value type="QString">/home/mkiol/dev/Qt/ubi-build-maemo-Maemo_Qt_4_7_0__fremantle-pr13__Release/ubi_0_0_2_armel.deb</value>
+       <value type="QString">/home/mkiol/dev/Qt/ubi-build-maemo-Maemo_Qt_4_7_0__fremantle-pr13__Release/ubi_0_9_3-3_armel.deb</value>
        <value type="QString">/home/mkiol/dev/Qt/ubi-build-maemo-Maemo_Qt_4_7_0__fremantle-pr13__Release/ubi_0_9_0-2_armel.deb</value>
        <value type="QString">/home/mkiol/dev/Qt/ubi-build-maemo-Maemo_Qt_4_7_0__fremantle-pr13__Release/ubi_0_9_1-1_armel.deb</value>
        <value type="QString">/home/mkiol/dev/Qt/ubi-build-maemo-Maemo_Qt_4_7_0__fremantle-pr13__Release/ubi_0_9_3-2_armel.deb</value>
+       <value type="QString">/home/mkiol/dev/Qt/ubi-build-maemo-Maemo_Qt_4_7_0__fremantle-pr13__Release/ubi_0_9_4-1_armel.deb</value>
        <value type="QString">/home/mkiol/dev/Qt/ubi-build-maemo-Maemo_Qt_4_7_0__fremantle-pr13__Release/ubi_0_9_1-2_armel.deb</value>
        <value type="QString">/home/mkiol/dev/Qt/ubi-build-maemo-Maemo_Qt_4_7_0__fremantle-pr13__Release/ubi_0_9_2-1_armel.deb</value>
       </valuelist>
        <value type="QString">192.168.2.101</value>
        <value type="QString">192.168.2.101</value>
        <value type="QString">192.168.2.101</value>
+       <value type="QString">192.168.2.101</value>
+       <value type="QString">192.168.2.101</value>
       </valuelist>
       <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedRemotePaths">
        <value type="QString"></value>
        <value type="QString"></value>
        <value type="QString"></value>
        <value type="QString"></value>
+       <value type="QString"></value>
+       <value type="QString"></value>
       </valuelist>
       <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedTimes">
        <value type="QDateTime">2012-02-12T21:15:32</value>
        <value type="QDateTime">2012-05-18T22:20:33</value>
        <value type="QDateTime">2012-04-22T22:36:27</value>
        <value type="QDateTime">2012-04-20T23:23:40</value>
+       <value type="QDateTime">2012-06-03T19:14:15</value>
        <value type="QDateTime">2012-04-28T10:41:48</value>
        <value type="QDateTime">2012-05-03T18:56:53</value>
-       <value type="QDateTime">2012-05-19T14:49:00</value>
+       <value type="QDateTime">2012-06-02T12:03:04</value>
+       <value type="QDateTime">2012-06-03T20:34:05</value>
        <value type="QDateTime">2012-05-05T14:55:15</value>
        <value type="QDateTime">2012-05-18T21:37:42</value>
       </valuelist>
       <value type="QString" key="ProjectExplorer.ProjectConfiguration.DisplayName"></value>
       <value type="QString" key="ProjectExplorer.ProjectConfiguration.Id">MaemoUploadAndInstallDpkgPackageStep</value>
       <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedFiles">
+       <value type="QString">/home/mkiol/dev/Qt/ubi-build-harmattan-Harmattan_Target_-_QEmu_PR1_0__Qt_SDK__Release/ubi_0.9.3-2_armel.deb</value>
        <value type="QString">/home/mkiol/dev/Qt/ubi-build-harmattan-Harmattan_Target_-_QEmu_PR1_0__Qt_SDK__Release/ubi_0.9.1-2_armel.deb</value>
+       <value type="QString">/home/mkiol/dev/Qt/ubi-build-harmattan-Harmattan_Target_-_QEmu_PR1_2__Qt_SDK__Release/ubi_0.9.3-3_armel.deb</value>
+       <value type="QString">/home/mkiol/dev/Qt/ubi-build-harmattan-Harmattan_Target_-_QEmu_PR1_0__Qt_SDK__Release/ubi_0.9.3-3_armel.deb</value>
       </valuelist>
       <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedHosts">
        <value type="QString">localhost</value>
+       <value type="QString">localhost</value>
+       <value type="QString">localhost</value>
+       <value type="QString">localhost</value>
       </valuelist>
       <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedRemotePaths">
        <value type="QString"></value>
+       <value type="QString"></value>
+       <value type="QString"></value>
+       <value type="QString"></value>
       </valuelist>
       <valuelist type="QVariantList" key="Qt4ProjectManager.MaemoRunConfiguration.LastDeployedTimes">
+       <value type="QDateTime">2012-06-01T22:31:33</value>
        <value type="QDateTime">2012-05-04T14:25:52</value>
+       <value type="QDateTime">2012-06-01T23:55:18</value>
+       <value type="QDateTime">2012-06-02T12:58:48</value>
       </valuelist>
      </valuemap>
      <value type="int" key="ProjectExplorer.BuildStepList.StepsCount">3</value>
diff --git a/ubi.qrc b/ubi.qrc
index 9e57c8b..81afec8 100644 (file)
--- a/ubi.qrc
+++ b/ubi.qrc
@@ -72,6 +72,7 @@
         <file>qml/ubi/ISOdate.js</file>
         <file>qml/ubi/LoginPage.qml</file>
         <file>qml/ubi/main.qml</file>
+        <file>qml/ubi/meego_main.qml</file>
         <file>qml/ubi/Page.qml</file>
         <file>qml/ubi/PageStack.qml</file>
         <file>qml/ubi/PropertiesPage.qml</file>
@@ -83,6 +84,9 @@
         <file>qml/ubi/TopBar.qml</file>
         <file>qml/ubi/u1.js</file>
         <file>qml/ubi/UIConstants.js</file>
+        <file>translations/ubi.it.qm</file>
+        <file>translations/ubi.it.ts</file>
         <file>translations/ubi.pl.qm</file>
+        <file>translations/ubi.pl.ts</file>
     </qresource>
 </RCC>
index 4dc682a..d457574 100644 (file)
@@ -1,6 +1,7 @@
 <html>
 <head>
-<title>Ubi: an unofficial Ubuntu One app for Maemo 5 (Nokia N900) and other Qt-enabled
+<meta name="google-site-verification" content="4BCkc18HpbaqGMPerUI_EwkOttI0NzkeH2yhpRySHfA" />
+<title>Ubi: an unofficial Ubuntu One app for Maemo/Meego (Nokia N900 & N9) and other Qt-enabled
 platforms</title>
 <style type="text/css">
 body {
@@ -16,7 +17,7 @@ h1 {
   font-weight:bold;
 }
 h2 {
-  font-size:15px;
+  font-size:14px;
   font-weight:bold;
 }
 h3 {
@@ -70,7 +71,7 @@ div#content {
 
 <div id="content">
 
-<h1>An unofficial Ubuntu One app for Maemo 5 and other Qt-enabled
+<h1>An unofficial Ubuntu One app for Maemo/Meego and other Qt-enabled
 platforms</h1>
 <br/>
 
@@ -93,11 +94,12 @@ Contacts synchronization.
 </p>
 
 <h1>Devices</h1>
-<p>At the moment <strong>Ubi is available only for Nokia N900.</strong></p>
-<p>In <a href="https://garage.maemo.org/frs/?group_id=2327">Download</a> section also an experimental release for Nokia N9/950 and Symbian was published. Please note that these apps have not been tested on real devices.</p>
+<p>At the moment Ubi is available only for <strong>Nokia N900</strong>.</p>
+
+<p>In <a href="https://garage.maemo.org/frs/?group_id=2327">Download</a> section also an experimental releases for <strong>Symbian</strong> and <strong>Nokia N9</strong> were published. Please note that these apps have not been tested on real devices.</p>
 
 <h1>Download</h1>
-<p>The latest release is version <strong>0.9.3-2</strong></p>
+<p>The latest release is version <strong>0.9.4-1</strong></p>
 <h2>Nokia N900</h2>
 <p>The application can be downloaded via the Application Manager under the
 Network section if you have the <i>extras-devel</i> repository enabled.</p>
index 72839e4..82dc3f9 100644 (file)
@@ -1,6 +1,7 @@
 <html>
 <head>
-<title>Ubi: an unofficial Ubuntu One app for Maemo 5 (Nokia N900) and other Qt-enabled
+<meta name="google-site-verification" content="4BCkc18HpbaqGMPerUI_EwkOttI0NzkeH2yhpRySHfA" />
+<title>Ubi: an unofficial Ubuntu One app for Maemo/Meego (Nokia N900 & N9) and other Qt-enabled
 platforms</title>
 <style type="text/css">
 body {
@@ -16,7 +17,7 @@ h1 {
   font-weight:bold;
 }
 h2 {
-  font-size:15px;
+  font-size:14px;
   font-weight:bold;
 }
 h3 {
@@ -70,7 +71,7 @@ div#content {
 
 <div id="content">
 
-<h1>An unofficial Ubuntu One app for Maemo 5 and other Qt-enabled
+<h1>An unofficial Ubuntu One app for Maemo/Meego and other Qt-enabled
 platforms</h1>
 <br/>
 
@@ -93,11 +94,12 @@ Contacts synchronization.
 </p>
 
 <h1>Devices</h1>
-<p>At the moment <strong>Ubi is available only for Nokia N900.</strong></p>
-<p>In <a href="https://garage.maemo.org/frs/?group_id=2327">Download</a> section also an experimental release for Nokia N9/950 and Symbian was published. Please note that these apps have not been tested on real devices.</p>
+<p>At the moment Ubi is available for <strong>Nokia N900</strong> and <strong>Nokia N9</strong>.</p>
+
+<p>In <a href="https://garage.maemo.org/frs/?group_id=2327">Download</a> section also an experimental releases for <strong>Symbian</strong> were published. Please note that these apps have not been tested on real devices.</p>
 
 <h1>Download</h1>
-<p>The latest release is version <strong>0.9.3-1</strong></p>
+<p>The latest release is version <strong>0.9.4-1</strong></p>
 <h2>Nokia N900</h2>
 <p>The application can be downloaded via the Application Manager under the
 Network section if you have the <i>extras-devel</i> repository enabled.</p>
diff --git a/www/index2.html b/www/index2.html
new file mode 100644 (file)
index 0000000..5668fc3
--- /dev/null
@@ -0,0 +1,134 @@
+<html>
+<head>
+<title>Ubi: an unofficial Ubuntu One app for Maemo/Meego (Nokia N900 & N9) and other Qt-enabled
+platforms</title>
+<style type="text/css">
+body {
+  background-color: #dd4814;
+  color: white;
+  margin: 0;
+  font-family: "Ubuntu", Arial, sans-serif;
+  font-size:14px;
+  max-width: 800px;
+}
+h1 {
+  font-size:18px;
+  font-weight:bold;
+}
+h2 {
+  font-size:14px;
+  font-weight:bold;
+}
+h3 {
+  font-size:14px;
+  font-weight:bold;
+}
+a {
+  color: white;
+  text-decoration: none;
+  border-bottom: 1px dotted white;
+}
+#screenshots a {
+  text-decoration: none;
+  border: 0
+}
+ul {
+  list-style: square;
+}
+p {
+  margin: 10px;
+  margin-bottom: 20px;
+  font-size:14px;
+}
+img {
+  border-right: 1px solid black;
+  border-bottom: 1px solid black;
+  border: 1px solid black;
+  margin: 10px
+}
+div#head {
+  font-size:40px;
+  margin: 20px;
+  /*border-bottom: 2px solid black;
+  background-color: #77216f;*/
+}
+#head img {
+  border: 0;
+  margin: 10px;
+  vertical-align:middle;
+}
+div#content {
+  margin: 20px;
+}
+</style>
+</head>
+<body>
+
+<div id="head">
+<img src="ubi100.png" alt="Ubi logo" height="70" width="104"/> Ubi
+</div>
+
+<div id="content">
+
+<h1>An unofficial Ubuntu One app for Maemo/Meego and other Qt-enabled
+platforms</h1>
+<br/>
+
+<h1>Features</h1>
+<p>
+Ubi provides access to Ubuntu One cloud service. Initial
+version supports:</p>
+<ul>
+<li>file downloading</li>
+<li>file uploading</li>
+<li>file/folder deletion</li>
+<li>file/folder renaming</li>
+<li>folder creation</li>
+<li>file publishing</li>
+<li>account data view (e.g. free space)</li>
+</ul>
+<p>
+The plan is to provide other cloud features in future such as Notes and
+Contacts synchronization.
+</p>
+
+<h1>Devices</h1>
+<p>At the moment Ubi is available for <strong>Nokia N900</strong> and <strong>Nokia N9</strong>.</p>
+
+<p>In <a href="https://garage.maemo.org/frs/?group_id=2327">Download</a> section also an experimental releases for <strong>Symbian</strong> were published. Please note that these apps have not been tested on real devices.</p>
+
+<h1>Download</h1>
+<p>The latest release is version <strong>0.9.4-1</strong></p>
+<h2>Nokia N900</h2>
+<p>The application can be downloaded via the Application Manager under the
+Network section if you have the <i>extras-devel</i> repository enabled.</p>
+<p><a href="http://wiki.maemo.org/Extras-devel">Here</a> you can find instructions on how to enable <i>extras-devel</i> on Nokia N900.
+</p>
+<h2>Other devices</h2>
+<p>Find the right package in <a href="https://garage.maemo.org/frs/?group_id=2327">Download</a> section.</p>
+
+<h1>Links</h1>
+<ul>
+<li><a href="https://garage.maemo.org/projects/ubi">Project Info page @garage</a></li>
+<li><a href="http://maemo.org/packages/view/ubi/">Ubi package @maemo.org</a></li>
+<li><a href="https://garage.maemo.org/tracker/?group_id=2327">Feedback, Bug reports, feature requests</a></li>
+<li><a href="https://garage.maemo.org/frs/?group_id=2327">Downloads</a></li>
+</ul>
+<br/>
+<h1>Screenshots</h1>
+<div id="screenshots">
+<a href="big/screenshot001.png"><img src="screenshot001.png"/></a>
+<a href="big/screenshot002.png"><img src="screenshot002.png"/></a>
+<a href="big/screenshot003.png"><img src="screenshot003.png"/></a>
+<a href="big/screenshot004.png"><img src="screenshot004.png"/></a>
+<a href="big/screenshot005.png"><img src="screenshot005.png"/></a>
+<a href="big/screenshot006.png"><img src="screenshot006.png"/></a>
+</div>
+&copy; 2012 Michal Kosciesza
+</div>
+
+<div id="foot">
+<div>
+
+</body>
+</html>