Beta release version

Change file names for beta release version.
This commit is contained in:
molan-git 2020-05-01 12:23:36 +02:00
parent db90429573
commit 5b5e6e39d9
34 changed files with 540 additions and 128 deletions

View file

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.1 KiB

View file

@ -1,5 +1,5 @@
appIcon=/usr/share/harbour-tooter/config/icon-lock-harbour-tooter.png appIcon=/usr/share/harbour-tooter/config/icon-lock-harbour-tooter-beta.png
x-nemo-icon=/usr/share/harbour-tooter/config/icon-lock-harbour-tooter.png x-nemo-icon=/usr/share/harbour-tooter/config/icon-lock-harbour-tooter-beta.png
x-nemo-priority=120 x-nemo-priority=120
x-nemo-feedback=sms_exists x-nemo-feedback=sms_exists
x-nemo-led-disabled-without-body-and-summary=false x-nemo-led-disabled-without-body-and-summary=false

View file

@ -1,9 +1,9 @@
[Desktop Entry] [Desktop Entry]
Type=Application Type=Application
X-Nemo-Application-Type=silica-qt5 X-Nemo-Application-Type=silica-qt5
Icon=harbour-tooter Icon=harbour-tooter-beta
Exec=harbour-tooter Exec=harbour-tooter-beta
Name=Tooter Beta Name=Tooter β
# translation example: # translation example:
# your app name in German locale (de) # your app name in German locale (de)
# #

View file

@ -1,116 +1,117 @@
# NOTICE: # NOTICE:
# #
# Application name defined in TARGET has a corresponding QML filename. # Application name defined in TARGET has a corresponding QML filename.
# If name defined in TARGET is changed, the following needs to be done # If name defined in TARGET is changed, the following needs to be done
# to match new name: # to match new name:
# - corresponding QML filename must be changed # - corresponding QML filename must be changed
# - desktop icon filename must be changed # - desktop icon filename must be changed
# - desktop filename must be changed # - desktop filename must be changed
# - icon definition filename in desktop file must be changed # - icon definition filename in desktop file must be changed
# - translation filenames have to be changed # - translation filenames have to be changed
# The name of your application # The name of your application
TARGET = harbour-tooter-beta TARGET = harbour-tooter-beta
CONFIG += sailfishapp CONFIG += sailfishapp
QT += network dbus sql QT += network dbus sql
CONFIG += link_pkgconfig CONFIG += link_pkgconfig
PKGCONFIG += sailfishapp PKGCONFIG += sailfishapp
PKGCONFIG += \ PKGCONFIG += \
nemonotifications-qt5 nemonotifications-qt5
DEFINES += "APPVERSION=\\\"$${SPECVERSION}\\\"" DEFINES += "APPVERSION=\\\"$${SPECVERSION}\\\""
DEFINES += "APPNAME=\\\"$${TARGET}\\\"" DEFINES += "APPNAME=\\\"$${TARGET}\\\""
!exists( src/dbusAdaptor.h ) { !exists( src/dbusAdaptor.h ) {
system(qdbusxml2cpp config/ba.dysko.harbour.tooter.xml -i dbus.h -a src/dbusAdaptor) system(qdbusxml2cpp config/ba.dysko.harbour.tooter.xml -i dbus.h -a src/dbusAdaptor)
} }
config.path = /usr/share/$${TARGET}/config/ config.path = /usr/share/$${TARGET}/config/
config.files = config/icon-lock-harbour-tooter.png config.files = config/icon-lock-harbour-tooter.png
notification_categories.path = /usr/share/lipstick/notificationcategories notification_categories.path = /usr/share/lipstick/notificationcategories
notification_categories.files = config/x-harbour.tooter.activity.* notification_categories.files = config/x-harbour.tooter.activity.*
dbus_services.path = /usr/share/dbus-1/services/ dbus_services.path = /usr/share/dbus-1/services/
dbus_services.files = config/ba.dysko.harbour.tooter.service dbus_services.files = config/ba.dysko.harbour.tooter.service
interfaces.path = /usr/share/dbus-1/interfaces/ interfaces.path = /usr/share/dbus-1/interfaces/
interfaces.files = config/ba.dysko.harbour.tooter.xml interfaces.files = config/ba.dysko.harbour.tooter.xml
SOURCES += src/harbour-tooter.cpp SOURCES += \
SOURCES += src/imageuploader.cpp src/harbour-tooter-beta.cpp
SOURCES += src/filedownloader.cpp SOURCES += src/imageuploader.cpp
SOURCES += src/notifications.cpp SOURCES += src/filedownloader.cpp
SOURCES += src/dbusAdaptor.cpp SOURCES += src/notifications.cpp
SOURCES += src/dbus.cpp SOURCES += src/dbusAdaptor.cpp
SOURCES += src/dbus.cpp
HEADERS += src/imageuploader.h
HEADERS += src/filedownloader.h HEADERS += src/imageuploader.h
HEADERS += src/notifications.h HEADERS += src/filedownloader.h
HEADERS += src/dbusAdaptor.h HEADERS += src/notifications.h
HEADERS += src/dbus.h HEADERS += src/dbusAdaptor.h
HEADERS += src/dbus.h
DISTFILES += qml/harbour-tooter.qml \
qml/pages/components/VisualContainer.qml \ DISTFILES += qml/harbour-tooter-beta.qml \
qml/pages/components/MiniStatus.qml \ config/icon-lock-harbour-tooter-beta.png \
qml/pages/components/MiniHeader.qml \ qml/pages/components/VisualContainer.qml \
qml/pages/components/ItemUser.qml \ qml/pages/components/MiniStatus.qml \
qml/pages/components/MyList.qml \ qml/pages/components/MiniHeader.qml \
qml/pages/components/Navigation.qml \ qml/pages/components/ItemUser.qml \
qml/pages/components/ProfileHeader.qml \ qml/pages/components/MyList.qml \
qml/pages/components/MediaBlock.qml \ qml/pages/components/Navigation.qml \
qml/pages/components/MyImage.qml \ qml/pages/components/ProfileHeader.qml \
qml/pages/components/ImageFullScreen.qml \ qml/pages/components/MediaBlock.qml \
qml/cover/CoverPage.qml \ qml/pages/components/MyImage.qml \
qml/pages/MainPage.qml \ qml/pages/components/ImageFullScreen.qml \
qml/pages/LoginPage.qml \ qml/cover/CoverPage.qml \
qml/pages/Conversation.qml \ qml/pages/MainPage.qml \
qml/pages/components/Toot.qml \ qml/pages/LoginPage.qml \
qml/pages/Browser.qml \ qml/pages/Conversation.qml \
qml/pages/Profile.qml \ qml/pages/components/Toot.qml \
qml/pages/Settings.qml \ qml/pages/Browser.qml \
qml/lib/API.js \ qml/pages/Profile.qml \
qml/images/notification.svg \ qml/pages/Settings.qml \
qml/images/verified.svg \ qml/lib/API.js \
qml/images/boosted.svg \ qml/images/notification.svg \
qml/images/tooter.svg \ qml/images/verified.svg \
qml/images/emojiselect.svg \ qml/images/boosted.svg \
qml/images/icon-m-profile.svg \ qml/images/tooter.svg \
qml/images/icon-l-profile.svg \ qml/images/emojiselect.svg \
qml/lib/Mastodon.js \ qml/images/icon-m-profile.svg \
qml/lib/Worker.js \ qml/images/icon-l-profile.svg \
config/icon-lock-harbour-tooter.png \ qml/lib/Mastodon.js \
config/x-harbour.tooter.activity.conf \ qml/lib/Worker.js \
rpm/harbour-tooter-beta.changes \ config/x-harbour.tooter.activity.conf \
rpm/harbour-tooter-beta.changes.run.in \ rpm/harbour-tooter-beta.changes \
rpm/harbour-tooter-beta.spec \ rpm/harbour-tooter-beta.changes.run.in \
rpm/harbour-tooter-beta.yaml \ rpm/harbour-tooter-beta.spec \
translations/*.ts \ rpm/harbour-tooter-beta.yaml \
harbour-tooter-beta.desktop translations/*.ts \
harbour-tooter-beta.desktop
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
SAILFISHAPP_ICONS = 86x86 108x108 128x128 172x172
# to disable building translations every time, comment out the
# following CONFIG line # to disable building translations every time, comment out the
CONFIG += sailfishapp_i18n # following CONFIG line
CONFIG += sailfishapp_i18n
# German translation is enabled as an example. If you aren't
# planning to localize your app, remember to comment out the # German translation is enabled as an example. If you aren't
# following TRANSLATIONS line. And also do not forget to # planning to localize your app, remember to comment out the
# modify the localized app name in the the .desktop file. # following TRANSLATIONS line. And also do not forget to
TRANSLATIONS += translations/harbour-tooter-de.ts # modify the localized app name in the the .desktop file.
TRANSLATIONS += translations/harbour-tooter-el.ts TRANSLATIONS += translations/harbour-tooter-beta-de.ts
TRANSLATIONS += translations/harbour-tooter-es.ts TRANSLATIONS += translations/harbour-tooter-beta-el.ts
TRANSLATIONS += translations/harbour-tooter-fi.ts TRANSLATIONS += translations/harbour-tooter-beta-es.ts
TRANSLATIONS += translations/harbour-tooter-fr.ts TRANSLATIONS += translations/harbour-tooter-beta-fi.ts
TRANSLATIONS += translations/harbour-tooter-nl.ts TRANSLATIONS += translations/harbour-tooter-beta-fr.ts
TRANSLATIONS += translations/harbour-tooter-nl_BE.ts TRANSLATIONS += translations/harbour-tooter-beta-nl.ts
TRANSLATIONS += translations/harbour-tooter-oc.ts TRANSLATIONS += translations/harbour-tooter-beta-nl_BE.ts
TRANSLATIONS += translations/harbour-tooter-pl.ts TRANSLATIONS += translations/harbour-tooter-beta-oc.ts
TRANSLATIONS += translations/harbour-tooter-ru.ts TRANSLATIONS += translations/harbour-tooter-beta-pl.ts
TRANSLATIONS += translations/harbour-tooter-sr.ts TRANSLATIONS += translations/harbour-tooter-beta-ru.ts
TRANSLATIONS += translations/harbour-tooter-sv.ts TRANSLATIONS += translations/harbour-tooter-beta-sr.ts
TRANSLATIONS += translations/harbour-tooter-zh_CN.ts TRANSLATIONS += translations/harbour-tooter-beta-sv.ts
TRANSLATIONS += translations/harbour-tooter-it.ts TRANSLATIONS += translations/harbour-tooter-beta-zh_CN.ts
TRANSLATIONS += translations/harbour-tooter-beta-it.ts

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 7.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 26 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 32 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

View file

@ -95,7 +95,7 @@ CoverBackground {
rightMargin: Theme.paddingLarge rightMargin: Theme.paddingLarge
verticalCenter: iconNot.verticalCenter verticalCenter: iconNot.verticalCenter
} }
text: "Tooter" text: "Tooter β"
color: Theme.primaryColor color: Theme.primaryColor
} }

View file

@ -1,7 +1,7 @@
.pragma library .pragma library
.import QtQuick.LocalStorage 2.0 as LS .import QtQuick.LocalStorage 2.0 as LS
var db = LS.LocalStorage.openDatabaseSync("tooter", "", "harbour-tooter", 100000); var db = LS.LocalStorage.openDatabaseSync("tooter", "", "harbour-tooter-beta", 100000);
var conf = {}; var conf = {};
var mediator = (function(){ var mediator = (function(){
var subscribe = function(channel, fn){ var subscribe = function(channel, fn){

View file

@ -3,7 +3,7 @@
# Generated by: spectacle version 0.27 # Generated by: spectacle version 0.27
# #
Name: harbour-tooter Name: harbour-tooter-beta
# >> macros # >> macros
# << macros # << macros
@ -14,12 +14,12 @@ Name: harbour-tooter
%{?qtc_builddir:%define _builddir %qtc_builddir} %{?qtc_builddir:%define _builddir %qtc_builddir}
Summary: Tooter Summary: Tooter
Version: 1.0.4 Version: 1.0.4
Release: 1 Release: 2
Group: Qt/Qt Group: Qt/Qt
License: LICENSE License: LICENSE
URL: http://example.org/ URL: http://example.org/
Source0: %{name}-%{version}.tar.bz2 Source0: %{name}-%{version}.tar.bz2
Source100: harbour-tooter.yaml Source100: harbour-tooter-beta.yaml
Requires: sailfishsilica-qt5 >= 0.10.9 Requires: sailfishsilica-qt5 >= 0.10.9
BuildRequires: pkgconfig(sailfishapp) >= 1.0.2 BuildRequires: pkgconfig(sailfishapp) >= 1.0.2
BuildRequires: pkgconfig(Qt5Core) BuildRequires: pkgconfig(Qt5Core)

View file

@ -1,7 +1,7 @@
Name: harbour-tooter-beta Name: harbour-tooter-beta
Summary: Tooter Summary: Tooter
Version: 1.0.4 Version: 1.0.4
Release: 1 Release: 2
# The contents of the Group field should be one of the groups listed here: # The contents of the Group field should be one of the groups listed here:
# https://github.com/mer-tools/spectacle/blob/master/data/GROUPS # https://github.com/mer-tools/spectacle/blob/master/data/GROUPS
Group: Qt/Qt Group: Qt/Qt

View file

@ -36,7 +36,7 @@ int main(int argc, char *argv[])
Dbus *dbus = new Dbus(); Dbus *dbus = new Dbus();
view->rootContext()->setContextProperty("Dbus", dbus); view->rootContext()->setContextProperty("Dbus", dbus);
view->setSource(SailfishApp::pathTo("qml/harbour-tooter.qml")); view->setSource(SailfishApp::pathTo("qml/harbour-tooter-beta.qml"));
view->show(); view->show();
return app->exec(); return app->exec();
} }

View file

@ -0,0 +1,411 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1">
<context>
<name>API</name>
<message>
<location filename="../qml/lib/API.js" line="158"/>
<source>favourited</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/lib/API.js" line="169"/>
<source>followed you</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/lib/API.js" line="179"/>
<source>boosted</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/lib/API.js" line="189"/>
<location filename="../qml/lib/API.js" line="191"/>
<source>said</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>Conversation</name>
<message>
<location filename="../qml/pages/Conversation.qml" line="65"/>
<source>Conversation</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Conversation.qml" line="182"/>
<source>Write your warning here</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Conversation.qml" line="213"/>
<source>What&apos;s on your mind?</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Conversation.qml" line="274"/>
<source>Delete</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Conversation.qml" line="372"/>
<source>Public</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Conversation.qml" line="375"/>
<source>Unlisted</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Conversation.qml" line="378"/>
<source>Followers-only</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Conversation.qml" line="381"/>
<source>Direct</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Conversation.qml" line="494"/>
<source>Emojis</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Conversation.qml" line="495"/>
<source>Tap to insert</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ImageFullScreen</name>
<message>
<location filename="../qml/pages/components/ImageFullScreen.qml" line="287"/>
<source>Error loading</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>ImageUploader</name>
<message>
<location filename="../src/imageuploader.cpp" line="83"/>
<source>The file %1 does not exists</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>LoginPage</name>
<message>
<location filename="../qml/pages/LoginPage.qml" line="56"/>
<source>Login</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/LoginPage.qml" line="59"/>
<source>Instance</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/LoginPage.qml" line="65"/>
<source>Enter a valid Mastodon instance URL</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/LoginPage.qml" line="123"/>
<source>Mastodon is a free, open-source social network. A decentralized alternative to commercial platforms, it avoids the risks of a single company monopolizing your communication. Pick a server that you trust whichever you choose, you can interact with everyone else. Anyone can run their own Mastodon instance and participate in the social network seamlessly.</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/LoginPage.qml" line="194"/>
<source>Reload</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>MainPage</name>
<message>
<location filename="../qml/pages/MainPage.qml" line="64"/>
<source>Home</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/MainPage.qml" line="73"/>
<source>Notifications</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/MainPage.qml" line="83"/>
<source>Local</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/MainPage.qml" line="93"/>
<source>Federated</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/MainPage.qml" line="120"/>
<source>Search</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/MainPage.qml" line="125"/>
<source>@user or #term</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/MainPage.qml" line="249"/>
<source>New Toot</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>MiniStatus</name>
<message>
<location filename="../qml/pages/components/MiniStatus.qml" line="36"/>
<source>boosted</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/components/MiniStatus.qml" line="39"/>
<source>favourited</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/components/MiniStatus.qml" line="42"/>
<source>followed you</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>MyList</name>
<message>
<location filename="../qml/pages/components/MyList.qml" line="10"/>
<source>Loading</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/components/MyList.qml" line="11"/>
<source>please wait...</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/components/MyList.qml" line="63"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/components/MyList.qml" line="70"/>
<source>Load more</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>Profile</name>
<message>
<location filename="../qml/pages/Profile.qml" line="172"/>
<source>Summary</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="178"/>
<source>Followers</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="183"/>
<source>Following</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="188"/>
<source>Statuses</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="193"/>
<source>Favourites</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="202"/>
<source>Unfollow</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="202"/>
<source>Follow request sent!</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="202"/>
<source>Follow</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="215"/>
<source>Unmute</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="215"/>
<source>Mute</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="228"/>
<source>Unblock</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="228"/>
<source>Block</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="247"/>
<source>Bio</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Profile.qml" line="294"/>
<source>Open Profile in Browser</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>Settings</name>
<message>
<location filename="../qml/pages/Settings.qml" line="20"/>
<source>Settings</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="27"/>
<source>Remove Account</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="27"/>
<source>Add Account</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="28"/>
<source>Deauthorize this app and remove your account</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="28"/>
<source>Authorize this app to access your Mastodon account</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="60"/>
<source>Load images in toots</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="61"/>
<source>Disable this option if you want to preserve your data connection</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="68"/>
<source>Translate</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="69"/>
<source>Use Transifex to help with app translation to your language</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="85"/>
<source>Credits</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="99"/>
<source>UI/UX design and development</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="105"/>
<source>Visual identity</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="111"/>
<source>Development and translations</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="117"/>
<source>Occitan &amp; French translation</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="123"/>
<source>Chinese translation</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="129"/>
<source>Dutch translation</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="135"/>
<source>Spanish translation</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/Settings.qml" line="141"/>
<source>Added README file</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>Toot</name>
<message>
<location filename="../qml/pages/components/Toot.qml" line="35"/>
<source>boosted</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/components/Toot.qml" line="38"/>
<source>favourited</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/components/Toot.qml" line="41"/>
<source>followed you</source>
<translation type="unfinished"></translation>
</message>
</context>
<context>
<name>VisualContainer</name>
<message>
<location filename="../qml/pages/components/VisualContainer.qml" line="198"/>
<source>Unboost</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/components/VisualContainer.qml" line="198"/>
<source>Boost</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/components/VisualContainer.qml" line="235"/>
<source>Unfavorite</source>
<translation type="unfinished"></translation>
</message>
<message>
<location filename="../qml/pages/components/VisualContainer.qml" line="235"/>
<source>Favorite</source>
<translation type="unfinished"></translation>
</message>
</context>
</TS>