Consistently use NeoChat instead of Neochat

This commit is contained in:
Nicolas Fella
2021-03-18 19:50:22 +01:00
parent 798c5e8b7c
commit 361605df71
8 changed files with 10 additions and 10 deletions

View File

@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.1)
project(Neochat)
project(NeoChat)
set(KF5_MIN_VERSION "5.77.0")
set(QT_MIN_VERSION "5.15.0")

View File

@@ -1,6 +1,6 @@
# Neochat
# NeoChat
Neochat is a client for Matrix, the decentralized communication protocol for instant
NeoChat is a client for Matrix, the decentralized communication protocol for instant
messaging. It is a fork of Spectral, using KDE frameworks, most notably Kirigami,
KConfig and KI18n.

View File

@@ -9,10 +9,10 @@
android:versionName="0.0.1"
android:versionCode="1604412458"
android:installLocation="auto">
<application android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="Neochat" android:icon="@drawable/neochat">
<application android:name="org.qtproject.qt5.android.bindings.QtApplication" android:label="NeoChat" android:icon="@drawable/neochat">
<activity android:configChanges="orientation|uiMode|screenLayout|screenSize|smallestScreenSize|layoutDirection|locale|fontScale|keyboard|keyboardHidden|navigation"
android:name="org.qtproject.qt5.android.bindings.QtActivity"
android:label="Neochat"
android:label="NeoChat"
android:windowSoftInputMode="adjustResize"
android:launchMode="singleTop">

View File

@@ -1,6 +1,6 @@
[Global]
IconName=org.kde.neochat
Name=Neochat
Name=NeoChat
Name[az]=Neochat
Name[ca]=Neochat
Name[ca@valencia]=Neochat

View File

@@ -4,7 +4,7 @@
<provides>
<binary>neochat</binary>
</provides>
<name>Neochat</name>
<name>NeoChat</name>
<name xml:lang="az">Neochat</name>
<name xml:lang="ca">Neochat</name>
<name xml:lang="ca-valencia">Neochat</name>

View File

@@ -1,5 +1,5 @@
[Desktop Entry]
Name=Neochat
Name=NeoChat
Name[az]=Neochat
Name[ca]=Neochat
Name[ca@valencia]=Neochat

View File

@@ -212,7 +212,7 @@ Kirigami.ApplicationWindow {
shortcut: StandardKey.Preferences
},
Kirigami.Action {
text: i18n("About Neochat")
text: i18n("About NeoChat")
icon.name: "help-about"
onTriggered: pushReplaceLayer(aboutPage)
enabled: pageStack.layers.currentItem.title !== i18n("About")

View File

@@ -84,7 +84,7 @@ int main(int argc, char *argv[])
QApplication::setOrganizationName("KDE");
KAboutData about(QStringLiteral("neochat"), i18n("Neochat"), QStringLiteral(NEOCHAT_VERSION_STRING), i18n("Matrix client"), KAboutLicense::GPL_V3, i18n("© 2018-2020 Black Hat, 2020 KDE Community"));
KAboutData about(QStringLiteral("neochat"), i18n("NeoChat"), QStringLiteral(NEOCHAT_VERSION_STRING), i18n("Matrix client"), KAboutLicense::GPL_V3, i18n("© 2018-2020 Black Hat, 2020 KDE Community"));
about.addAuthor(i18n("Black Hat"), QString(), QStringLiteral("bhat@encom.eu.org"));
about.addAuthor(i18n("Carl Schwan"), QString(), QStringLiteral("carl@carlschwan.eu"));
about.addAuthor(i18n("Tobias Fella"), QString(), QStringLiteral("fella@posteo.de"));