Skip to content

Commit 972bffc

Browse files
committed
Credits
1 parent 95004a8 commit 972bffc

File tree

4 files changed

+82
-1
lines changed

4 files changed

+82
-1
lines changed

assets/resources/strings/de.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,8 +1619,16 @@
16191619
},
16201620
{
16211621
"id": "84D8D5E0-43AA-4463-BAE8-FF5453F79FB2",
1622+
"translation": "OGAKUS"
1623+
},
1624+
{
1625+
"id": "84D8D5E0-43AA-4463-BAE8-FF5453F79FB3",
16221626
"translation": "CONTRIBUTORS"
16231627
},
1628+
{
1629+
"id": "84D8D5E0-43AA-4463-BAE8-FF5453F79FB4",
1630+
"translation": "DONATORS"
1631+
},
16241632
{
16251633
"id": "8C4BC4D5-81A3-432A-9B94-48D20DB8F559",
16261634
"translation": "Lead Developer"

assets/resources/strings/en.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1619,8 +1619,16 @@
16191619
},
16201620
{
16211621
"id": "84D8D5E0-43AA-4463-BAE8-FF5453F79FB2",
1622+
"translation": "OGAKUS"
1623+
},
1624+
{
1625+
"id": "84D8D5E0-43AA-4463-BAE8-FF5453F79FB3",
16221626
"translation": "CONTRIBUTORS"
16231627
},
1628+
{
1629+
"id": "84D8D5E0-43AA-4463-BAE8-FF5453F79FB4",
1630+
"translation": "DONATORS"
1631+
},
16241632
{
16251633
"id": "8C4BC4D5-81A3-432A-9B94-48D20DB8F559",
16261634
"translation": "Lead Developer"

assets/resources/strings/pl.json

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1619,7 +1619,15 @@
16191619
},
16201620
{
16211621
"id": "84D8D5E0-43AA-4463-BAE8-FF5453F79FB2",
1622-
"translation": "TWÓRCY"
1622+
"translation": "DEWELOPERZY"
1623+
},
1624+
{
1625+
"id": "84D8D5E0-43AA-4463-BAE8-FF5453F79FB3",
1626+
"translation": "KONTRYBUTORZY"
1627+
},
1628+
{
1629+
"id": "84D8D5E0-43AA-4463-BAE8-FF5453F79FB4",
1630+
"translation": "NIECH BĘDĄ DZIĘKI"
16231631
},
16241632
{
16251633
"id": "8C4BC4D5-81A3-432A-9B94-48D20DB8F559",

lib/interface/shared/pages/settings.dart

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1538,6 +1538,7 @@ class _SettingsPageState extends State<SettingsPage> with TickerProviderStateMix
15381538
after: Share.buildNumber.split('.').last)
15391539
],
15401540
),
1541+
// Dev
15411542
CardContainer(
15421543
margin: EdgeInsets.symmetric(
15431544
horizontal: Share.settings.appSettings.useCupertino ? 15 : 18, vertical: 15),
@@ -1583,6 +1584,62 @@ class _SettingsPageState extends State<SettingsPage> with TickerProviderStateMix
15831584
after: '213B6431-B649-4837-A089-3E2A037A4625'.localized,
15841585
)
15851586
],
1587+
),
1588+
// PR
1589+
CardContainer(
1590+
margin: EdgeInsets.symmetric(
1591+
horizontal: Share.settings.appSettings.useCupertino ? 15 : 18, vertical: 15),
1592+
filled: false,
1593+
additionalDividerMargin: 5,
1594+
largeHeader: false,
1595+
header: '84D8D5E0-43AA-4463-BAE8-FF5453F79FB3'.localized,
1596+
children: [
1597+
AdaptiveCard(
1598+
regular: true,
1599+
click: () {
1600+
try {
1601+
launchUrlString('https://github.com/uZyren');
1602+
} catch (ex) {
1603+
// ignored
1604+
}
1605+
},
1606+
child: 'Zyren',
1607+
after: 'uZyren',
1608+
),
1609+
],
1610+
),
1611+
// Kofi
1612+
CardContainer(
1613+
margin: EdgeInsets.symmetric(
1614+
horizontal: Share.settings.appSettings.useCupertino ? 15 : 18, vertical: 15),
1615+
filled: false,
1616+
additionalDividerMargin: 5,
1617+
largeHeader: false,
1618+
header: '84D8D5E0-43AA-4463-BAE8-FF5453F79FB4'.localized,
1619+
children: [
1620+
AdaptiveCard(
1621+
regular: true,
1622+
click: () {
1623+
try {
1624+
launchUrlString('https://ko-fi.com/K3K712VWQ6');
1625+
} catch (ex) {
1626+
// ignored
1627+
}
1628+
},
1629+
child: 'szaszlyki21',
1630+
),
1631+
AdaptiveCard(
1632+
regular: true,
1633+
click: () {
1634+
try {
1635+
launchUrlString('https://ko-fi.com/K3K715XDN9');
1636+
} catch (ex) {
1637+
// ignored
1638+
}
1639+
},
1640+
child: 'Zyren',
1641+
),
1642+
],
15861643
)
15871644
]))),
15881645
child: '4C9277BD-392C-4ECB-8307-8AF4E09F539A'.localized,

0 commit comments

Comments
 (0)