├── .gitignore ├── README.md ├── READMEs ├── README.chs.md ├── README.cht.md ├── README.de.md ├── README.jpn.md └── README.ko.md └── Strings ├── en.lproj ├── Constant.strings └── Localizable.strings ├── ja.lproj └── Localizable.strings ├── ru.lproj └── Localizable.strings ├── zh-Hans.lproj └── Localizable.strings └── zh-Hant.lproj └── Localizable.strings /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/README.md -------------------------------------------------------------------------------- /READMEs/README.chs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/READMEs/README.chs.md -------------------------------------------------------------------------------- /READMEs/README.cht.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/READMEs/README.cht.md -------------------------------------------------------------------------------- /READMEs/README.de.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/READMEs/README.de.md -------------------------------------------------------------------------------- /READMEs/README.jpn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/READMEs/README.jpn.md -------------------------------------------------------------------------------- /READMEs/README.ko.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/READMEs/README.ko.md -------------------------------------------------------------------------------- /Strings/en.lproj/Constant.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/Strings/en.lproj/Constant.strings -------------------------------------------------------------------------------- /Strings/en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/Strings/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /Strings/ja.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/Strings/ja.lproj/Localizable.strings -------------------------------------------------------------------------------- /Strings/ru.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/Strings/ru.lproj/Localizable.strings -------------------------------------------------------------------------------- /Strings/zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/Strings/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /Strings/zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BitRemote-Team/BitRemote/HEAD/Strings/zh-Hant.lproj/Localizable.strings --------------------------------------------------------------------------------