Skip to content

Commit

Permalink
remove third gender since discussions are not fully resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
Danfro committed Nov 20, 2021
1 parent d90fb90 commit a522a08
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 14 deletions.
11 changes: 5 additions & 6 deletions po/de.po
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: steps.jranaraki\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-10-31 22:11+0000\n"
"PO-Revision-Date: 2021-10-31 23:12+0100\n"
"POT-Creation-Date: 2021-11-20 21:31+0000\n"
"PO-Revision-Date: 2021-11-20 22:32+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
Expand Down Expand Up @@ -110,10 +110,6 @@ msgstr "Weiblich"
msgid "Male"
msgstr "Männlich"

#: ../qml/Setting.qml:88 ../qml/Setting.qml:243
msgid "Other"
msgstr "Anderes"

#: ../qml/Setting.qml:108
msgid "Age"
msgstr "Alter"
Expand All @@ -137,3 +133,6 @@ msgstr "Empfindlichkeit"
#: ../qml/Setting.qml:221
msgid "Goal (steps)"
msgstr "Tagesziel (Schritte)"

#~ msgid "Other"
#~ msgstr "Anderes"
6 changes: 1 addition & 5 deletions po/steps.jranaraki.pot
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: steps.jranaraki\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-10-31 22:12+0000\n"
"POT-Creation-Date: 2021-11-20 21:31+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
Expand Down Expand Up @@ -97,10 +97,6 @@ msgstr ""
msgid "Male"
msgstr ""

#: ../qml/Setting.qml:88 ../qml/Setting.qml:243
msgid "Other"
msgstr ""

#: ../qml/Setting.qml:108
msgid "Age"
msgstr ""
Expand Down
4 changes: 1 addition & 3 deletions qml/Setting.qml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ Page {

Column {
Repeater {
model: [i18n.tr("Male"), i18n.tr("Female"), i18n.tr("Other")]
model: [i18n.tr("Male"), i18n.tr("Female")]
Button {
text: modelData
width: parent.width
Expand Down Expand Up @@ -240,8 +240,6 @@ Page {
function calStride() {
if (sexValue.text == i18n.tr("Male")) {
strideText.text = Math.round(heightText.text * 0.3937008 * 0.415 * 100) / 100
} else if (sexValue.text == i18n.tr("Other")) {
strideText.text = Math.round(heightText.text * 0.3937008 * 0.414 * 100) / 100
} else {
strideText.text = Math.round(heightText.text * 0.3937008 * 0.413 * 100) / 100
}
Expand Down

0 comments on commit a522a08

Please sign in to comment.