FurryChat/README.md

54 lines
1.3 KiB
Markdown
Raw Normal View History

2020-01-01 18:10:13 +00:00
# fluffychat
Chat with your friends.
2020-01-03 08:28:17 +00:00
[Install using F-Droid](https://mtrnord.gitlab.io/fluffychat-flutter-fdroid/fdroid/repo/)
2020-01-01 18:10:13 +00:00
2020-01-03 17:41:50 +00:00
Community: [#fluffychat:matrix.org](https://matrix.to/#/#fluffychat:matrix.org)
2020-01-03 08:28:17 +00:00
## How to build
2020-01-01 18:10:13 +00:00
2020-01-03 08:28:17 +00:00
1. [Install flutter](https://flutter.dev)
2020-01-01 18:10:13 +00:00
2020-01-03 08:28:17 +00:00
2. Clone the repo
2020-01-01 18:10:13 +00:00
2020-01-03 08:28:17 +00:00
### Android / iOS
3. `flutter run`
### Web
3. `flutter channel beta && flutter upgrade`
4. `flutter config --enable-web`
5. `flutter run`
2020-01-20 08:50:49 +00:00
## How to add translations for your language
1. Replace the non-translated string in the codebase:
```
Text("Hello world"),
```
with a method call:
```
Text(I18n.of(context).helloWorld),
```
And add the method to `/lib/i18n/i18n.dart`:
```
String get helloWorld => Intl.message('Hello world');
```
2. Add the string to the .arb files with this command:
```
flutter pub run intl_translation:extract_to_arb --output-dir=lib/i18n lib/i18n/i18n.dart
```
3. Copy the new translation objects from `/lib/i18n/intl_message.arb` to `/lib/i18n/intl_<yourlanguage>.arb` and translate it or create a new file for your language by copying `intl_message.arb`.
4. Update the translations with this command:
```
2020-02-22 19:05:04 +00:00
flutter pub pub run intl_translation:generate_from_arb --output-dir=lib/i18n --no-use-deferred-loading lib/i18n/i18n.dart lib/i18n/intl_*.arb
2020-01-20 08:50:49 +00:00
```
5. Make sure your language is in `supportedLocales` in `/lib/main.dart`.