├── .gitattributes ├── .gitignore ├── BuildDeb.command ├── DEBIAN └── control ├── README.md ├── ar.lproj └── Localizable.strings ├── de.lproj └── Localizable.strings ├── en.lproj └── Localizable.strings ├── id.lproj └── Localizable.strings ├── ko.lproj └── Localizable.strings ├── zh-Hans.lproj └── Localizable.strings └── zh-Hant.lproj └── Localizable.strings /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.DS_Store 2 | build 3 | *.deb -------------------------------------------------------------------------------- /BuildDeb.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/BuildDeb.command -------------------------------------------------------------------------------- /DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/DEBIAN/control -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/README.md -------------------------------------------------------------------------------- /ar.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/ar.lproj/Localizable.strings -------------------------------------------------------------------------------- /de.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/de.lproj/Localizable.strings -------------------------------------------------------------------------------- /en.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/en.lproj/Localizable.strings -------------------------------------------------------------------------------- /id.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/id.lproj/Localizable.strings -------------------------------------------------------------------------------- /ko.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/ko.lproj/Localizable.strings -------------------------------------------------------------------------------- /zh-Hans.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/zh-Hans.lproj/Localizable.strings -------------------------------------------------------------------------------- /zh-Hant.lproj/Localizable.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/powenn/permasigneriOS-Localizations/HEAD/zh-Hant.lproj/Localizable.strings --------------------------------------------------------------------------------