An experimental fork of FluffyChat.
Go to file
Christian Pauly a776ac1513 Add localizations 2020-01-20 13:46:39 +01:00
android Handle matrix.to links 2020-01-19 19:28:12 +01:00
assets Initial commit 2020-01-01 19:10:13 +01:00
ios More features 2020-01-05 11:27:03 +00:00
lib Add localizations 2020-01-20 13:46:39 +01:00
test Minor fixes 2020-01-02 22:31:39 +01:00
web Initial commit 2020-01-01 19:10:13 +01:00
.gitignore Add firebase stuff 2020-01-03 17:23:40 +01:00
.gitlab-ci.yml Update .gitlab-ci.yml 2020-01-07 14:07:29 +00:00
.metadata Initial commit 2020-01-01 19:10:13 +01:00
CHANGELOG.md Clean up 2020-01-18 13:27:36 +01:00
Gemfile Add license and gitlab pages stuff 2020-01-02 13:42:49 +00:00
Gemfile.lock Add license and gitlab pages stuff 2020-01-02 13:42:49 +00:00
LICENSE Add license and gitlab pages stuff 2020-01-02 13:42:49 +00:00
README.md Add localizations system 2020-01-20 09:50:49 +01:00
_config.yml Add license and gitlab pages stuff 2020-01-02 13:42:49 +00:00
analysis_options.yaml Minor fixes 2020-01-02 22:31:39 +01:00
pubspec.lock Add localizations system 2020-01-20 09:50:49 +01:00
pubspec.yaml Add localizations system 2020-01-20 09:50:49 +01:00

README.md

fluffychat

Chat with your friends.

Install using F-Droid

Community: #fluffychat:matrix.org

How to build

  1. Install flutter

  2. Clone the repo

Android / iOS

  1. flutter run

Web

  1. flutter channel beta && flutter upgrade

  2. flutter config --enable-web

  3. flutter run

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');
  1. 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
  1. 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.

  2. Update the translations with this command:

flutter pub run intl_translation:generate_from_arb \
    --output-dir=lib/i18n --no-use-deferred-loading \
    lib/main.dart lib/i18n/intl_*.arb
  1. Make sure your language is in supportedLocales in /lib/main.dart.