├── .github ├── FUNDING.yml └── workflows │ ├── macos.yml │ └── windows.yml ├── .gitignore ├── LICENSE ├── README.md ├── main.js ├── package.json └── translations ├── de.js ├── en.js ├── fr.js └── i18n.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/macos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/.github/workflows/macos.yml -------------------------------------------------------------------------------- /.github/workflows/windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/.github/workflows/windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/README.md -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/package.json -------------------------------------------------------------------------------- /translations/de.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/translations/de.js -------------------------------------------------------------------------------- /translations/en.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/translations/en.js -------------------------------------------------------------------------------- /translations/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/translations/fr.js -------------------------------------------------------------------------------- /translations/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/antoineguilbert/android-messages-for-desktop/HEAD/translations/i18n.js --------------------------------------------------------------------------------