An experimental fork of FluffyChat.
Go to file
Christian Pauly 757b46a6b7 Add chat select mode 2020-02-09 15:15:29 +01:00
android New store 2020-01-26 11:17:54 +00:00
assets Initial commit 2020-01-01 19:10:13 +01:00
ios New store 2020-01-26 11:17:54 +00:00
lib Add chat select mode 2020-02-09 15:15:29 +01:00
test Enhance chatencryptionsettings page 2020-02-05 09:26:41 +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 [CI] Workaround old docker images 2020-01-23 22:15:18 +01:00
.metadata Initial commit 2020-01-01 19:10:13 +01:00
CHANGELOG.md Add chat select mode 2020-02-09 15:15:29 +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 Fix translations 2020-01-29 10:16:45 +01:00
_config.yml Add license and gitlab pages stuff 2020-01-02 13:42:49 +00:00
analysis_options.yaml New store 2020-01-26 11:17:54 +00:00
pubspec.lock Add chat select mode 2020-02-09 15:15:29 +01:00
pubspec.yaml Update CHANGELOG.md, pubspec.yaml files 2020-02-09 11:39:53 +00: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 pub run intl_translation:generate_from_arb --output-dir=lib/i18n --no-use-deferred-loading lib/i18n/I18n.dart lib/i18n/intl_*.arb
  1. Make sure your language is in supportedLocales in /lib/main.dart.