Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,10 @@ Scribe-Android tries to follow [semantic versioning](https://semver.org/), a MAJ

Emojis for the following are chosen based on [gitmoji](https://gitmoji.dev/).

# Unreleased

## Changed

- ♻️ Switch translation "Not in Wikidata" to "Not in Wiktionary" to reflect migration from Wikidata to Wiktionary

# Scribe-Android 1.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@ object ENInterfaceVariables {

const val SPACE_BAR = "space"
const val LANGUAGE = "English"
const val INVALID_COMMAND_MSG = "Not in Wikidata"
const val INVALID_COMMAND_MSG = "Not in Wiktionary"
const val INVALID_COMMAND_MSG_WIKIDATA = "Not in Wikidata"
const val INVALID_COMMAND_TEXT_WIKIDATA_1 =
"Wikidata is a collaboratively edited knowledge graph that's maintained by the Wikimedia Foundation. It serves as a source of open data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKIDATA_2 =
"Scribe uses Wikidata's language data for many of its core features. We get information like noun genders, verb conjugations and much more!"
const val INVALID_COMMAND_TEXT_WIKIDATA_3 =
"You can make an account at wikidata.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
const val INVALID_COMMAND_MSG_WIKTIONARY = "Not in Wiktionary"
const val INVALID_COMMAND_TEXT_WIKTIONARY_1 =
"Wiktionary is a collaboratively edited dictionary that's maintained by the Wikimedia Foundation. It serves as a source of free linguistic data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKTIONARY_2 =
"Scribe uses Wiktionary's data to provide translations for its Translate command. Our data is derived from the many language pairs that Wiktionary's community has created!"
const val INVALID_COMMAND_TEXT_WIKTIONARY_3 =
"You can make an account at wiktionary.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
val BASE_AUTOSUGGESTIONS = listOf("I", "I'm", "we")
val NUMERIC_AUTOSUGGESTIONS = listOf("is", "to", "and")

Expand Down
16 changes: 15 additions & 1 deletion app/src/main/java/be/scri/helpers/french/FRInterfaceVariables.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@ object FRInterfaceVariables {

const val SPACE_BAR = "espace"
const val LANGUAGE = "Français"
const val INVALID_COMMAND_MSG = "Pas dans Wikidata"
const val INVALID_COMMAND_MSG = "Pas dans Wiktionary"
const val INVALID_COMMAND_MSG_WIKIDATA = "Pas dans Wikidata"
const val INVALID_COMMAND_TEXT_WIKIDATA_1 =
"Wikidata is a collaboratively edited knowledge graph that's maintained by the Wikimedia Foundation. It serves as a source of open data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKIDATA_2 =
"Scribe uses Wikidata's language data for many of its core features. We get information like noun genders, verb conjugations and much more!"
const val INVALID_COMMAND_TEXT_WIKIDATA_3 =
"You can make an account at wikidata.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
const val INVALID_COMMAND_MSG_WIKTIONARY = "Pas dans Wiktionary"
const val INVALID_COMMAND_TEXT_WIKTIONARY_1 =
"Wiktionary est un réseau de connaissances collaboratif géré par la fondation Wikimedia. Il sert de source de données ouvertes pour des projets tels que Wikipédia et bien d'autres."
const val INVALID_COMMAND_TEXT_WIKTIONARY_2 =
"Scribe utilise les données linguistiques de Wiktionary pour un grand nombre de ses fonctionnalités de base. Nous obtenons des informations telles que le genre des noms, la conjugaison des verbes et bien plus encore !"
const val INVALID_COMMAND_TEXT_WIKTIONARY_3 =
"Vous pouvez créer un compte sur wiktionary.org pour rejoindre la communauté qui soutient Scribe et bien d'autres projets. Contribuez à la diffusion d'informations gratuites dans le monde entier !"
val BASE_AUTOSUGGESTIONS = listOf("je", "il", "le")
val NUMERIC_AUTOSUGGESTIONS = listOf("je", "que", "c’est")

Expand Down
16 changes: 15 additions & 1 deletion app/src/main/java/be/scri/helpers/german/DEInterfaceVariables.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@ object DEInterfaceVariables {

const val SPACE_BAR = "Leerzeichen"
const val LANGUAGE = "Deutsch"
const val INVALID_COMMAND_MSG = "Nicht in Wikidata"
const val INVALID_COMMAND_MSG = "Nicht in Wiktionary"
const val INVALID_COMMAND_MSG_WIKIDATA = "Nicht in Wikidata"
const val INVALID_COMMAND_TEXT_WIKIDATA_1 =
"Wikidata is a collaboratively edited knowledge graph that's maintained by the Wikimedia Foundation. It serves as a source of open data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKIDATA_2 =
"Scribe uses Wikidata's language data for many of its core features. We get information like noun genders, verb conjugations and much more!"
const val INVALID_COMMAND_TEXT_WIKIDATA_3 =
"You can make an account at wikidata.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
const val INVALID_COMMAND_MSG_WIKTIONARY = "Nicht in Wiktionary"
const val INVALID_COMMAND_TEXT_WIKTIONARY_1 =
"Wiktionary ist ein kollaborativ gestalteter, mehrsprachiger Wissensgraf, der von der Wikimedia Foundation gehostet wird. Sie dient als Quelle für offene Daten für unzählige Projekte, beispielsweise Wikipedia."
const val INVALID_COMMAND_TEXT_WIKTIONARY_2 =
"Scribe nutzt Sprachdaten von Wiktionary für viele Kernfunktionen. Von dort erhalten wir Informationen wie Genera, Verbkonjugationen und viele mehr!"
const val INVALID_COMMAND_TEXT_WIKTIONARY_3 =
"Du kannst auf wiktionary.org einen Account erstellen, um der Community, die Scribe und viele andere Projekte unterstützt, beizutreten. Hilf uns dabei, der Welt freie Informationen zu geben!"
val BASE_AUTOSUGGESTIONS = listOf("ich", "die", "das")
val NUMERIC_AUTOSUGGESTIONS = listOf("Prozent", "Milionen", "Meter")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@ object ITInterfaceVariables {

const val SPACE_BAR = "spazio"
const val LANGUAGE = "Italiano"
const val INVALID_COMMAND_MSG = "Non in Wikidata"
const val INVALID_COMMAND_MSG = "Non in Wiktionary"
const val INVALID_COMMAND_MSG_WIKIDATA = "Non in Wikidata"
const val INVALID_COMMAND_TEXT_WIKIDATA_1 =
"Wikidata is a collaboratively edited knowledge graph that's maintained by the Wikimedia Foundation. It serves as a source of open data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKIDATA_2 =
"Scribe uses Wikidata's language data for many of its core features. We get information like noun genders, verb conjugations and much more!"
const val INVALID_COMMAND_TEXT_WIKIDATA_3 =
"You can make an account at wikidata.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
const val INVALID_COMMAND_MSG_WIKTIONARY = "Non in Wiktionary"
const val INVALID_COMMAND_TEXT_WIKTIONARY_1 =
"Wiktionary is a collaboratively edited dictionary that's maintained by the Wikimedia Foundation. It serves as a source of free linguistic data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKTIONARY_2 =
"Scribe uses Wiktionary's data to provide translations for its Translate command. Our data is derived from the many language pairs that Wiktionary's community has created!"
const val INVALID_COMMAND_TEXT_WIKTIONARY_3 =
"You can make an account at wiktionary.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
val BASE_AUTOSUGGESTIONS = listOf("ho", "non", "ma")
val NUMERIC_AUTOSUGGESTIONS = listOf("utenti", "anni", "e")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@ object PTInterfaceVariables {

const val SPACE_BAR = "espaço"
const val LANGUAGE = "Português"
const val INVALID_COMMAND_MSG = "Não está no Wikidata"
const val INVALID_COMMAND_MSG = "Não está no Wiktionary"
const val INVALID_COMMAND_MSG_WIKIDATA = "Não está no Wikidata"
const val INVALID_COMMAND_TEXT_WIKIDATA_1 =
"A Wikidata é um grafo de conhecimento editado colaborativamente e mantivo pela Fundação Wikimedia. A Wikidata é uma fonte de dados públicos para projetos como a Wikipédia e muitos outros."
const val INVALID_COMMAND_TEXT_WIKIDATA_2 =
"O Scribe usa dados linguísticos da Wikidata para muitas de suas funcionalidades. Temos informações sobre gêneros de substantivos, conjugações de verbos, e muito mais!"
const val INVALID_COMMAND_TEXT_WIKIDATA_3 =
"Você pode criar uma conta em wikidata.org e se juntar à comunidade que apoia o Scribe e muitos outros projetos. Ajude-nos a fornecer dados gratuitos para o mundo!"
const val INVALID_COMMAND_MSG_WIKTIONARY = "Não está no Wiktionary"
const val INVALID_COMMAND_TEXT_WIKTIONARY_1 =
"Wiktionary is a collaboratively edited dictionary that's maintained by the Wikimedia Foundation. It serves as a source of free linguistic data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKTIONARY_2 =
"Scribe uses Wiktionary's data to provide translations for its Translate command. Our data is derived from the many language pairs that Wiktionary's community has created!"
const val INVALID_COMMAND_TEXT_WIKTIONARY_3 =
"You can make an account at wiktionary.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
val BASE_AUTOSUGGESTIONS = listOf("o", "a", "eu")
val NUMERIC_AUTOSUGGESTIONS = listOf("de", "que", "a")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@ object RUInterfaceVariables {

const val SPACE_BAR = "Пробел"
const val LANGUAGE = "Pусский"
const val INVALID_COMMAND_MSG = "Нет в Викиданных"
const val INVALID_COMMAND_MSG = "Нет в Викисловарь"
const val INVALID_COMMAND_MSG_WIKIDATA = "Нет в Викиданных"
const val INVALID_COMMAND_TEXT_WIKIDATA_1 =
"Wikidata is a collaboratively edited knowledge graph that's maintained by the Wikimedia Foundation. It serves as a source of open data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKIDATA_2 =
"Scribe uses Wikidata's language data for many of its core features. We get information like noun genders, verb conjugations and much more!"
const val INVALID_COMMAND_TEXT_WIKIDATA_3 =
"You can make an account at wikidata.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
const val INVALID_COMMAND_MSG_WIKTIONARY = "Нет в Викисловарь"
const val INVALID_COMMAND_TEXT_WIKTIONARY_1 =
"Wiktionary is a collaboratively edited dictionary that's maintained by the Wikimedia Foundation. It serves as a source of free linguistic data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKTIONARY_2 =
"Scribe uses Wiktionary's data to provide translations for its Translate command. Our data is derived from the many language pairs that Wiktionary's community has created!"
const val INVALID_COMMAND_TEXT_WIKTIONARY_3 =
"You can make an account at wiktionary.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
val BASE_AUTOSUGGESTIONS = listOf("я", "а", "в")
val NUMERIC_AUTOSUGGESTIONS = listOf("в", "и", "я")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@ object ESInterfaceVariables {

const val SPACE_BAR = "espacio"
const val LANGUAGE = "Español"
const val INVALID_COMMAND_MSG = "No en Wikidata"
const val INVALID_COMMAND_MSG = "No en Wiktionary"
const val INVALID_COMMAND_MSG_WIKIDATA = "No en Wikidata"
const val INVALID_COMMAND_TEXT_WIKIDATA_1 =
"Wikidata is a collaboratively edited knowledge graph that's maintained by the Wikimedia Foundation. It serves as a source of open data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKIDATA_2 =
"Scribe uses Wikidata's language data for many of its core features. We get information like noun genders, verb conjugations and much more!"
const val INVALID_COMMAND_TEXT_WIKIDATA_3 =
"You can make an account at wikidata.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
const val INVALID_COMMAND_MSG_WIKTIONARY = "No en Wiktionary"
const val INVALID_COMMAND_TEXT_WIKTIONARY_1 =
"Wiktionary es un gráfico de conocimiento editado de forma colaborativa y mantenido por la Fundación Wikimedia. Sirve como fuente de datos abiertos para proyectos como Wikipedia y muchos otros."
const val INVALID_COMMAND_TEXT_WIKTIONARY_2 =
"Scribe utiliza los datos lingüísticos de Wiktionary para muchas de sus funciones principales. ¡Obtenemos información como géneros de sustantivos, conjugaciones de verbos y mucho más!"
const val INVALID_COMMAND_TEXT_WIKTIONARY_3 =
"Puedes crear una cuenta en wiktionary.org para unirte a la comunidad que apoya a Scribe y a muchos otros proyectos. ¡Ayúdanos a llevar información gratuita al mundo!"
val BASE_AUTOSUGGESTIONS = listOf("el", "la", "no")
val NUMERIC_AUTOSUGGESTIONS = listOf("que", "de", "en")

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,21 @@ object SVInterfaceVariables {

const val SPACE_BAR = "mellanslag"
const val LANGUAGE = "Svenska"
const val INVALID_COMMAND_MSG = "Inte i Wikidata"
const val INVALID_COMMAND_MSG = "Inte i Wiktionary"
const val INVALID_COMMAND_MSG_WIKIDATA = "Inte i Wikidata"
const val INVALID_COMMAND_TEXT_WIKIDATA_1 =
"Wikidata är en gemensamt redigerad kunskapsgraf som underhålls av Wikimedia Foundation. Det fungerar som en källa till öppen data för projekt som Wikipedia och flera andra."
const val INVALID_COMMAND_TEXT_WIKIDATA_2 =
"Scribe använder Wikidatas språkdata för många av sina kärnfunktioner. Vi får information som substantiv, genus, verbböjningar och mycket mer!"
const val INVALID_COMMAND_TEXT_WIKIDATA_3 =
"Du kan skapa ett konto på wikidata.org för att gå med i communityn som stöder Scribe och så många andra projekt. Hjälp oss att ge gratis information till världen!"
const val INVALID_COMMAND_MSG_WIKTIONARY = "Inte i Wiktionary"
const val INVALID_COMMAND_TEXT_WIKTIONARY_1 =
"Wiktionary is a collaboratively edited dictionary that's maintained by the Wikimedia Foundation. It serves as a source of free linguistic data for projects like Wikipedia and countless others."
const val INVALID_COMMAND_TEXT_WIKTIONARY_2 =
"Scribe uses Wiktionary's data to provide translations for its Translate command. Our data is derived from the many language pairs that Wiktionary's community has created!"
const val INVALID_COMMAND_TEXT_WIKTIONARY_3 =
"You can make an account at wiktionary.org to join the community that's supporting Scribe and so many other projects. Help us bring free information to the world!"
val BASE_AUTOSUGGESTIONS = listOf("jag", "det", "men")
val NUMERIC_AUTOSUGGESTIONS = listOf("jag", "det", "och")

Expand Down
Loading