├── untranslated_messages.json ├── linux ├── .gitignore ├── runner │ ├── main.cc │ ├── my_application.h │ └── CMakeLists.txt ├── packaging │ ├── appimage │ │ └── make_config.yaml │ ├── rpm │ │ └── make_config.yaml │ └── deb │ │ └── make_config.yaml ├── markdown_editor.desktop └── flutter │ ├── generated_plugin_registrant.h │ ├── generated_plugin_registrant.cc │ └── generated_plugins.cmake ├── fastlane └── metadata │ └── android │ ├── en-US │ ├── video.txt │ ├── title.txt │ ├── changelogs │ │ └── 4.txt │ ├── short_description.txt │ ├── images │ │ ├── icon.png │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ ├── 1_en-US.png │ │ │ ├── 2_en-US.png │ │ │ ├── 3_en-US.png │ │ │ ├── 4_en-US.png │ │ │ ├── 5_en-US.png │ │ │ └── 6_en-US.png │ └── full_description.txt │ └── de │ ├── short_description.txt │ └── full_description.txt ├── ios ├── Flutter │ ├── Debug.xcconfig │ ├── Release.xcconfig │ └── AppFrameworkInfo.plist ├── Runner │ ├── Runner-Bridging-Header.h │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── AppIcon-29.png │ │ │ ├── AppIcon@2x.png │ │ │ ├── AppIcon@3x.png │ │ │ ├── AppIcon-20@2x.png │ │ │ ├── AppIcon-20@3x.png │ │ │ ├── AppIcon-29@2x.png │ │ │ ├── AppIcon-29@3x.png │ │ │ ├── AppIcon-40@2x.png │ │ │ ├── AppIcon-40@3x.png │ │ │ ├── AppIcon~ipad.png │ │ │ ├── AppIcon-20~ipad.png │ │ │ ├── AppIcon-29~ipad.png │ │ │ ├── AppIcon-40~ipad.png │ │ │ ├── AppIcon@2x~ipad.png │ │ │ ├── AppIcon-20@2x~ipad.png │ │ │ ├── AppIcon-29@2x~ipad.png │ │ │ ├── AppIcon-40@2x~ipad.png │ │ │ ├── AppIcon-60@2x~car.png │ │ │ ├── AppIcon-60@3x~car.png │ │ │ ├── AppIcon-83.5@2x~ipad.png │ │ │ └── AppIcon~ios-marketing.png │ │ └── LaunchImage.imageset │ │ │ ├── LaunchImage.png │ │ │ ├── LaunchImage@2x.png │ │ │ ├── LaunchImage@3x.png │ │ │ ├── README.md │ │ │ └── Contents.json │ └── AppDelegate.swift ├── fastlane │ ├── Appfile │ ├── Pluginfile │ └── Matchfile ├── Runner.xcodeproj │ └── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── WorkspaceSettings.xcsettings │ │ └── IDEWorkspaceChecks.plist ├── Gemfile ├── RunnerTests │ └── RunnerTests.swift └── .gitignore ├── macos ├── Flutter │ ├── Flutter-Debug.xcconfig │ ├── Flutter-Release.xcconfig │ └── GeneratedPluginRegistrant.swift ├── Runner │ ├── Configs │ │ ├── Debug.xcconfig │ │ ├── Release.xcconfig │ │ ├── Warnings.xcconfig │ │ └── AppInfo.xcconfig │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ ├── app_icon_16.png │ │ │ ├── app_icon_32.png │ │ │ ├── app_icon_64.png │ │ │ ├── app_icon_1024.png │ │ │ ├── app_icon_128.png │ │ │ ├── app_icon_256.png │ │ │ └── app_icon_512.png │ ├── Release.entitlements │ ├── AppDelegate.swift │ ├── MainFlutterWindow.swift │ ├── DebugProfile.entitlements │ └── Info.plist ├── .gitignore ├── Runner.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── Runner.xcodeproj │ └── project.xcworkspace │ │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── RunnerTests │ └── RunnerTests.swift ├── web ├── favicon.ico ├── icons │ ├── icon-192.png │ ├── icon-512.png │ ├── Icon-maskable-192.png │ └── Icon-maskable-512.png ├── index.html └── manifest.json ├── android ├── fastlane │ ├── Appfile │ └── Pluginfile ├── app │ └── src │ │ ├── main │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_background.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_monochrome.png │ │ │ ├── mipmap-anydpi-v26 │ │ │ └── ic_launcher.xml │ │ │ ├── drawable │ │ │ └── launch_background.xml │ │ │ ├── drawable-v21 │ │ │ └── launch_background.xml │ │ │ ├── values │ │ │ └── styles.xml │ │ │ └── values-night │ │ │ └── styles.xml │ │ ├── debug │ │ └── AndroidManifest.xml │ │ └── profile │ │ └── AndroidManifest.xml ├── gradle.properties ├── gradle │ └── wrapper │ │ └── gradle-wrapper.properties ├── .gitignore ├── Gemfile ├── build.gradle.kts └── settings.gradle.kts ├── screenshots ├── screenshot_1.png ├── screenshot_2.png ├── screenshot_3.png ├── screenshot_4.png ├── screenshot_5.png └── screenshot_6.png ├── snap ├── gui │ ├── markdown-editor.png │ └── markdown-editor.desktop └── snapcraft.yaml ├── windows ├── runner │ ├── resources │ │ └── app_icon.ico │ ├── resource.h │ ├── utils.h │ ├── runner.exe.manifest │ ├── flutter_window.h │ └── main.cpp ├── .gitignore └── flutter │ ├── generated_plugin_registrant.h │ ├── generated_plugin_registrant.cc │ └── generated_plugins.cmake ├── l10n.yaml ├── .github ├── FUNDING.yml ├── workflows │ └── pr-checker.yaml └── ISSUE_TEMPLATE │ ├── feature_request.md │ └── bug_report.md ├── CHANGELOG.md ├── distribute_options.yaml ├── SECURITY.md ├── lib ├── widgets │ └── MarkdownBody │ │ └── custom_checkbox.dart └── l10n │ ├── app_yue.arb │ ├── app_zh.arb │ ├── app_ko.arb │ ├── app_ja.arb │ ├── app_am.arb │ ├── app_ti.arb │ ├── app_ar.arb │ ├── app_la.arb │ ├── app_ht.arb │ ├── app_crs.arb │ ├── app_sat.arb │ ├── app_ach.arb │ ├── app_awa.arb │ ├── app_mwr.arb │ ├── app_jam.arb │ ├── app_th.arb │ ├── app_bal.arb │ ├── app_jv.arb │ ├── app_ber.arb │ ├── app_et.arb │ ├── app_din.arb │ ├── app_he.arb │ ├── app_iba.arb │ ├── app_bew.arb │ ├── app_gaa.arb │ ├── app_kk.arb │ ├── app_km.arb │ ├── app_kri.arb │ ├── app_sk.arb │ ├── app_sv.arb │ ├── app_tt.arb │ ├── app_ug.arb │ ├── app_yo.arb │ ├── app_da.arb │ ├── app_lo.arb │ ├── app_pa.arb │ ├── app_sd.arb │ ├── app_ur.arb │ ├── app_mfe.arb │ ├── app_ps.arb │ ├── app_tpi.arb │ ├── app_fy.arb │ ├── app_gu.arb │ ├── app_shn.arb │ ├── app_tr.arb │ ├── app_af.arb │ ├── app_ckb.arb │ ├── app_cs.arb │ ├── app_mn.arb │ ├── app_ms.arb │ ├── app_new.arb │ ├── app_no.arb │ ├── app_su.arb │ ├── app_doi.arb │ ├── app_tet.arb │ ├── app_bci.arb │ ├── app_cnh.arb │ ├── app_hi.arb │ ├── app_ky.arb │ ├── app_pl.arb │ ├── app_bn.arb │ ├── app_cgg.arb │ ├── app_dyu.arb │ ├── app_ha.arb │ ├── app_ig.arb │ ├── app_mr.arb │ ├── app_btx.arb │ ├── app_fa.arb │ ├── app_hr.arb │ ├── app_mam.arb │ ├── app_min.arb │ ├── app_mt.arb │ ├── app_tiv.arb │ ├── app_vec.arb │ ├── app_as.arb │ ├── app_bs.arb │ ├── app_cy.arb │ ├── app_fur.arb │ ├── app_hy.arb │ ├── app_sw.arb │ ├── app_vi.arb │ ├── app_ak.arb │ ├── app_fon.arb │ ├── app_luo.arb │ ├── app_nus.arb │ ├── app_pt.arb │ ├── app_sr.arb │ ├── app_tk.arb │ └── app_ca.arb ├── pull_request_template.md ├── pubspec.yaml ├── LICENSE └── .gitignore /untranslated_messages.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /linux/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Markdown Editor -------------------------------------------------------------------------------- /ios/Flutter/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Flutter/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /ios/Runner/Runner-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "GeneratedPluginRegistrant.h" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /macos/Flutter/Flutter-Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "ephemeral/Flutter-Generated.xcconfig" 2 | -------------------------------------------------------------------------------- /web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/web/favicon.ico -------------------------------------------------------------------------------- /fastlane/metadata/android/de/short_description.txt: -------------------------------------------------------------------------------- 1 | einfaches Bearbeiten und Gestalten von „.md“-Dateien -------------------------------------------------------------------------------- /web/icons/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/web/icons/icon-192.png -------------------------------------------------------------------------------- /web/icons/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/web/icons/icon-512.png -------------------------------------------------------------------------------- /android/fastlane/Appfile: -------------------------------------------------------------------------------- 1 | json_key_file("../google_service_account.json") 2 | package_name(ENV["APP_PACKAGE_NAME"]) 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | Updated the Dependencies and Removed the All File Access Permission -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Markdown Editor is an app for easy editing and styling of ".md" files. -------------------------------------------------------------------------------- /macos/Runner/Configs/Debug.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Debug.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /screenshots/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/screenshots/screenshot_1.png -------------------------------------------------------------------------------- /screenshots/screenshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/screenshots/screenshot_2.png -------------------------------------------------------------------------------- /screenshots/screenshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/screenshots/screenshot_3.png -------------------------------------------------------------------------------- /screenshots/screenshot_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/screenshots/screenshot_4.png -------------------------------------------------------------------------------- /screenshots/screenshot_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/screenshots/screenshot_5.png -------------------------------------------------------------------------------- /screenshots/screenshot_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/screenshots/screenshot_6.png -------------------------------------------------------------------------------- /snap/gui/markdown-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/snap/gui/markdown-editor.png -------------------------------------------------------------------------------- /macos/Runner/Configs/Release.xcconfig: -------------------------------------------------------------------------------- 1 | #include "../../Flutter/Flutter-Release.xcconfig" 2 | #include "Warnings.xcconfig" 3 | -------------------------------------------------------------------------------- /web/icons/Icon-maskable-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/web/icons/Icon-maskable-192.png -------------------------------------------------------------------------------- /web/icons/Icon-maskable-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/web/icons/Icon-maskable-512.png -------------------------------------------------------------------------------- /macos/.gitignore: -------------------------------------------------------------------------------- 1 | # Flutter-related 2 | **/Flutter/ephemeral/ 3 | **/Pods/ 4 | 5 | # Xcode-related 6 | **/dgph 7 | **/xcuserdata/ 8 | -------------------------------------------------------------------------------- /windows/runner/resources/app_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/windows/runner/resources/app_icon.ico -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@3x.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@3x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_16.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_32.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_64.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_background.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.png -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- 1 | org.gradle.jvmargs=-Xmx8G -XX:MaxMetaspaceSize=4G -XX:ReservedCodeCacheSize=512m -XX:+HeapDumpOnOutOfMemoryError 2 | android.useAndroidX=true 3 | android.enableJetifier=true -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon@2x~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_1024.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_128.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_256.png -------------------------------------------------------------------------------- /macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/macos/Runner/Assets.xcassets/AppIcon.appiconset/app_icon_512.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/3_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/4_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/5_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/5_en-US.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/6_en-US.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-20@2x~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-29@2x~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-40@2x~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-60@2x~car.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x~car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-60@3x~car.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5@2x~ipad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon-83.5@2x~ipad.png -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon~ios-marketing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adeeteya/FlutterMarkdownEditor/HEAD/ios/Runner/Assets.xcassets/AppIcon.appiconset/AppIcon~ios-marketing.png -------------------------------------------------------------------------------- /l10n.yaml: -------------------------------------------------------------------------------- 1 | arb-dir: lib/l10n 2 | output-dir: lib/l10n/generated 3 | template-arb-file: app_en.arb 4 | output-localization-file: app_localizations.dart 5 | untranslated-messages-file: untranslated_messages.json -------------------------------------------------------------------------------- /ios/fastlane/Appfile: -------------------------------------------------------------------------------- 1 | app_identifier(ENV["DEVELOPER_APP_IDENTIFIER"]) 2 | apple_id(ENV["FASTLANE_APPLE_ID"]) 3 | 4 | itc_team_id(ENV["APP_STORE_CONNECT_TEAM_ID"]) 5 | team_id(ENV["DEVELOPER_PORTAL_TEAM_ID"]) 6 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [adeeteya] 2 | patreon: adeeteya 3 | open_collective: adeeteya 4 | ko_fi: adeeteya 5 | liberapay: adeeteya 6 | issuehunt: adeeteya 7 | buy_me_a_coffee: adeeteya 8 | thanks_dev: adeeteya 9 | -------------------------------------------------------------------------------- /ios/fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | # 3 | # Ensure this file is checked in to source control! 4 | 5 | gem 'fastlane-plugin-firebase_app_distribution' 6 | gem 'fastlane-plugin-get_new_build_number' 7 | -------------------------------------------------------------------------------- /android/fastlane/Pluginfile: -------------------------------------------------------------------------------- 1 | # Autogenerated by fastlane 2 | # 3 | # Ensure this file is checked in to source control! 4 | 5 | gem 'fastlane-plugin-firebase_app_distribution' 6 | gem 'fastlane-plugin-get_new_build_number' 7 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /linux/runner/main.cc: -------------------------------------------------------------------------------- 1 | #include "my_application.h" 2 | 3 | int main(int argc, char** argv) { 4 | g_autoptr(MyApplication) app = my_application_new(); 5 | return g_application_run(G_APPLICATION(app), argc, argv); 6 | } 7 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /ios/fastlane/Matchfile: -------------------------------------------------------------------------------- 1 | git_url("https://github.com/your/app-certificates-and-profiles.git") 2 | storage_mode("git") 3 | type("appstore") # The default type, can be: appstore, adhoc, enterprise or development 4 | 5 | app_identifier([ENV["APP_BUNDLE_ID"]]) 6 | -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | zipStoreBase=GRADLE_USER_HOME 4 | zipStorePath=wrapper/dists 5 | distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Added LaTex support 2 | Added Horizontal Swipe to Switch between Preview and Editing View in Single View Mode 3 | Added Default Folder for Opening and Saving .md files 4 | Added Print/Save as Pdf Option 5 | Added the option to check/uncheck checkboxes in preview mode 6 | Added Convenient way to add tables -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /linux/packaging/appimage/make_config.yaml: -------------------------------------------------------------------------------- 1 | display_name: Markdown Editor 2 | icon: snap/gui/markdown-editor.png 3 | 4 | keywords: 5 | - Readme 6 | - Text 7 | - Markdown 8 | - Editor 9 | - Utility 10 | 11 | generic_name: Markdown Editor 12 | categories: 13 | - Utility 14 | 15 | startup_notify: true -------------------------------------------------------------------------------- /ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PreviewsEnabled 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /macos/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /snap/gui/markdown-editor.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=2.0.0 3 | Name=Markdown Editor 4 | Comment=Markdown Editor is an app for creating and editing .md files with ease 5 | Exec=markdown-editor 6 | Icon=${SNAP}/meta/gui/markdown-editor.png 7 | Terminal=false 8 | Type=Application 9 | Categories=Utility;Application; 10 | StartupWMClass=markdown-editor -------------------------------------------------------------------------------- /ios/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | # takes version from flutter (pubspec.yaml) 5 | gem "fastlane-plugin-flutter_version", git: "https://github.com/tianhaoz95/fastlane-plugin-flutter-version" 6 | 7 | plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') 8 | eval_gemfile(plugins_path) if File.exist?(plugins_path) 9 | -------------------------------------------------------------------------------- /macos/Runner/Release.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.print 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /android/.gitignore: -------------------------------------------------------------------------------- 1 | gradle-wrapper.jar 2 | /.gradle 3 | /captures/ 4 | /gradlew 5 | /gradlew.bat 6 | /local.properties 7 | GeneratedPluginRegistrant.java 8 | .cxx/ 9 | 10 | # Remember to never publicly share your keystore. 11 | # See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app 12 | key.properties 13 | **/*.keystore 14 | **/*.jks -------------------------------------------------------------------------------- /android/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem "fastlane" 4 | # takes version from flutter (pubspec.yaml) 5 | gem "fastlane-plugin-flutter_version", git: "https://github.com/tianhaoz95/fastlane-plugin-flutter-version" 6 | 7 | plugins_path = File.join(File.dirname(__FILE__), 'fastlane', 'Pluginfile') 8 | eval_gemfile(plugins_path) if File.exist?(plugins_path) 9 | -------------------------------------------------------------------------------- /ios/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- 1 | import Flutter 2 | import UIKit 3 | import XCTest 4 | 5 | class RunnerTests: XCTestCase { 6 | 7 | func testExample() { 8 | // If you add code to the Runner application, consider adding tests here. 9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest. 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /macos/RunnerTests/RunnerTests.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | import XCTest 4 | 5 | class RunnerTests: XCTestCase { 6 | 7 | func testExample() { 8 | // If you add code to the Runner application, consider adding tests here. 9 | // See https://developer.apple.com/documentation/xctest for more information about using XCTest. 10 | } 11 | 12 | } 13 | -------------------------------------------------------------------------------- /windows/.gitignore: -------------------------------------------------------------------------------- 1 | flutter/ephemeral/ 2 | 3 | # Visual Studio user-specific files. 4 | *.suo 5 | *.user 6 | *.userosscache 7 | *.sln.docstates 8 | 9 | # Visual Studio build-related files. 10 | x64/ 11 | x86/ 12 | 13 | # Visual Studio cache files 14 | # files ending in .cache can be ignored 15 | *.[Cc]ache 16 | # but keep track of directories ending in .cache 17 | !*.[Cc]ache/ 18 | -------------------------------------------------------------------------------- /android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /macos/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | @main 5 | class AppDelegate: FlutterAppDelegate { 6 | override func applicationShouldTerminateAfterLastWindowClosed(_ sender: NSApplication) -> Bool { 7 | return true 8 | } 9 | 10 | override func applicationSupportsSecureRestorableState(_ app: NSApplication) -> Bool { 11 | return true 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md: -------------------------------------------------------------------------------- 1 | # Launch Screen Assets 2 | 3 | You can customize the launch screen with your own desired assets by replacing the image files in this directory. 4 | 5 | You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. -------------------------------------------------------------------------------- /linux/markdown_editor.desktop: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=2.0.0 3 | Name=Markdown Editor 4 | Comment=Markdown Editor is a lightweight and intuitive app for creating and editing .md files with ease 5 | Exec=/usr/bin/markdown-editor 6 | Icon=/usr/share/icons/markdown-editor/markdown-editor.png 7 | Terminal=false 8 | Type=Application 9 | Categories=Utility;Application; 10 | StartupWMClass=markdown-editor -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 8 | #define GENERATED_PLUGIN_REGISTRANT_ 9 | 10 | #include 11 | 12 | // Registers Flutter plugins. 13 | void fl_register_plugins(FlPluginRegistry* registry); 14 | 15 | #endif // GENERATED_PLUGIN_REGISTRANT_ 16 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.h: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #ifndef GENERATED_PLUGIN_REGISTRANT_ 8 | #define GENERATED_PLUGIN_REGISTRANT_ 9 | 10 | #include 11 | 12 | // Registers Flutter plugins. 13 | void RegisterPlugins(flutter::PluginRegistry* registry); 14 | 15 | #endif // GENERATED_PLUGIN_REGISTRANT_ 16 | -------------------------------------------------------------------------------- /distribute_options.yaml: -------------------------------------------------------------------------------- 1 | output: dist/ 2 | releases: 3 | - name: production 4 | jobs: 5 | - name: release-production-linux-deb 6 | package: 7 | platform: linux 8 | target: deb 9 | - name: release-production-linux-rpm 10 | package: 11 | platform: linux 12 | target: rpm 13 | - name: release-production-linux-appimage 14 | package: 15 | platform: linux 16 | target: appimage -------------------------------------------------------------------------------- /android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /android/app/src/profile/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /ios/Runner/AppDelegate.swift: -------------------------------------------------------------------------------- 1 | import UIKit 2 | import Flutter 3 | 4 | @UIApplicationMain 5 | @objc class AppDelegate: FlutterAppDelegate { 6 | override func application( 7 | _ application: UIApplication, 8 | didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? 9 | ) -> Bool { 10 | GeneratedPluginRegistrant.register(with: self) 11 | return super.application(application, didFinishLaunchingWithOptions: launchOptions) 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /macos/Runner/MainFlutterWindow.swift: -------------------------------------------------------------------------------- 1 | import Cocoa 2 | import FlutterMacOS 3 | 4 | class MainFlutterWindow: NSWindow { 5 | override func awakeFromNib() { 6 | let flutterViewController = FlutterViewController() 7 | let windowFrame = self.frame 8 | self.contentViewController = flutterViewController 9 | self.setFrame(windowFrame, display: true) 10 | 11 | RegisterGeneratedPlugins(registry: flutterViewController) 12 | 13 | super.awakeFromNib() 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /linux/runner/my_application.h: -------------------------------------------------------------------------------- 1 | #ifndef FLUTTER_MY_APPLICATION_H_ 2 | #define FLUTTER_MY_APPLICATION_H_ 3 | 4 | #include 5 | 6 | G_DECLARE_FINAL_TYPE(MyApplication, my_application, MY, APPLICATION, 7 | GtkApplication) 8 | 9 | /** 10 | * my_application_new: 11 | * 12 | * Creates a new Flutter-based application. 13 | * 14 | * Returns: a new #MyApplication. 15 | */ 16 | MyApplication* my_application_new(); 17 | 18 | #endif // FLUTTER_MY_APPLICATION_H_ 19 | -------------------------------------------------------------------------------- /macos/Runner/DebugProfile.entitlements: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.apple.security.app-sandbox 6 | 7 | com.apple.security.cs.allow-jit 8 | 9 | com.apple.security.network.server 10 | 11 | com.apple.security.print 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /windows/runner/resource.h: -------------------------------------------------------------------------------- 1 | //{{NO_DEPENDENCIES}} 2 | // Microsoft Visual C++ generated include file. 3 | // Used by Runner.rc 4 | // 5 | #define IDI_APP_ICON 101 6 | 7 | // Next default values for new objects 8 | // 9 | #ifdef APSTUDIO_INVOKED 10 | #ifndef APSTUDIO_READONLY_SYMBOLS 11 | #define _APS_NEXT_RESOURCE_VALUE 102 12 | #define _APS_NEXT_COMMAND_VALUE 40001 13 | #define _APS_NEXT_CONTROL_VALUE 1001 14 | #define _APS_NEXT_SYMED_VALUE 101 15 | #endif 16 | #endif 17 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /android/app/src/main/res/drawable-v21/launch_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | -------------------------------------------------------------------------------- /ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "universal", 5 | "filename" : "LaunchImage.png", 6 | "scale" : "1x" 7 | }, 8 | { 9 | "idiom" : "universal", 10 | "filename" : "LaunchImage@2x.png", 11 | "scale" : "2x" 12 | }, 13 | { 14 | "idiom" : "universal", 15 | "filename" : "LaunchImage@3x.png", 16 | "scale" : "3x" 17 | } 18 | ], 19 | "info" : { 20 | "version" : 1, 21 | "author" : "xcode" 22 | } 23 | } 24 | -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security Policy 2 | 3 | ## Supported Versions 4 | 5 | | Version | Supported | 6 | |---------|--------------------| 7 | | 2.0.0 | :white_check_mark: | 8 | | 1.4.1 | :white_check_mark: | 9 | | 1.4.0 | :white_check_mark: | 10 | | 1.3.0 | :white_check_mark: | 11 | | 1.2.0 | :white_check_mark: | 12 | | 1.2.1 | :white_check_mark: | 13 | | 1.1.0 | :white_check_mark: | 14 | | 1.0.0 | :white_check_mark: | 15 | 16 | ## Reporting a Vulnerability 17 | 18 | Either mail to me at adeeteya@gmail.com or open a [Issue](https://www.github.com/adeeteya/FlutterMarkdownEditor/issues) -------------------------------------------------------------------------------- /linux/packaging/rpm/make_config.yaml: -------------------------------------------------------------------------------- 1 | icon: snap/gui/markdown-editor.png 2 | summary: Markdown Editor is a lightweight and intuitive app for creating and editing .md files with ease 3 | group: Applications/Utility 4 | vendor: adeeteya 5 | packager: Aditya R 6 | packagerEmail: adeeteya@gmail.com 7 | license: MIT 8 | url: https://github.com/adeeteya/FlutterMarkdownEditor 9 | 10 | display_name: Markdown Editor 11 | 12 | keywords: 13 | - Readme 14 | - Text 15 | - Markdown 16 | - Editor 17 | - Utility 18 | 19 | generic_name: Markdown Editor 20 | categories: 21 | - Utility 22 | 23 | startup_notify: true -------------------------------------------------------------------------------- /android/build.gradle.kts: -------------------------------------------------------------------------------- 1 | allprojects { 2 | repositories { 3 | google() 4 | mavenCentral() 5 | } 6 | } 7 | 8 | val newBuildDir: Directory = rootProject.layout.buildDirectory.dir("../../build").get() 9 | rootProject.layout.buildDirectory.value(newBuildDir) 10 | 11 | subprojects { 12 | val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name) 13 | project.layout.buildDirectory.value(newSubprojectBuildDir) 14 | } 15 | subprojects { 16 | project.evaluationDependsOn(":app") 17 | } 18 | 19 | tasks.register("clean") { 20 | delete(rootProject.layout.buildDirectory) 21 | } -------------------------------------------------------------------------------- /macos/Runner/Configs/Warnings.xcconfig: -------------------------------------------------------------------------------- 1 | WARNING_CFLAGS = -Wall -Wconditional-uninitialized -Wnullable-to-nonnull-conversion -Wmissing-method-return-type -Woverlength-strings 2 | GCC_WARN_UNDECLARED_SELECTOR = YES 3 | CLANG_UNDEFINED_BEHAVIOR_SANITIZER_NULLABILITY = YES 4 | CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE 5 | CLANG_WARN__DUPLICATE_METHOD_MATCH = YES 6 | CLANG_WARN_PRAGMA_PACK = YES 7 | CLANG_WARN_STRICT_PROTOTYPES = YES 8 | CLANG_WARN_COMMA = YES 9 | GCC_WARN_STRICT_SELECTOR_MATCH = YES 10 | CLANG_WARN_OBJC_REPEATED_USE_OF_WEAK = YES 11 | CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES 12 | GCC_WARN_SHADOW = YES 13 | CLANG_WARN_UNREACHABLE_CODE = YES 14 | -------------------------------------------------------------------------------- /.github/workflows/pr-checker.yaml: -------------------------------------------------------------------------------- 1 | name: Lint Checking on PR 2 | 3 | on: 4 | pull_request: 5 | 6 | env: 7 | FLUTTER_VERSION: 3.35.7 8 | 9 | jobs: 10 | lint: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v4 14 | with: 15 | ref: ${{ github.event.pull_request.head.sha }} 16 | - uses: subosito/flutter-action@v2 17 | with: 18 | flutter-version: ${{ env.FLUTTER_VERSION }} 19 | 20 | - name: Configure repo 21 | run: | 22 | flutter pub get 23 | flutter gen-l10n 24 | 25 | - name: Lint Dart files 26 | run: | 27 | dart analyze --no-fatal-warnings 28 | -------------------------------------------------------------------------------- /macos/Runner/Configs/AppInfo.xcconfig: -------------------------------------------------------------------------------- 1 | // Application-level settings for the Runner target. 2 | // 3 | // This may be replaced with something auto-generated from metadata (e.g., pubspec.yaml) in the 4 | // future. If not, the values below would default to using the project name when this becomes a 5 | // 'flutter create' template. 6 | 7 | // The application's name. By default this is also the title of the Flutter window. 8 | PRODUCT_NAME = markdown_editor 9 | 10 | // The application's bundle identifier 11 | PRODUCT_BUNDLE_IDENTIFIER = com.adeeteya.markdownEditor 12 | 13 | // The copyright displayed in application information 14 | PRODUCT_COPYRIGHT = Copyright © 2025 com.adeeteya. All rights reserved. 15 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Feature request 3 | about: Suggest an idea for this project 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Is your feature request related to a problem? Please describe.** 11 | A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] 12 | 13 | **Describe the solution you'd like** 14 | A clear and concise description of what you want to happen. 15 | 16 | **Describe alternatives you've considered** 17 | A clear and concise description of any alternative solutions or features you've considered. 18 | 19 | **Additional context** 20 | Add any other context or screenshots about the feature request here. 21 | -------------------------------------------------------------------------------- /ios/.gitignore: -------------------------------------------------------------------------------- 1 | **/dgph 2 | *.mode1v3 3 | *.mode2v3 4 | *.moved-aside 5 | *.pbxuser 6 | *.perspectivev3 7 | **/*sync/ 8 | .sconsign.dblite 9 | .tags* 10 | **/.vagrant/ 11 | **/DerivedData/ 12 | Icon? 13 | **/Pods/ 14 | **/.symlinks/ 15 | profile 16 | xcuserdata 17 | **/.generated/ 18 | Flutter/App.framework 19 | Flutter/Flutter.framework 20 | Flutter/Flutter.podspec 21 | Flutter/Generated.xcconfig 22 | Flutter/ephemeral/ 23 | Flutter/app.flx 24 | Flutter/app.zip 25 | Flutter/flutter_assets/ 26 | Flutter/flutter_export_environment.sh 27 | ServiceDefinitions.json 28 | Runner/GeneratedPluginRegistrant.* 29 | 30 | # Exceptions to above rules. 31 | !default.mode1v3 32 | !default.mode2v3 33 | !default.pbxuser 34 | !default.perspectivev3 35 | -------------------------------------------------------------------------------- /lib/widgets/MarkdownBody/custom_checkbox.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | class CustomCheckbox extends StatelessWidget { 4 | final bool checked; 5 | final VoidCallback onChanged; 6 | 7 | const CustomCheckbox({ 8 | super.key, 9 | required this.checked, 10 | required this.onChanged, 11 | }); 12 | 13 | @override 14 | Widget build(BuildContext context) { 15 | return Padding( 16 | padding: const EdgeInsets.symmetric(horizontal: 2), 17 | child: Checkbox( 18 | value: checked, 19 | onChanged: (_) => onChanged(), 20 | materialTapTargetSize: MaterialTapTargetSize.shrinkWrap, 21 | visualDensity: VisualDensity.compact, 22 | ), 23 | ); 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /linux/packaging/deb/make_config.yaml: -------------------------------------------------------------------------------- 1 | display_name: Markdown Editor 2 | package_name: markdown-editor 3 | maintainer: 4 | name: Aditya 5 | email: adeeteya@gmail.com 6 | priority: optional 7 | section: x11 8 | installed_size: 9280 9 | essential: false 10 | icon: snap/gui/markdown-editor.png 11 | 12 | postinstall_scripts: 13 | - echo "Thanks for installing Markdown Editor. If you like the app please give it a star on GitHub" 14 | postuninstall_scripts: 15 | - echo "Sorry to see you go. If there are problems in the app please open an issue on GitHub" 16 | 17 | keywords: 18 | - Readme 19 | - Text 20 | - Markdown 21 | - Editor 22 | - Utility 23 | 24 | generic_name: Markdown Editor 25 | 26 | categories: 27 | - Utility 28 | 29 | startup_notify: true -------------------------------------------------------------------------------- /windows/runner/utils.h: -------------------------------------------------------------------------------- 1 | #ifndef RUNNER_UTILS_H_ 2 | #define RUNNER_UTILS_H_ 3 | 4 | #include 5 | #include 6 | 7 | // Creates a console for the process, and redirects stdout and stderr to 8 | // it for both the runner and the Flutter library. 9 | void CreateAndAttachConsole(); 10 | 11 | // Takes a null-terminated wchar_t* encoded in UTF-16 and returns a std::string 12 | // encoded in UTF-8. Returns an empty std::string on failure. 13 | std::string Utf8FromUtf16(const wchar_t* utf16_string); 14 | 15 | // Gets the command line arguments passed in as a std::vector, 16 | // encoded in UTF-8. Returns an empty std::vector on failure. 17 | std::vector GetCommandLineArguments(); 18 | 19 | #endif // RUNNER_UTILS_H_ 20 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #include "generated_plugin_registrant.h" 8 | 9 | #include 10 | #include 11 | 12 | void fl_register_plugins(FlPluginRegistry* registry) { 13 | g_autoptr(FlPluginRegistrar) printing_registrar = 14 | fl_plugin_registry_get_registrar_for_plugin(registry, "PrintingPlugin"); 15 | printing_plugin_register_with_registrar(printing_registrar); 16 | g_autoptr(FlPluginRegistrar) url_launcher_linux_registrar = 17 | fl_plugin_registry_get_registrar_for_plugin(registry, "UrlLauncherPlugin"); 18 | url_launcher_plugin_register_with_registrar(url_launcher_linux_registrar); 19 | } 20 | -------------------------------------------------------------------------------- /windows/flutter/generated_plugin_registrant.cc: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | // clang-format off 6 | 7 | #include "generated_plugin_registrant.h" 8 | 9 | #include 10 | #include 11 | #include 12 | 13 | void RegisterPlugins(flutter::PluginRegistry* registry) { 14 | PermissionHandlerWindowsPluginRegisterWithRegistrar( 15 | registry->GetRegistrarForPlugin("PermissionHandlerWindowsPlugin")); 16 | PrintingPluginRegisterWithRegistrar( 17 | registry->GetRegistrarForPlugin("PrintingPlugin")); 18 | UrlLauncherWindowsRegisterWithRegistrar( 19 | registry->GetRegistrarForPlugin("UrlLauncherWindows")); 20 | } 21 | -------------------------------------------------------------------------------- /pull_request_template.md: -------------------------------------------------------------------------------- 1 | All Submissions: 2 | 3 | * [ ] Have you followed the guidelines in our Contributing document? 4 | * [ ] Have you checked to ensure there aren't other open [Pull Requests](https://www.github.com/adeeteya/FlutterMarkdownEditor/pulls) for the same update/change? 5 | 6 | 7 | 8 | ### New Feature Submissions: 9 | 10 | 1. [ ] Does your submission work for all the platforms? 11 | 2. [ ] Have you lint your code locally before submission? (using flutter_lints package) 12 | 13 | ### Changes to Core Features: 14 | 15 | * [ ] Have you added an explanation of what your changes do and why you'd like us to include them? 16 | * [ ] Have you added the feature to the features column of ```readme.md``` ? -------------------------------------------------------------------------------- /macos/Flutter/GeneratedPluginRegistrant.swift: -------------------------------------------------------------------------------- 1 | // 2 | // Generated file. Do not edit. 3 | // 4 | 5 | import FlutterMacOS 6 | import Foundation 7 | 8 | import file_picker 9 | import path_provider_foundation 10 | import printing 11 | import shared_preferences_foundation 12 | import url_launcher_macos 13 | 14 | func RegisterGeneratedPlugins(registry: FlutterPluginRegistry) { 15 | FilePickerPlugin.register(with: registry.registrar(forPlugin: "FilePickerPlugin")) 16 | PathProviderPlugin.register(with: registry.registrar(forPlugin: "PathProviderPlugin")) 17 | PrintingPlugin.register(with: registry.registrar(forPlugin: "PrintingPlugin")) 18 | SharedPreferencesPlugin.register(with: registry.registrar(forPlugin: "SharedPreferencesPlugin")) 19 | UrlLauncherPlugin.register(with: registry.registrar(forPlugin: "UrlLauncherPlugin")) 20 | } 21 | -------------------------------------------------------------------------------- /android/settings.gradle.kts: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | val flutterSdkPath = run { 3 | val properties = java.util.Properties() 4 | file("local.properties").inputStream().use { properties.load(it) } 5 | val flutterSdkPath = properties.getProperty("flutter.sdk") 6 | require(flutterSdkPath != null) { "flutter.sdk not set in local.properties" } 7 | flutterSdkPath 8 | } 9 | 10 | includeBuild("$flutterSdkPath/packages/flutter_tools/gradle") 11 | 12 | repositories { 13 | google() 14 | mavenCentral() 15 | gradlePluginPortal() 16 | } 17 | } 18 | 19 | plugins { 20 | id("dev.flutter.flutter-plugin-loader") version "1.0.0" 21 | id("com.android.application") version "8.9.1" apply false 22 | id("org.jetbrains.kotlin.android") version "2.1.0" apply false 23 | } 24 | 25 | include(":app") 26 | -------------------------------------------------------------------------------- /linux/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | printing 7 | url_launcher_linux 8 | ) 9 | 10 | list(APPEND FLUTTER_FFI_PLUGIN_LIST 11 | ) 12 | 13 | set(PLUGIN_BUNDLED_LIBRARIES) 14 | 15 | foreach(plugin ${FLUTTER_PLUGIN_LIST}) 16 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/linux plugins/${plugin}) 17 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 18 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 19 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 20 | endforeach(plugin) 21 | 22 | foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) 23 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/linux plugins/${ffi_plugin}) 24 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) 25 | endforeach(ffi_plugin) 26 | -------------------------------------------------------------------------------- /ios/Flutter/AppFrameworkInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | en 7 | CFBundleExecutable 8 | App 9 | CFBundleIdentifier 10 | io.flutter.flutter.app 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | App 15 | CFBundlePackageType 16 | FMWK 17 | CFBundleShortVersionString 18 | 1.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | MinimumOSVersion 24 | 11.0 25 | 26 | 27 | -------------------------------------------------------------------------------- /pubspec.yaml: -------------------------------------------------------------------------------- 1 | name: markdown_editor 2 | description: A Flutter app to edit and save markdown files 3 | 4 | publish_to: 'none' 5 | 6 | version: 2.0.0+8 7 | 8 | environment: 9 | sdk: ^3.9.2 10 | flutter: 3.35.7 11 | 12 | dependencies: 13 | expandable: ^5.0.1 14 | file_picker: ^10.3.6 15 | flutter: 16 | sdk: flutter 17 | flutter_localizations: 18 | sdk: flutter 19 | flutter_math_fork: ^0.7.4 20 | flutter_svg: ^2.2.2 21 | flutter_widget_from_html_core: ^0.17.0 22 | google_fonts: ^6.3.2 23 | html: ^0.15.6 24 | htmltopdfwidgets: ^1.1.3 25 | intl: any 26 | markdown: ^7.3.0 27 | markdown_widget: ^2.3.2+8 28 | pdf: ^3.11.3 29 | permission_handler: ^12.0.1 30 | printing: ^5.14.2 31 | shared_preferences: ^2.5.3 32 | url_launcher: ^6.3.2 33 | 34 | dev_dependencies: 35 | flutter_lints: ^6.0.0 36 | flutter_test: 37 | sdk: flutter 38 | 39 | flutter: 40 | uses-material-design: true 41 | generate: true -------------------------------------------------------------------------------- /windows/flutter/generated_plugins.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Generated file, do not edit. 3 | # 4 | 5 | list(APPEND FLUTTER_PLUGIN_LIST 6 | permission_handler_windows 7 | printing 8 | url_launcher_windows 9 | ) 10 | 11 | list(APPEND FLUTTER_FFI_PLUGIN_LIST 12 | ) 13 | 14 | set(PLUGIN_BUNDLED_LIBRARIES) 15 | 16 | foreach(plugin ${FLUTTER_PLUGIN_LIST}) 17 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${plugin}/windows plugins/${plugin}) 18 | target_link_libraries(${BINARY_NAME} PRIVATE ${plugin}_plugin) 19 | list(APPEND PLUGIN_BUNDLED_LIBRARIES $) 20 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${plugin}_bundled_libraries}) 21 | endforeach(plugin) 22 | 23 | foreach(ffi_plugin ${FLUTTER_FFI_PLUGIN_LIST}) 24 | add_subdirectory(flutter/ephemeral/.plugin_symlinks/${ffi_plugin}/windows plugins/${ffi_plugin}) 25 | list(APPEND PLUGIN_BUNDLED_LIBRARIES ${${ffi_plugin}_bundled_libraries}) 26 | endforeach(ffi_plugin) 27 | -------------------------------------------------------------------------------- /windows/runner/runner.exe.manifest: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | PerMonitorV2 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /snap/snapcraft.yaml: -------------------------------------------------------------------------------- 1 | name: markdown-editor 2 | version: 2.0.0 3 | summary: Markdown Editor is an app for creating and editing .md files with ease. 4 | description: Markdown Editor is a lightweight and intuitive app for creating and editing .md files with ease. 5 | icon: snap/gui/markdown-editor.png 6 | contact: mailto:adeeteya@gmail.com 7 | source-code: https://github.com/adeeteya/FlutterMarkdownEditor 8 | issues: https://github.com/adeeteya/FlutterMarkdownEditor/issues 9 | license: MIT 10 | 11 | confinement: strict 12 | base: core22 13 | grade: stable 14 | 15 | slots: 16 | markdown-editor: 17 | interface: dbus 18 | bus: session 19 | name: com.adeeteya.markdown_editor 20 | 21 | apps: 22 | markdown-editor: 23 | command: markdown_editor 24 | extensions: [gnome] 25 | plugs: 26 | - network 27 | - desktop 28 | - home 29 | slots: 30 | - markdown-editor 31 | parts: 32 | markdown-editor: 33 | source: . 34 | plugin: flutter 35 | flutter-target: lib/main.dart -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Bug report 3 | about: Create a report to help us improve 4 | title: '' 5 | labels: '' 6 | assignees: '' 7 | 8 | --- 9 | 10 | **Describe the bug** 11 | A clear and concise description of what the bug is. 12 | 13 | **To Reproduce** 14 | Steps to reproduce the behavior: 15 | 1. Go to '...' 16 | 2. Click on '....' 17 | 3. Scroll down to '....' 18 | 4. See error 19 | 20 | **Expected behavior** 21 | A clear and concise description of what you expected to happen. 22 | 23 | **Screenshots** 24 | If applicable, add screenshots to help explain your problem. 25 | 26 | **Desktop (please complete the following information):** 27 | - OS: [e.g. iOS] 28 | - Browser [e.g. chrome, safari] 29 | - Version [e.g. 22] 30 | 31 | **Smartphone (please complete the following information):** 32 | - Device: [e.g. iPhone6] 33 | - OS: [e.g. iOS8.1] 34 | - Browser [e.g. stock browser, safari] 35 | - Version [e.g. 22] 36 | 37 | **Additional context** 38 | Add any other context about the problem here. 39 | -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | Markdown Editor 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /windows/runner/flutter_window.h: -------------------------------------------------------------------------------- 1 | #ifndef RUNNER_FLUTTER_WINDOW_H_ 2 | #define RUNNER_FLUTTER_WINDOW_H_ 3 | 4 | #include 5 | #include 6 | 7 | #include 8 | 9 | #include "win32_window.h" 10 | 11 | // A window that does nothing but host a Flutter view. 12 | class FlutterWindow : public Win32Window { 13 | public: 14 | // Creates a new FlutterWindow hosting a Flutter view running |project|. 15 | explicit FlutterWindow(const flutter::DartProject& project); 16 | virtual ~FlutterWindow(); 17 | 18 | protected: 19 | // Win32Window: 20 | bool OnCreate() override; 21 | void OnDestroy() override; 22 | LRESULT MessageHandler(HWND window, UINT const message, WPARAM const wparam, 23 | LPARAM const lparam) noexcept override; 24 | 25 | private: 26 | // The project to run. 27 | flutter::DartProject project_; 28 | 29 | // The Flutter instance hosted by this window. 30 | std::unique_ptr flutter_controller_; 31 | }; 32 | 33 | #endif // RUNNER_FLUTTER_WINDOW_H_ 34 | -------------------------------------------------------------------------------- /android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /linux/runner/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.13) 2 | project(runner LANGUAGES CXX) 3 | 4 | # Define the application target. To change its name, change BINARY_NAME in the 5 | # top-level CMakeLists.txt, not the value here, or `flutter run` will no longer 6 | # work. 7 | # 8 | # Any new source files that you add to the application should be added here. 9 | add_executable(${BINARY_NAME} 10 | "main.cc" 11 | "my_application.cc" 12 | "${FLUTTER_MANAGED_DIR}/generated_plugin_registrant.cc" 13 | ) 14 | 15 | # Apply the standard set of build settings. This can be removed for applications 16 | # that need different build settings. 17 | apply_standard_settings(${BINARY_NAME}) 18 | 19 | # Add preprocessor definitions for the application ID. 20 | add_definitions(-DAPPLICATION_ID="${APPLICATION_ID}") 21 | 22 | # Add dependency libraries. Add any application-specific dependencies here. 23 | target_link_libraries(${BINARY_NAME} PRIVATE flutter) 24 | target_link_libraries(${BINARY_NAME} PRIVATE PkgConfig::GTK) 25 | 26 | target_include_directories(${BINARY_NAME} PRIVATE "${CMAKE_SOURCE_DIR}") 27 | -------------------------------------------------------------------------------- /android/app/src/main/res/values-night/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 15 | 18 | 19 | -------------------------------------------------------------------------------- /web/manifest.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Markdown Editor", 3 | "short_name": "Markdown Editor", 4 | "start_url": ".", 5 | "display": "standalone", 6 | "background_color": "#FFFFFF", 7 | "theme_color": "#3F51B5", 8 | "description": "A Flutter app to edit and save markdown files", 9 | "orientation": "portrait-primary", 10 | "prefer_related_applications": false, 11 | "icons": [ 12 | { 13 | "src": "icons/Icon-192.png", 14 | "sizes": "192x192", 15 | "type": "image/png" 16 | }, 17 | { 18 | "src": "icons/Icon-512.png", 19 | "sizes": "512x512", 20 | "type": "image/png" 21 | }, 22 | { 23 | "src": "icons/Icon-maskable-192.png", 24 | "sizes": "192x192", 25 | "type": "image/png", 26 | "purpose": "maskable" 27 | }, 28 | { 29 | "src": "icons/Icon-maskable-512.png", 30 | "sizes": "512x512", 31 | "type": "image/png", 32 | "purpose": "maskable" 33 | } 34 | ] 35 | } 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2023 Aditya 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Miscellaneous 2 | *.class 3 | *.log 4 | *.pyc 5 | *.swp 6 | .DS_Store 7 | .atom/ 8 | .buildlog/ 9 | .history 10 | .svn/ 11 | migrate_working_dir/ 12 | 13 | # IntelliJ related 14 | *.iml 15 | *.ipr 16 | *.iws 17 | .idea/ 18 | 19 | # The .vscode folder contains launch configuration and tasks you configure in 20 | # VS Code which you may wish to be included in version control, so this line 21 | # is commented out by default. 22 | #.vscode/ 23 | 24 | # Flutter/Dart/Pub related 25 | **/doc/api/ 26 | **/ios/Flutter/.last_build_id 27 | .dart_tool/ 28 | .flutter-plugins 29 | .flutter-plugins-dependencies 30 | .packages 31 | .pub-cache/ 32 | .pub/ 33 | /build/ 34 | 35 | # Symbolication related 36 | app.*.symbols 37 | 38 | # Obfuscation related 39 | app.*.map.json 40 | 41 | # Android Studio will place build artifacts here 42 | /android/app/debug 43 | /android/app/profile 44 | /android/app/release 45 | /android/fastlane/play-store-credentials.json 46 | .env 47 | *.jks 48 | key.properties 49 | google_service_account.json 50 | **/fastlane/report.xml 51 | **/fastlane/Preview.html 52 | **/fastlane/screenshots 53 | **/fastlane/test_output 54 | /lib/l10n/generated/ 55 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- 1 | Introducing the Markdown Editor app, the perfect tool for anyone who needs to create and edit markdown files with ease. With the ability to open ".md" files directly from the explorer, you can easily access your files and start working on them right away. 2 | 3 | The app also offers a convenient way to style your text with options such as bold, italics, headings, and more. Adding links is also a breeze with the simple interface. 4 | 5 | In addition, you can preview JPEG, PNG, GIF, WebP, BMP, and WBMP image formats right within the app. You can easily open links from the preview, making it easy to navigate between different files and sources. 6 | 7 | Choose between Light and Dark Theme Modes, and use the Dual View Mode to simultaneously view both the preview and editing views. Alternatively, you can use Single View Mode to focus on either the preview or editing view. 8 | 9 | The app also offers the ability to clear text and start from scratch, as well as create new .md files or edit existing ones. 10 | 11 | This Editor was developed using Flutter and is mainly targeted for mobile devices as currently there aren't any standalone markdown editors available. -------------------------------------------------------------------------------- /lib/l10n/app_yue.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "yue", 3 | "ok": "得", 4 | "yes": "係", 5 | "cancel": "取消", 6 | "appTitle": "標記編輯", 7 | "previewToolTip": "預覽", 8 | "switchThemeMenuItem": "切換主題", 9 | "switchViewMenuItem": "切換查看", 10 | "openFileMenuItem": "打開", 11 | "markdownTextInputLabel": "喺呢度輸入你嘅標記文字", 12 | "error": "錯誤", 13 | "unableToOpenFileError": "開唔到檔案,試下喺選單上面嘅開放檔案選項打開", 14 | "unableToOpenFileFromMenuError": "開唔到檔案", 15 | "emptyInputTextContent": "請輸入部分文字", 16 | "clear": "清晰", 17 | "clearAllTitle": "清楚所有", 18 | "clearAllContent": "你肯定你係咪想清除所有文字?", 19 | "saveFileDialogTitle": "輸入檔案名稱", 20 | "save": "保存", 21 | "linkDialogTextTitle": "文字", 22 | "linkDialogLinkTitle": "連結", 23 | "enterLinkTextDialogTitle": "輸入連結", 24 | "bold": "大膽", 25 | "italic": "意大利", 26 | "link": "連結", 27 | "image": "形象", 28 | "heading": "標題", 29 | "code": "代碼", 30 | "bulletList": "子彈清單", 31 | "quote": "語錄", 32 | "horizontalRule": "橫向規則", 33 | "strikethrough": "攻略", 34 | "confirmAppExitTitle": "確認退出", 35 | "confirmAppExitContent": "你肯定你想退出呢個應用程式?", 36 | "donate": "捐", 37 | "print": "印刷", 38 | "table": "枱", 39 | "rows": "排", 40 | "columns": "欄", 41 | "insert": "插入" 42 | } -------------------------------------------------------------------------------- /macos/Runner/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | $(DEVELOPMENT_LANGUAGE) 7 | CFBundleExecutable 8 | $(EXECUTABLE_NAME) 9 | CFBundleIconFile 10 | 11 | CFBundleIdentifier 12 | $(PRODUCT_BUNDLE_IDENTIFIER) 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | $(PRODUCT_NAME) 17 | CFBundlePackageType 18 | APPL 19 | CFBundleShortVersionString 20 | $(FLUTTER_BUILD_NAME) 21 | CFBundleVersion 22 | $(FLUTTER_BUILD_NUMBER) 23 | LSMinimumSystemVersion 24 | $(MACOSX_DEPLOYMENT_TARGET) 25 | NSHumanReadableCopyright 26 | $(PRODUCT_COPYRIGHT) 27 | NSMainNibFile 28 | MainMenu 29 | NSPrincipalClass 30 | NSApplication 31 | 32 | 33 | -------------------------------------------------------------------------------- /lib/l10n/app_zh.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "zh", 3 | "ok": "好的", 4 | "yes": "是的", 5 | "cancel": "取消", 6 | "appTitle": "Markdown 编辑器", 7 | "previewToolTip": "预览", 8 | "switchThemeMenuItem": "切换主题", 9 | "switchViewMenuItem": "切换视图", 10 | "openFileMenuItem": "打开", 11 | "markdownTextInputLabel": "在此输入你的 Markdown 文本", 12 | "error": "错误", 13 | "unableToOpenFileError": "无法打开文件,请尝试从菜单的打开文件选项中打开它", 14 | "unableToOpenFileFromMenuError": "无法打开文件", 15 | "emptyInputTextContent": "请输入一些文本", 16 | "clear": "清除", 17 | "clearAllTitle": "全部清除", 18 | "clearAllContent": "你确定要清除所有文本吗?", 19 | "saveFileDialogTitle": "输入文件名", 20 | "save": "保存", 21 | "linkDialogTextTitle": "文本", 22 | "linkDialogLinkTitle": "链接", 23 | "enterLinkTextDialogTitle": "输入链接", 24 | "bold": "大胆的", 25 | "italic": "斜体", 26 | "link": "关联", 27 | "image": "图像", 28 | "heading": "标题", 29 | "code": "代码", 30 | "bulletList": "子弹列表", 31 | "quote": "引用", 32 | "horizontalRule": "水平规则", 33 | "strikethrough": "罢工", 34 | "confirmAppExitTitle": "确认退出", 35 | "confirmAppExitContent": "您确定要退出此应用程序吗?", 36 | "donate": "捐", 37 | "print": "打印", 38 | "table": "桌子", 39 | "rows": "行数", 40 | "columns": "专栏", 41 | "insert": "插入" 42 | } -------------------------------------------------------------------------------- /fastlane/metadata/android/de/full_description.txt: -------------------------------------------------------------------------------- 1 | Wir stellen die Markdown Editor App vor, das perfekte Tool für alle, die Markdown-Dateien einfach erstellen und bearbeiten müssen. Mit der Möglichkeit, „.md“-Dateien direkt aus dem Explorer zu öffnen, können Sie einfach auf Ihre Dateien zugreifen und sofort mit der Arbeit beginnen. 2 | 3 | Die App bietet auch eine bequeme Möglichkeit, Ihren Text mit Optionen wie Fett, Kursiv, Überschriften und mehr zu gestalten. Das Hinzufügen von Links ist mit der einfachen Benutzeroberfläche ebenfalls ein Kinderspiel. 4 | 5 | Darüber hinaus können Sie direkt in der App eine Vorschau der Bildformate JPEG, PNG, GIF, WebP, BMP und WBMP anzeigen. Sie können ganz einfach Links aus der Vorschau öffnen und so einfach zwischen verschiedenen Dateien und Quellen navigieren. 6 | 7 | Wählen Sie zwischen den Modi „Helles“ und „Dunkles Design“ und verwenden Sie den Modus „Dual View“, um gleichzeitig sowohl die Vorschau- als auch die Bearbeitungsansicht anzuzeigen. Alternativ können Sie den Einzelansichtsmodus verwenden, um sich entweder auf die Vorschau- oder die Bearbeitungsansicht zu konzentrieren. 8 | 9 | Die App bietet auch die Möglichkeit, Text zu löschen und von vorne zu beginnen sowie neue .md Dateien zu erstellen oder vorhandene zu bearbeiten. -------------------------------------------------------------------------------- /lib/l10n/app_ko.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "좋아요", 3 | "yes": "예", 4 | "cancel": "취소", 5 | "appTitle": "마크 다운 편집자", 6 | "previewToolTip": "시사", 7 | "switchThemeMenuItem": "스위치 테마", 8 | "switchViewMenuItem": "스위치 뷰", 9 | "openFileMenuItem": "열려 있는", 10 | "markdownTextInputLabel": "여기에 Markdown 텍스트를 입력하십시오", 11 | "error": "오류", 12 | "unableToOpenFileError": "파일을 열 수없고 메뉴에서 열린 파일 옵션에서 열기를 시도하십시오.", 13 | "unableToOpenFileFromMenuError": "파일을 열 수 없습니다", 14 | "emptyInputTextContent": "텍스트를 입력하십시오", 15 | "clear": "분명한", 16 | "clearAllTitle": "모든 것을 지우십시오", 17 | "clearAllContent": "모든 텍스트를 지우고 싶습니까?", 18 | "saveFileDialogTitle": "파일 이름을 입력하십시오", 19 | "save": "구하다", 20 | "linkDialogTextTitle": "텍스트", 21 | "linkDialogLinkTitle": "링크", 22 | "enterLinkTextDialogTitle": "링크를 입력하십시오", 23 | "bold": "용감한", 24 | "italic": "이탤릭체", 25 | "link": "링크", 26 | "image": "영상", 27 | "heading": "표제", 28 | "code": "암호", 29 | "bulletList": "총알 목록", 30 | "quote": "인용하다", 31 | "horizontalRule": "수평 규칙", 32 | "strikethrough": "strikethrough", 33 | "@@locale": "ko", 34 | "confirmAppExitTitle": "종료 확인", 35 | "confirmAppExitContent": "이 앱을 종료하시겠습니까?", 36 | "donate": "기부", 37 | "print": "인쇄", 38 | "table": "테이블", 39 | "rows": "행", 40 | "columns": "열", 41 | "insert": "끼워 넣다" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ja.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "わかりました", 3 | "yes": "はい", 4 | "cancel": "キャンセル", 5 | "appTitle": "マークダウンエディター", 6 | "previewToolTip": "プレビュー", 7 | "switchThemeMenuItem": "テーマを切り替えます", 8 | "switchViewMenuItem": "スイッチビュー", 9 | "openFileMenuItem": "開ける", 10 | "markdownTextInputLabel": "ここにマークダウンテキストを入力してください", 11 | "error": "エラー", 12 | "unableToOpenFileError": "ファイルを開くことができない場合は、メニューの[ファイル]オプションから開いてみてください", 13 | "unableToOpenFileFromMenuError": "ファイルを開くことができません", 14 | "emptyInputTextContent": "テキストを入力してください", 15 | "clear": "クリア", 16 | "clearAllTitle": "すべてをクリアします", 17 | "clearAllContent": "すべてのテキストをクリアしたいですか?", 18 | "saveFileDialogTitle": "ファイルの名前を入力します", 19 | "save": "保存", 20 | "linkDialogTextTitle": "文章", 21 | "linkDialogLinkTitle": "リンク", 22 | "enterLinkTextDialogTitle": "リンクを入力します", 23 | "bold": "大胆な", 24 | "italic": "イタリック", 25 | "link": "リンク", 26 | "image": "画像", 27 | "heading": "見出し", 28 | "code": "コード", 29 | "bulletList": "弾丸リスト", 30 | "quote": "引用", 31 | "horizontalRule": "水平ルール", 32 | "strikethrough": "strikethrough", 33 | "@@locale": "ja", 34 | "confirmAppExitTitle": "終了の確認", 35 | "confirmAppExitContent": "このアプリを終了してもよろしいですか?", 36 | "donate": "寄付する", 37 | "print": "印刷する", 38 | "table": "テーブル", 39 | "rows": "行", 40 | "columns": "コラム", 41 | "insert": "入れる" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_am.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "እሺ", 3 | "yes": "አዎ", 4 | "cancel": "ይቅር", 5 | "appTitle": "የማዕከሪያ አርታኢ", 6 | "previewToolTip": "ቅድመ-እይታ", 7 | "switchThemeMenuItem": "ማብሪያ ገጽታ", 8 | "switchViewMenuItem": "አንፃር ይመልከቱ", 9 | "openFileMenuItem": "ክፈት", 10 | "markdownTextInputLabel": "የመርከሪያዎን ጽሑፍ እዚህ ያስገቡ", 11 | "error": "ስህተት", 12 | "unableToOpenFileError": "ፋይሉን ለመክፈት አልተቻለም, በምናሌው ላይ ካለው ክፈት ፋይል አማራጭ ለመክፈት ይሞክሩ", 13 | "unableToOpenFileFromMenuError": "ፋይሉን ለመክፈት አልተቻለም", 14 | "emptyInputTextContent": "እባክዎን የተወሰነ ጽሑፍ ያስገቡ", 15 | "clear": "ማጽዳት", 16 | "clearAllTitle": "ሁሉንም አጥራ", 17 | "clearAllContent": "እርግጠኛ ነዎት ሁሉንም ጽሑፍ ማጽዳት ይፈልጋሉ?", 18 | "saveFileDialogTitle": "የፋይሉን ስም ያስገቡ", 19 | "save": "አስቀምጥ", 20 | "linkDialogTextTitle": "ጽሑፍ", 21 | "linkDialogLinkTitle": "አገናኝ", 22 | "enterLinkTextDialogTitle": "አገናኝ ያስገቡ", 23 | "bold": "ደፋር", 24 | "italic": "ጣዕሙ", 25 | "link": "አገናኝ", 26 | "image": "ምስል", 27 | "heading": "ርዕስ", 28 | "code": "ኮድ", 29 | "bulletList": "ነጥበ ምልክት ዝርዝር", 30 | "quote": "ጥቅስ", 31 | "horizontalRule": "አግድም ሕግ", 32 | "strikethrough": "ቀሚስ", 33 | "@@locale": "am", 34 | "confirmAppExitTitle": "መውጫ ያረጋግጡ", 35 | "confirmAppExitContent": "እርግጠኛ ነዎት ከዚህ መተግበሪያ ለመውጣት ይፈልጋሉ?", 36 | "donate": "ልገሳ", 37 | "print": "ማተም", 38 | "table": "ሠንጠረዥ", 39 | "rows": "ረድፎች", 40 | "columns": "አምዶች", 41 | "insert": "ያስገቡ" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ti.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "እሺ", 3 | "yes": "እወ", 4 | "cancel": "ሰርዝ", 5 | "appTitle": "ኣርታዒ ማርክዳውንድ", 6 | "previewToolTip": "ቅድመ ምርኢት", 7 | "switchThemeMenuItem": "ቴማ ምቕያር .", 8 | "switchViewMenuItem": "ናይ ስዊች ርእይቶ", 9 | "openFileMenuItem": "ክፈት", 10 | "markdownTextInputLabel": "ናይ ማርክዳውን ጽሑፍኩም ኣብዚ ኣእትዉ", 11 | "error": "ስሕተት", 12 | "unableToOpenFileError": "ነቲ ፋይል ክኸፍቶ ስለዘይከኣለ፡ ካብ Open File Option ኣብቲ ዝርዝር ክትከፍቶ ፈትን።", 13 | "unableToOpenFileFromMenuError": "ነቲ ፋይል ክትከፍቶ ዘይምኽኣል .", 14 | "emptyInputTextContent": "ገለ ጽሑፍ ኣእትዉ", 15 | "clear": "ንፁር", 16 | "clearAllTitle": "ኩሉ ኣጽርዮ", 17 | "clearAllContent": "ርግጸኛ ዲኻ ኩሉ እቲ ጽሑፍ ከተጽርዮ ትደሊ ዲኻ?", 18 | "saveFileDialogTitle": "ስም ናይቲ ፋይል ኣእቱ .", 19 | "save": "ምቑጣብ", 20 | "linkDialogTextTitle": "ጽሑፍ", 21 | "linkDialogLinkTitle": "ሊንክ", 22 | "enterLinkTextDialogTitle": "ሊንክ ኣእትዉ", 23 | "bold": "ድሙቅ", 24 | "italic": "Italic", 25 | "link": "ሊንክ", 26 | "image": "ስእሊ", 27 | "heading": "ኣርእስቲ", 28 | "code": "ኮድ .", 29 | "bulletList": "ዝርዝር ጥይት", 30 | "quote": "ጥቕሲ", 31 | "horizontalRule": "ልኡል ሕጊ .", 32 | "strikethrough": "ስትራይክብሩህ", 33 | "@@locale": "ti", 34 | "confirmAppExitTitle": "መውጽኢ ኣረጋግጽ", 35 | "confirmAppExitContent": "ካብዚ ኣፕ ክትወጽእ ከም እትደሊ ርግጸኛ ዲኻ?", 36 | "donate": "ምልጋስ", 37 | "print": "ሕትመት", 38 | "table": "ጠረጴዛ", 39 | "rows": "መስርዕ .", 40 | "columns": "ዓምድታት .", 41 | "insert": "ኣእትው" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ar.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "نعم", 3 | "yes": "نعم", 4 | "cancel": "يلغي", 5 | "appTitle": "محرر تخفيض", 6 | "previewToolTip": "معاينة", 7 | "switchThemeMenuItem": "موضوع التبديل", 8 | "switchViewMenuItem": "عرض التبديل", 9 | "openFileMenuItem": "يفتح", 10 | "markdownTextInputLabel": "أدخل نص التخفيض هنا", 11 | "error": "خطأ", 12 | "unableToOpenFileError": "غير قادر على فتح الملف ، حاول فتحه من خيار Open File في القائمة", 13 | "unableToOpenFileFromMenuError": "غير قادر على فتح الملف", 14 | "emptyInputTextContent": "الرجاء إدخال بعض النص", 15 | "clear": "واضح", 16 | "clearAllTitle": "مسح كل شيء", 17 | "clearAllContent": "هل أنت متأكد هل تريد مسح كل النص؟", 18 | "saveFileDialogTitle": "أدخل اسم الملف", 19 | "save": "يحفظ", 20 | "linkDialogTextTitle": "نص", 21 | "linkDialogLinkTitle": "وصلة", 22 | "enterLinkTextDialogTitle": "أدخل الرابط", 23 | "bold": "عريض", 24 | "italic": "مائل", 25 | "link": "وصلة", 26 | "image": "صورة", 27 | "heading": "عنوان", 28 | "code": "شفرة", 29 | "bulletList": "قائمة الرصاص", 30 | "quote": "يقتبس", 31 | "horizontalRule": "القاعدة الأفقية", 32 | "strikethrough": "strikethrough", 33 | "@@locale": "ar", 34 | "confirmAppExitTitle": "تأكيد الخروج", 35 | "confirmAppExitContent": "هل أنت متأكد أنك تريد الخروج من هذا التطبيق؟", 36 | "donate": "يتبرع", 37 | "print": "مطبعة", 38 | "table": "طاولة", 39 | "rows": "الصفوف", 40 | "columns": "أعمدة", 41 | "insert": "إدراج" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_la.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ok", 3 | "yes": "Sic", 4 | "cancel": "Inrito", 5 | "appTitle": "Markdown Editor", 6 | "previewToolTip": "Preview", 7 | "switchThemeMenuItem": "Switch", 8 | "switchViewMenuItem": "SWITCH View", 9 | "openFileMenuItem": "Aperto", 10 | "markdownTextInputLabel": "Nulla Markdown Text hic", 11 | "error": "Error", 12 | "unableToOpenFileError": "'Non aperire lima, experiri aperire ex aperta lima optionem in menu", 13 | "unableToOpenFileFromMenuError": "'Non aperire lima", 14 | "emptyInputTextContent": "Please enter quidam illud", 15 | "clear": "Liquido", 16 | "clearAllTitle": "Liquet", 17 | "clearAllContent": "Certus tu vis ut patet omne illud?", 18 | "saveFileDialogTitle": "Intra nomen tabella", 19 | "save": "Salve", 20 | "linkDialogTextTitle": "Text", 21 | "linkDialogLinkTitle": "Linter", 22 | "enterLinkTextDialogTitle": "Link", 23 | "bold": "Audax", 24 | "italic": "MANUS", 25 | "link": "Linter", 26 | "image": "Imago", 27 | "heading": "Petitio", 28 | "code": "Codex", 29 | "bulletList": "Bullet List", 30 | "quote": "Reicio", 31 | "horizontalRule": "Regula", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "la", 34 | "confirmAppExitTitle": "Confirmare Exit", 35 | "confirmAppExitContent": "Certus es tu vis exitus huius app?", 36 | "donate": "DONO", 37 | "print": "Print", 38 | "table": "Mensa", 39 | "rows": "Row", 40 | "columns": "Columnas", 41 | "insert": "Inserto" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ht.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ok", 3 | "yes": "Wi", 4 | "cancel": "Anile", 5 | "appTitle": "Editè Markdown", 6 | "previewToolTip": "Apèsi", 7 | "switchThemeMenuItem": "Chanje tèm", 8 | "switchViewMenuItem": "Chanje View", 9 | "openFileMenuItem": "Ouvè", 10 | "markdownTextInputLabel": "Antre tèks rediksyon ou isit la", 11 | "error": "Erè", 12 | "unableToOpenFileError": "Kapab louvri dosye a, eseye louvri li nan opsyon dosye louvri sou meni an", 13 | "unableToOpenFileFromMenuError": "Kapab louvri dosye a", 14 | "emptyInputTextContent": "Tanpri antre kèk tèks", 15 | "clear": "Klè", 16 | "clearAllTitle": "Klè tout", 17 | "clearAllContent": "Èske ou sèten ou vle klè tout tèks la?", 18 | "saveFileDialogTitle": "Mete non dosye a", 19 | "save": "Sove", 20 | "linkDialogTextTitle": "Tèks", 21 | "linkDialogLinkTitle": "Lyen", 22 | "enterLinkTextDialogTitle": "Antre nan lyen", 23 | "bold": "Vayan", 24 | "italic": "Italik", 25 | "link": "Lyen", 26 | "image": "Imaj", 27 | "heading": "Antèt", 28 | "code": "Kòd", 29 | "bulletList": "Lis bal", 30 | "quote": "Kotasyon", 31 | "horizontalRule": "Règ orizontal", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "ht", 34 | "confirmAppExitTitle": "Konfime sòti", 35 | "confirmAppExitContent": "Èske ou sèten ou vle sòti app sa a?", 36 | "donate": "Bay", 37 | "print": "Anprent", 38 | "table": "Tab", 39 | "rows": "Rat", 40 | "columns": "Kolòn", 41 | "insert": "Ensere" 42 | } -------------------------------------------------------------------------------- /windows/runner/main.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | #include 4 | 5 | #include "flutter_window.h" 6 | #include "utils.h" 7 | 8 | int APIENTRY wWinMain(_In_ HINSTANCE instance, _In_opt_ HINSTANCE prev, 9 | _In_ wchar_t *command_line, _In_ int show_command) { 10 | // Attach to console when present (e.g., 'flutter run') or create a 11 | // new console when running with a debugger. 12 | if (!::AttachConsole(ATTACH_PARENT_PROCESS) && ::IsDebuggerPresent()) { 13 | CreateAndAttachConsole(); 14 | } 15 | 16 | // Initialize COM, so that it is available for use in the library and/or 17 | // plugins. 18 | ::CoInitializeEx(nullptr, COINIT_APARTMENTTHREADED); 19 | 20 | flutter::DartProject project(L"data"); 21 | 22 | std::vector command_line_arguments = 23 | GetCommandLineArguments(); 24 | 25 | project.set_dart_entrypoint_arguments(std::move(command_line_arguments)); 26 | 27 | FlutterWindow window(project); 28 | Win32Window::Point origin(10, 10); 29 | Win32Window::Size size(1280, 720); 30 | if (!window.CreateAndShow(L"Markdown Editor", origin, size)) { 31 | return EXIT_FAILURE; 32 | } 33 | window.SetQuitOnClose(true); 34 | 35 | ::MSG msg; 36 | while (::GetMessage(&msg, nullptr, 0, 0)) { 37 | ::TranslateMessage(&msg); 38 | ::DispatchMessage(&msg); 39 | } 40 | 41 | ::CoUninitialize(); 42 | return EXIT_SUCCESS; 43 | } 44 | -------------------------------------------------------------------------------- /lib/l10n/app_crs.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "crs", 3 | "ok": "Ok", 4 | "yes": "Wi", 5 | "cancel": "kennsel", 6 | "appTitle": "Editer Mark anba", 7 | "previewToolTip": "Avanse", 8 | "switchThemeMenuItem": "Sanz Tenm", 9 | "switchViewMenuItem": "Sanz Vi", 10 | "openFileMenuItem": "Ouver", 11 | "markdownTextInputLabel": "Fer antre ou teks mark isi isi", 12 | "error": "Lerer", 13 | "unableToOpenFileError": "Pa kapab ouver sa dosye, esey ouver li lo opsyon dosye ouver lo meni", 14 | "unableToOpenFileFromMenuError": "Pa kapab ouver sa dosye", 15 | "emptyInputTextContent": "Silvouple antre enpe teks", 16 | "clear": "Kler", 17 | "clearAllTitle": "Kler tou", 18 | "clearAllContent": "Eski ou sir ou anvi kler tou teks?", 19 | "saveFileDialogTitle": "Fer antre non sa dosye", 20 | "save": "Sov", 21 | "linkDialogTextTitle": "Teks", 22 | "linkDialogLinkTitle": "Lyen", 23 | "enterLinkTextDialogTitle": "Fer antre Lyen", 24 | "bold": "Odasye", 25 | "italic": "Itilik", 26 | "link": "Lyen", 27 | "image": "Limaz", 28 | "heading": "Tit", 29 | "code": "Kod", 30 | "bulletList": "Lalis bal", 31 | "quote": "Site", 32 | "horizontalRule": "Lareg orizontal", 33 | "strikethrough": "Frapan", 34 | "confirmAppExitTitle": "Sorti konfirm", 35 | "confirmAppExitContent": "Eski ou sir ou anvi sorti dan sa app?", 36 | "donate": "Donnen", 37 | "print": "Enprimen", 38 | "table": "Latab", 39 | "rows": "bann ranze", 40 | "columns": "Kolon", 41 | "insert": "Met" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_sat.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "sat", 3 | "ok": "ᱚᱞ", 4 | "yes": "ᱩᱛᱱᱟ.ᱣ", 5 | "cancel": "ᱥᱤ", 6 | "appTitle": "ᱢᱮᱠᱥᱤᱠᱳ ᱨᱮ", 7 | "previewToolTip": "ᱯᱩᱭᱞᱩ ᱠᱩᱠᱞᱤ", 8 | "switchThemeMenuItem": "ᱵᱚᱫᱚᱞ ᱠᱚ", 9 | "switchViewMenuItem": "ᱧᱮᱞᱚᱜ ᱠᱟᱱ", 10 | "openFileMenuItem": "~", 11 | "markdownTextInputLabel": "ᱱᱚᱸᱰᱮ ᱟᱢᱟᱜ ᱚᱱᱚᱞ ᱨᱮᱭᱟᱜ ᱧᱩᱛᱩᱢ ᱧᱮᱞ ᱢᱮ", 12 | "error": "ᱟᱨ", 13 | "unableToOpenFileError": "ᱱᱚᱣᱟ ᱨᱮᱫ ᱡᱷᱤᱡᱽ ᱞᱟᱹᱜᱤᱫ, ᱱᱚᱶᱟ ᱚᱯᱥᱚᱱ ᱵᱮᱵᱷᱟᱨ ᱢᱮ ᱡᱟᱦᱟᱸ ᱠᱷᱚᱱ ᱨᱮᱫ ᱠᱚ ᱡᱷᱤᱡᱽ ᱢᱮ ᱾", 14 | "unableToOpenFileFromMenuError": "ᱨᱮᱫ ᱠᱚ ᱡᱷᱤᱡᱽ ᱢᱮ ᱾", 15 | "emptyInputTextContent": "ᱫᱟᱭᱟ ᱠᱟᱛᱮ ᱧᱮᱞ ᱢᱮ ᱢᱤᱫ ᱴᱤᱢ", 16 | "clear": "ᱪᱤᱛᱟᱹᱨ", 17 | "clearAllTitle": "ᱱᱚᱣᱟ ᱨᱮᱭᱟᱜ ᱪᱤᱱᱦᱟᱹ", 18 | "clearAllContent": "ᱪᱮᱫ ᱟᱢ ᱚᱱᱟ ᱚᱞ ᱞᱟᱹᱜᱤᱫ ᱮᱢ ᱠᱷᱚᱡᱚᱜ ᱠᱟᱱᱟ?", 19 | "saveFileDialogTitle": "ᱨᱮᱫ ᱨᱮᱭᱟᱜ ᱧᱩᱛᱩᱢ ᱠᱚ ᱾", 20 | "save": "■", 21 | "linkDialogTextTitle": "ᱱᱳᱴ", 22 | "linkDialogLinkTitle": "ᱨᱮᱰ", 23 | "enterLinkTextDialogTitle": "ᱤᱱᱴᱮᱞᱤᱡᱮᱱᱴ", 24 | "bold": "ᱟᱨ", 25 | "italic": "ᱱᱚᱣᱟ ᱫᱚ", 26 | "link": "ᱨᱮᱰ", 27 | "image": "ᱥᱤᱰᱤ", 28 | "heading": "ᱠᱟᱹᱢᱤ", 29 | "code": "ᱠᱚᱰ", 30 | "bulletList": "ᱣᱟᱨᱟᱱᱴᱤ ᱠᱚ", 31 | "quote": "ᱥᱤᱢᱮᱱᱴ", 32 | "horizontalRule": "ᱨᱚᱥ ᱨᱚᱥ ᱦᱚᱛᱮᱛᱮ", 33 | "strikethrough": "ᱥᱟᱭᱠᱤᱞᱤᱝ", 34 | "confirmAppExitTitle": "ᱯᱷᱤᱪᱟᱨ ᱠᱚ", 35 | "confirmAppExitContent": "ᱪᱮᱫ ᱟᱢ ᱱᱚᱣᱟᱢ ᱠᱷᱚᱡᱚᱜ ᱠᱟᱱᱟ ᱡᱮ ᱟᱢ ᱱᱚᱣᱟ ᱮᱯ ᱮᱢ ᱠᱷᱚᱡᱚᱜ ᱠᱟᱱᱟ?", 36 | "donate": "ᱟᱠᱤᱱ", 37 | "print": "ᱯᱨᱤᱠ", 38 | "table": "ᱯᱩᱸᱰ", 39 | "rows": "ᱨᱮᱰᱤ", 40 | "columns": "ᱠᱚᱞᱚᱱᱤ", 41 | "insert": "ᱟᱨ" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ach.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "ach", 3 | "ok": "Aya", 4 | "yes": "Ee", 5 | "cancel": "Ngolo", 6 | "appTitle": "Ladot tic me nyutu", 7 | "previewToolTip": "Titi", 8 | "switchThemeMenuItem": "Lok wiye", 9 | "switchViewMenuItem": "Nen", 10 | "openFileMenuItem": "Yab", 11 | "markdownTextInputLabel": "Coo coc ma I coyo piny kany", 12 | "error": "Bal mo", 13 | "unableToOpenFileError": "Pe twero yabo file, tem yabo ki i karatac ma ki yabo i karatac me .", 14 | "unableToOpenFileFromMenuError": "Pe twero yabo file", 15 | "emptyInputTextContent": "Waco coc mogo", 16 | "clear": "Niango yot", 17 | "clearAllTitle": "Nen calo", 18 | "clearAllContent": "Tika itye ki gen ni imito ni ibed ka kwanyo coc ducu woko?", 19 | "saveFileDialogTitle": "Coo nying file", 20 | "save": "Gwok", 21 | "linkDialogTextTitle": "Coc", 22 | "linkDialogLinkTitle": "Ling", 23 | "enterLinkTextDialogTitle": "Dony Link", 24 | "bold": "Mino coc bedo ma dongo", 25 | "italic": "Italo", 26 | "link": "Ling", 27 | "image": "Cal", 28 | "heading": "Gwoko ot", 29 | "code": "Coc", 30 | "bulletList": "Lim pangat", 31 | "quote": "Gin mo ma ki coyo ka mo", 32 | "horizontalRule": "Cik matir", 33 | "strikethrough": "Bedo ki par", 34 | "confirmAppExitTitle": "Ka ce", 35 | "confirmAppExitContent": "Tika itye ki miti me weko app man?", 36 | "donate": "Miyu kony", 37 | "print": "dwan", 38 | "table": "Meja", 39 | "rows": "Row", 40 | "columns": "Luco", 41 | "insert": "Lut" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_awa.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "awa", 3 | "ok": "ठीक", 4 | "yes": "हाँ", 5 | "cancel": "रद्द", 6 | "appTitle": "मार्कडाउन संपादक", 7 | "previewToolTip": "पूर्व विचार", 8 | "switchThemeMenuItem": "विषय", 9 | "switchViewMenuItem": "स्विच देखें", 10 | "openFileMenuItem": "खुला", 11 | "markdownTextInputLabel": "अपने मार्कडाउन टेक्स्ट म दर्ज करें यहाँ", 12 | "error": "गलती", 13 | "unableToOpenFileError": "फाइल खोलने म असमर्थ, मेनू पर ओपन फाइल विकल्प से खोलने का प्रयास करें", 14 | "unableToOpenFileFromMenuError": "फाइल खोलै मा असमर्थ है", 15 | "emptyInputTextContent": "कछु पाठ दर्ज करा जाय", 16 | "clear": "सफा", 17 | "clearAllTitle": "सब साफ-सुथरा", 18 | "clearAllContent": "का आप यकीनन आप सब पाठ का साफ करना चाहत हैं?", 19 | "saveFileDialogTitle": "फाइल का नाम दर्ज करें", 20 | "save": "बचावब", 21 | "linkDialogTextTitle": "पाठ", 22 | "linkDialogLinkTitle": "जोड़ब", 23 | "enterLinkTextDialogTitle": "लिंक मा प्रवेश", 24 | "bold": "हिम्मती", 25 | "italic": "मेटालिक", 26 | "link": "जोड़ब", 27 | "image": "छवि", 28 | "heading": "जात", 29 | "code": "कोड", 30 | "bulletList": "बुलेट लिस्ट", 31 | "quote": "दर", 32 | "horizontalRule": "क्षैतिज नियम", 33 | "strikethrough": "हठोवा", 34 | "confirmAppExitTitle": "समायोजित", 35 | "confirmAppExitContent": "का आपका यकीन है कि आप ई ऐप से बाहर निकलना चाहत हैं?", 36 | "donate": "दान करब", 37 | "print": "प्रिंट", 38 | "table": "मेज", 39 | "rows": "पंच", 40 | "columns": "कॉलम", 41 | "insert": "डारब" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_mwr.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "mwr", 3 | "ok": "ठीक", 4 | "yes": "हां", 5 | "cancel": "रद्द", 6 | "appTitle": "मार्कडाउन एडिटर", 7 | "previewToolTip": "भोत समीक्षा", 8 | "switchThemeMenuItem": "छपी", 9 | "switchViewMenuItem": "देखो", 10 | "openFileMenuItem": "खुल्योड़ो", 11 | "markdownTextInputLabel": "आपरी मार्केट रा पाठ मांय अठै दर्ज करो अठै", 12 | "error": "गळती", 13 | "unableToOpenFileError": "फ़ाइल खोलण सारू, मेनू माथै खुली फाइल विकल्प सूं खोलण री कोशिश करो", 14 | "unableToOpenFileFromMenuError": "फ़ाइल खोलण खातर", 15 | "emptyInputTextContent": "केई पाठ मांय दाखिल हो", 16 | "clear": "साफ", 17 | "clearAllTitle": "क्लेयर", 18 | "clearAllContent": "कांई आप पक्को हो कै आप सगळा पाठ नै साफ करणो चावो हो?", 19 | "saveFileDialogTitle": "फ़ाइल रो नाम माथै दर्ज करो", 20 | "save": "बचावणो", 21 | "linkDialogTextTitle": "सन्देस", 22 | "linkDialogLinkTitle": "जोड़णो", 23 | "enterLinkTextDialogTitle": "अट्टा लेक", 24 | "bold": "नीडर", 25 | "italic": "अद्यरिक", 26 | "link": "जोड़णो", 27 | "image": "फोटू", 28 | "heading": "सिर", 29 | "code": "कोड", 30 | "bulletList": "बसोट री सूची", 31 | "quote": "हवालो देणो", 32 | "horizontalRule": "पेंजर", 33 | "strikethrough": "स्मार्ट", 34 | "confirmAppExitTitle": "समर्पण", 35 | "confirmAppExitContent": "कांई आप पक्कायत ई इण ऐप नैं बारै काढणो चावो हो?", 36 | "donate": "दान देणो", 37 | "print": "जीमो", 38 | "table": "टेबल", 39 | "rows": "रोज", 40 | "columns": "कोळ", 41 | "insert": "मांय बाड़णो" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_jam.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "jam", 3 | "ok": "Aright", 4 | "yes": "Yea", 5 | "cancel": "Shet dung", 6 | "appTitle": "Markdong Edita", 7 | "previewToolTip": "Prewyuu", 8 | "switchThemeMenuItem": "Switch Tem", 9 | "switchViewMenuItem": "Switch Viuu", 10 | "openFileMenuItem": "Upin up", 11 | "markdownTextInputLabel": "Enta yu maakdong tes ya .", 12 | "error": "Mistake", 13 | "unableToOpenFileError": "No kyahn uopn di fail, chrai uopn it fram uopn fail opshan pan di menyu .", 14 | "unableToOpenFileFromMenuError": "No kyahn uopn di fail .", 15 | "emptyInputTextContent": "Pliiz go iina som text", 16 | "clear": "Clear", 17 | "clearAllTitle": "Klier Al", 18 | "clearAllContent": "Yu shuor se yu waahn klier aal a di tes?", 19 | "saveFileDialogTitle": "Enta di niem a di fail .", 20 | "save": "Sayv", 21 | "linkDialogTextTitle": "Ritin", 22 | "linkDialogLinkTitle": "Link up", 23 | "enterLinkTextDialogTitle": "Enta Link", 24 | "bold": "Brave", 25 | "italic": "se", 26 | "link": "Link up", 27 | "image": "Imij", 28 | "heading": "Hidn", 29 | "code": "Kod", 30 | "bulletList": "Bulllet Lis", 31 | "quote": "Capy", 32 | "horizontalRule": "Hariizantal Ruul", 33 | "strikethrough": "Striik chuu", 34 | "confirmAppExitTitle": "Kanfaiyam Exit .", 35 | "confirmAppExitContent": "Yu shuor se yu waahn exit dis ap?", 36 | "donate": "Gi", 37 | "print": "Print", 38 | "table": "Table", 39 | "rows": "Rows", 40 | "columns": "Kolumn", 41 | "insert": "Push een" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_th.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "th", 3 | "ok": "ตกลง", 4 | "yes": "ใช่", 5 | "cancel": "ยกเลิก", 6 | "appTitle": "ตัวแก้ไข Markdown", 7 | "previewToolTip": "ดูตัวอย่าง", 8 | "switchThemeMenuItem": "เปลี่ยนธีม", 9 | "switchViewMenuItem": "เปลี่ยนมุมมอง", 10 | "openFileMenuItem": "เปิด", 11 | "markdownTextInputLabel": "ป้อนข้อความ Markdown ของคุณที่นี่", 12 | "error": "ข้อผิดพลาด", 13 | "unableToOpenFileError": "ไม่สามารถเปิดไฟล์ได้ลองเปิดจากตัวเลือกเปิดไฟล์บนเมนู", 14 | "unableToOpenFileFromMenuError": "ไม่สามารถเปิดไฟล์ได้", 15 | "emptyInputTextContent": "กรุณากรอกข้อความ", 16 | "clear": "ชัดเจน", 17 | "clearAllTitle": "ล้างทั้งหมด", 18 | "clearAllContent": "คุณแน่ใจหรือไม่ว่าคุณต้องการล้างข้อความทั้งหมดหรือไม่?", 19 | "saveFileDialogTitle": "ป้อนชื่อไฟล์", 20 | "save": "บันทึก", 21 | "linkDialogTextTitle": "ข้อความ", 22 | "linkDialogLinkTitle": "การเชื่อมโยง", 23 | "enterLinkTextDialogTitle": "ป้อนลิงค์", 24 | "bold": "ตัวหนา", 25 | "italic": "ตัวเอียง", 26 | "link": "การเชื่อมโยง", 27 | "image": "ภาพ", 28 | "heading": "หัวเรื่อง", 29 | "code": "รหัส", 30 | "bulletList": "รายการกระสุนปืน", 31 | "quote": "อ้าง", 32 | "horizontalRule": "กฎแนวนอน", 33 | "strikethrough": "สเตจ", 34 | "confirmAppExitTitle": "ยืนยันการออก", 35 | "confirmAppExitContent": "คุณแน่ใจหรือไม่ว่าต้องการออกจากแอปนี้", 36 | "donate": "บริจาค", 37 | "print": "พิมพ์", 38 | "table": "โต๊ะ", 39 | "rows": "แถว", 40 | "columns": "คอลัมน์", 41 | "insert": "แทรก" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_bal.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "bal", 3 | "ok": "شریں", 4 | "yes": "ھو", 5 | "cancel": "کوتاه کنگ", 6 | "appTitle": "مارک ڈاؤن ایڈیٹر", 7 | "previewToolTip": "پیش چار", 8 | "switchThemeMenuItem": "بہا کن", 9 | "switchViewMenuItem": "ندارگ", 10 | "openFileMenuItem": "پچ", 11 | "markdownTextInputLabel": "ادا وتی مارک ڈاؤن ءَ ادا درج کن اِت", 12 | "error": "رَدی", 13 | "unableToOpenFileError": "فائل ءِ پچ کنگ ءَ بے سوب کن اِت، مینو ءِ سر ءَ اوپن فائل ءِ آپشن ءَ چہ پچ بہ کن اِت", 14 | "unableToOpenFileFromMenuError": "فائل ءَ پچ کنگ ءَ بے سوب", 15 | "emptyInputTextContent": "لہتیں نبشتانک ءَ درج کنگ بہ بیت", 16 | "clear": "ساپ", 17 | "clearAllTitle": "کُمک", 18 | "clearAllContent": "آیا شما دلجم اِت کہ شما سرجمیں نبشتانک ءَ چہ ھلاس کنگ ءَ ئے؟", 19 | "saveFileDialogTitle": "فائل ءِ نام ءَ درج کن اِت", 20 | "save": "دیمپان کن", 21 | "linkDialogTextTitle": "سیاہگ", 22 | "linkDialogLinkTitle": "لنک", 23 | "enterLinkTextDialogTitle": "لنک", 24 | "bold": "بیباک", 25 | "italic": "دگہ", 26 | "link": "لنک", 27 | "image": "عکس", 28 | "heading": "سر", 29 | "code": "کَٹ", 30 | "bulletList": "بلٹ لسٹ", 31 | "quote": "گْونڈگری", 32 | "horizontalRule": "سِندی قاعدہ", 33 | "strikethrough": "اسٹرینڈ", 34 | "confirmAppExitTitle": "دره", 35 | "confirmAppExitContent": "تو اے گپ ءَ دلجم ئے کہ تو اے کار ءَ کنگ لوٹ ئے؟", 36 | "donate": "دیگ", 37 | "print": "مانرگ", 38 | "table": "مێز", 39 | "rows": "راہ", 40 | "columns": "کولمن", 41 | "insert": "مان کنگ" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_jv.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ok", 3 | "yes": "Ya", 4 | "cancel": "Batal", 5 | "appTitle": "Editor Markdown", 6 | "previewToolTip": "Pratinjau", 7 | "switchThemeMenuItem": "Ngalih Tema", 8 | "switchViewMenuItem": "Ngalih tampilan", 9 | "openFileMenuItem": "Mbukak", 10 | "markdownTextInputLabel": "Ketik teks MARKDAL ing kene", 11 | "error": "Kesalahan", 12 | "unableToOpenFileError": "Ora bisa mbukak file kasebut, coba mbukak saka Open file ing menu", 13 | "unableToOpenFileFromMenuError": "Ora bisa mbukak file kasebut", 14 | "emptyInputTextContent": "Mangga ketik sawetara teks", 15 | "clear": "Cetha", 16 | "clearAllTitle": "Mbusak kabeh", 17 | "clearAllContent": "Apa sampeyan pengin mbusak kabeh teks?", 18 | "saveFileDialogTitle": "Ketik jeneng file", 19 | "save": "Ngirit", 20 | "linkDialogTextTitle": "Teks", 21 | "linkDialogLinkTitle": "Link", 22 | "enterLinkTextDialogTitle": "Ketik link", 23 | "bold": "Wani", 24 | "italic": "Miring", 25 | "link": "Link", 26 | "image": "Gambar", 27 | "heading": "Judhul", 28 | "code": "Kode", 29 | "bulletList": "Dhaptar Peluru", 30 | "quote": "Kutipan", 31 | "horizontalRule": "Aturan horisontal", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "jv", 34 | "confirmAppExitTitle": "Konfirmasi Exit", 35 | "confirmAppExitContent": "Apa sampeyan pengin metu app iki?", 36 | "donate": "Sumbang", 37 | "print": "Cetak", 38 | "table": "Tabel", 39 | "rows": "Larik", 40 | "columns": "Kolom", 41 | "insert": "SISTER" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ber.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "ber", 3 | "ok": "ⵢⴻⵔⴱⴰⵃ", 4 | "yes": "ⵉⵀ", 5 | "cancel": "ⵢⴻⴽⴽⴻⵙ", 6 | "appTitle": "ⴰⵙⵎⴷⵢⴰ ⵏ ⵎⴰⵔⴽⴷⵓⵏ", 7 | "previewToolTip": "ⴰⵙⴼⵙⵔ", 8 | "switchThemeMenuItem": "ⵙⵡⵉⵜⵛ Theme", 9 | "switchViewMenuItem": "ⵙⵡⵉⵜⵛ ⴼⵢⵓ", 10 | "openFileMenuItem": "ⵢⴻⵍⴷⵉ", 11 | "markdownTextInputLabel": "ⵙⵙⴽⵛⵎ ⴰⴹⵉⵚ ⵏ ⵓⵙⵓⴼⵖ ⵏⵏⴽ ⴷⴰ", 12 | "error": "ⵜⵓⵛⵛⴹⴰ", 13 | "unableToOpenFileError": "ⵓⵔ ⵜⵣⵎⵉⵔⴷ ⴰⴷ ⵜⵔⵥⵎⴷ ⴰⴼⴰⵢⵍⵓ, ⵄⵔⴹ ⴰⴷ ⵜ ⵜⵔⵥⵎⴷ ⵙⴳ ⵓⵙⵎⵍ ⵏ ⵓⴼⴰⵢⵍⵓ ⵔⵥⵎⵏ ⴳ ⵓⵎⵏⵉⴷ .", 14 | "unableToOpenFileFromMenuError": "ⵓⵔ ⵜⵣⵎⵉⵔⴷ ⴰⴷ ⵜⵔⵥⵎⴷ ⴰⴼⴰⵢⵍⵓ .", 15 | "emptyInputTextContent": "ⵜⵜⵔⵖ ⴰⴷ ⵜⴽⵛⵎⴷ ⴽⵔⴰ ⵏ ⵓⴹⵕⵉⵚ", 16 | "clear": "ⵢⴻⵙⴼⴻⴹ", 17 | "clearAllTitle": "ⴰⵙⵎⵖⵔ ⴰⵍⵍ", 18 | "clearAllContent": "ⴰⵔ ⵜⵙⵏⵓⵎⵎⴰⵍⴷ ⵎⴰⵙ ⵜⵔⵉⴷ ⴰⴷ ⵜⵙⵙⴼⵍⴷⴷ ⴰⴽⴽⵡ ⴰⴹⵕⵉⵚ ?", 19 | "saveFileDialogTitle": "ⵙⵙⴽⵛⵎ ⵉⵙⵎ ⵏ ⵓⴼⴰⵢⵍⵓ .", 20 | "save": "ⵙⴻⵍⴽⴻⵜ", 21 | "linkDialogTextTitle": "ⴰⴹⵔⵉⵙ", 22 | "linkDialogLinkTitle": "ⵢⴻⵇⵇⴻⵏ", 23 | "enterLinkTextDialogTitle": "ⴽⵛⵎ ⴰⵙⵖⵏⵣⵉ", 24 | "bold": "ⵉⴷⴰⵎⵎⴻⵏ", 25 | "italic": "ⵜⵓⵜⵍⴰⵢⵜ", 26 | "link": "ⵢⴻⵇⵇⴻⵏ", 27 | "image": "ⵜⴰⵡⵍⴼⴰⵜ", 28 | "heading": "ⴰⵇⵇⵉ", 29 | "code": "ⴽⵓⴷ", 30 | "bulletList": "ⴱⵓⵍⵉ ⵍⵉⵉⵙⵜ", 31 | "quote": "ⴱⴷⴻⵔ", 32 | "horizontalRule": "ⴰⵍⴳⴰⵎ ⴰⵣⴰⵢⴽⵓ", 33 | "strikethrough": "ⵙⵜⵔⵉⴽⵉⵜⵔⵔⵓ", 34 | "confirmAppExitTitle": "ⴰⵙⵉⴼ ⵏ ⵓⵙⵓⴼⵖ", 35 | "confirmAppExitContent": "ⴰⵔ ⵜⵙⵏⵓⵎⵎⴰⵍⴷ ⵎⴰⵙ ⵜⵔⵉⴷ ⴰⴷ ⵜⴼⴼⵖⴷ ⵖⵔ ⵜⵙⵏⵙⵉ ⴰⴷ?", 36 | "donate": "ⴰⵚⴻⴷⴷⴻⵇ", 37 | "print": "ⴰⵙⵖⵍ", 38 | "table": "ⵜⴰⴷⴰⴱⵓⵜ", 39 | "rows": "ⴰⵔⵔⴰⵜⵏ", 40 | "columns": "ⴽⵓⵍⵍⵓ", 41 | "insert": "ⴳⴻⵔ" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_et.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ok", 3 | "yes": "Jah", 4 | "cancel": "Tühistama", 5 | "appTitle": "Märgiredaktor", 6 | "previewToolTip": "Eelvaade", 7 | "switchThemeMenuItem": "Lüliti teema", 8 | "switchViewMenuItem": "Lülitusvaade", 9 | "openFileMenuItem": "Avatud", 10 | "markdownTextInputLabel": "Sisestage oma märgistus tekst siia", 11 | "error": "Viga", 12 | "unableToOpenFileError": "Ei saa faili avada", 13 | "unableToOpenFileFromMenuError": "Faili ei saa avada", 14 | "emptyInputTextContent": "Palun sisestage mõni tekst", 15 | "clear": "Selge", 16 | "clearAllTitle": "Puhastama kõik", 17 | "clearAllContent": "Kas olete kindel, kas soovite kogu teksti kustutada?", 18 | "saveFileDialogTitle": "Sisestage faili nimi", 19 | "save": "Kokkuhoid", 20 | "linkDialogTextTitle": "Tekst", 21 | "linkDialogLinkTitle": "Link", 22 | "enterLinkTextDialogTitle": "Sisestage link", 23 | "bold": "Paks", 24 | "italic": "Kaldkirjas", 25 | "link": "Link", 26 | "image": "Pilt", 27 | "heading": "Pealkiri", 28 | "code": "Kood", 29 | "bulletList": "Kuulide nimekiri", 30 | "quote": "Tsitaat", 31 | "horizontalRule": "Horisontaalne reegel", 32 | "strikethrough": "Löök", 33 | "@@locale": "et", 34 | "confirmAppExitTitle": "Kinnitage väljumine", 35 | "confirmAppExitContent": "Kas olete kindel, et soovite sellest rakendusest väljuda?", 36 | "donate": "Annetama", 37 | "print": "Trükk", 38 | "table": "Laud", 39 | "rows": "Read", 40 | "columns": "Veerud", 41 | "insert": "Vahetama" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_din.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "din", 3 | "ok": "Eyen", 4 | "yes": "awëi", 5 | "cancel": "riɔ̈k", 6 | "appTitle": "Ɣɔ̈nkä", 7 | "previewToolTip": "akölë", 8 | "switchThemeMenuItem": "Thuɔ̈l", 9 | "switchViewMenuItem": "cï waar View", 10 | "openFileMenuItem": "Liëp", 11 | "markdownTextInputLabel": "Tääu ë wël ë gɛ̈tdu piny ëtënë", 12 | "error": "Awuɔ̈c", 13 | "unableToOpenFileError": "Acïï lëu ba file liep, them ba liep thok tënë file ë thok ë thäät ë thäät ë thäät .", 14 | "unableToOpenFileFromMenuError": "Acïï lëu ba file liep .", 15 | "emptyInputTextContent": "Yïn wïc ba athör kɔ̈k gɔ̈t", 16 | "clear": "Nɔ̈k", 17 | "clearAllTitle": "kë ca leec ëbën", 18 | "clearAllContent": "Ye ŋic lɔn wïc yïn ba athör ëbɛ̈n ŋic?", 19 | "saveFileDialogTitle": "Tääu rin ke file", 20 | "save": "Kony", 21 | "linkDialogTextTitle": "Athöör", 22 | "linkDialogLinkTitle": "Kë ye nyuɔɔth", 23 | "enterLinkTextDialogTitle": "lɔ Lint", 24 | "bold": "Cïŋ", 25 | "italic": "ɛɛith", 26 | "link": "Kë ye nyuɔɔth", 27 | "image": "Ke ci kiet", 28 | "heading": "cök", 29 | "code": "cï kuany", 30 | "bulletList": "Bunol Lithol", 31 | "quote": "Nëm", 32 | "horizontalRule": "Lööŋ ke paanakïm", 33 | "strikethrough": "Thiɛ̈k", 34 | "confirmAppExitTitle": "Cɔk Kë loi", 35 | "confirmAppExitContent": "Ye ŋic lɔn wïc yïn ba jäl në app kënë yic?", 36 | "donate": "Kuɔ̈l", 37 | "print": "Lööŋ", 38 | "table": "Tɛ̈n luɔi", 39 | "rows": "Rowi", 40 | "columns": "Colum", 41 | "insert": "Bɛ̈n thïn" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_he.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "בְּסֵדֶר", 3 | "yes": "כֵּן", 4 | "cancel": "לְבַטֵל", 5 | "appTitle": "עורך Markdown", 6 | "previewToolTip": "תצוגה מקדימה", 7 | "switchThemeMenuItem": "נושא נושא", 8 | "switchViewMenuItem": "תצוגה מתג", 9 | "openFileMenuItem": "לִפְתוֹחַ", 10 | "markdownTextInputLabel": "הזן את הטקסט שלך ב- Markdown כאן", 11 | "error": "שְׁגִיאָה", 12 | "unableToOpenFileError": "לא ניתן לפתוח את הקובץ, נסה לפתוח אותו מאפשרות קובץ פתוח בתפריט", 13 | "unableToOpenFileFromMenuError": "לא ניתן לפתוח את הקובץ", 14 | "emptyInputTextContent": "אנא הכנס טקסט כלשהו", 15 | "clear": "בָּרוּר", 16 | "clearAllTitle": "לנקות הכל", 17 | "clearAllContent": "האם אתה בטוח שאתה רוצה לנקות את כל הטקסט?", 18 | "saveFileDialogTitle": "הזן את שם הקובץ", 19 | "save": "לְהַצִיל", 20 | "linkDialogTextTitle": "טֶקסט", 21 | "linkDialogLinkTitle": "לְקַשֵׁר", 22 | "enterLinkTextDialogTitle": "הזן קישור", 23 | "bold": "נוֹעָז", 24 | "italic": "נטוי", 25 | "link": "לְקַשֵׁר", 26 | "image": "תְמוּנָה", 27 | "heading": "כּוֹתֶרֶת", 28 | "code": "קוד", 29 | "bulletList": "רשימת כדורים", 30 | "quote": "לְצַטֵט", 31 | "horizontalRule": "כלל אופקי", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "he", 34 | "confirmAppExitTitle": "אשר את היציאה", 35 | "confirmAppExitContent": "האם אתה בטוח שאתה רוצה לצאת לאפליקציה זו?", 36 | "donate": "לִתְרוֹם", 37 | "print": "הֶדפֵּס", 38 | "table": "לוּחַ", 39 | "rows": "שורות", 40 | "columns": "עמודות", 41 | "insert": "לְהַכנִיס" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_iba.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "iba", 3 | "ok": "Ok", 4 | "yes": "Au", 5 | "cancel": "enda jadi", 6 | "appTitle": "Editor Markdown", 7 | "previewToolTip": "Preview", 8 | "switchThemeMenuItem": "Tukar Tema", 9 | "switchViewMenuItem": "Pemandang Suis", 10 | "openFileMenuItem": "Buka", 11 | "markdownTextInputLabel": "Masukka teks markdown nuan ditu .", 12 | "error": "Silap", 13 | "unableToOpenFileError": "Enda ulih muka fail, uji buka iya ari opsyen fail tebuka ba menu .", 14 | "unableToOpenFileFromMenuError": "Enda ulih muka fail .", 15 | "emptyInputTextContent": "Minta kita masukka sekeda teks .", 16 | "clear": "Beresi", 17 | "clearAllTitle": "Terang Semua", 18 | "clearAllContent": "Kati nuan tentu deka clear semua teks?", 19 | "saveFileDialogTitle": "Masuk nama fail .", 20 | "save": "Nyelamatka", 21 | "linkDialogTextTitle": "Ayat", 22 | "linkDialogLinkTitle": "Pautan", 23 | "enterLinkTextDialogTitle": "Masukka Paut", 24 | "bold": "Taluk", 25 | "italic": "Italic", 26 | "link": "Pautan", 27 | "image": "Ngambar", 28 | "heading": "Mupuk .", 29 | "code": "Kod .", 30 | "bulletList": "Rintai Peluru", 31 | "quote": "Petikan", 32 | "horizontalRule": "Atur Horizontal", 33 | "strikethrough": "Strikethrough", 34 | "confirmAppExitTitle": "Ngesahka Pemansut", 35 | "confirmAppExitContent": "Kati nuan tentu deka pansut ari app tu?", 36 | "donate": "Menderma", 37 | "print": "Print", 38 | "table": "Mija", 39 | "rows": "Baris", 40 | "columns": "Tiang", 41 | "insert": "Tama" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_bew.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "bew", 3 | "ok": "Oke", 4 | "yes": "Iye", 5 | "cancel": "Ngusekin", 6 | "appTitle": "Redaktor Markus", 7 | "previewToolTip": "Pintas", 8 | "switchThemeMenuItem": "Beralih Tema", 9 | "switchViewMenuItem": "Beralih Tampilan", 10 | "openFileMenuItem": "Singkab", 11 | "markdownTextInputLabel": "Masukin teks market bawah lo di sini .", 12 | "error": "Kesalahan", 13 | "unableToOpenFileError": "Gak bisa buka file, coba buka dari opsi file terbuka di menu", 14 | "unableToOpenFileFromMenuError": "Gak bisa buka file .", 15 | "emptyInputTextContent": "Tolong masukin beberapa teks .", 16 | "clear": "Danta", 17 | "clearAllTitle": "Bening Semua", 18 | "clearAllContent": "Yakin udah mau clear semua teksnya?", 19 | "saveFileDialogTitle": "Masukin aja nama filenya .", 20 | "save": "Nyimpen", 21 | "linkDialogTextTitle": "Teks", 22 | "linkDialogLinkTitle": "Tautan", 23 | "enterLinkTextDialogTitle": "Masuk ke Link", 24 | "bold": "Jagoan", 25 | "italic": "miring", 26 | "link": "Tautan", 27 | "image": "Gambar", 28 | "heading": "menuju", 29 | "code": "Kode", 30 | "bulletList": "Daftar Peluru", 31 | "quote": "Ngutip", 32 | "horizontalRule": "Aturan mendatar", 33 | "strikethrough": "Nyerang", 34 | "confirmAppExitTitle": "Keluaran Konfirma", 35 | "confirmAppExitContent": "Yakin mau keluar dari aplikasi ini?", 36 | "donate": "Nyumbang", 37 | "print": "Cetak", 38 | "table": "Meja", 39 | "rows": "Deretan", 40 | "columns": "Kolom", 41 | "insert": "Masukin" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_gaa.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "gaa", 3 | "ok": "Yóo", 4 | "yes": "hɛɛ", 5 | "cancel": "foo mli", 6 | "appTitle": "Markdown niŋmalɔ", 7 | "previewToolTip": "triikwɛmɔ", 8 | "switchThemeMenuItem": "Tsakemɔ saneyitso", 9 | "switchViewMenuItem": "Tsakemɔ kwɛmɔ", 10 | "openFileMenuItem": "Gbelemɔ", 11 | "markdownTextInputLabel": "Ŋmaa okadimɔ niŋmaa lɛ yɛ biɛ", 12 | "error": "Tɔmɔ", 13 | "unableToOpenFileError": "Ebɛ faili lɛ, kaa lɛ kɛjɛ faili ni agbele nɔ yɛ menu lɛ nɔ", 14 | "unableToOpenFileFromMenuError": "Nyɛ nyɛɛɛ wɔgbele faili lɛ", 15 | "emptyInputTextContent": "Ofainɛ ŋmaa niŋmaa ko", 16 | "clear": "Miitsemɔ", 17 | "clearAllTitle": "Kanemɔ Nɔ fɛɛ nɔ", 18 | "clearAllContent": "Ani oyɛ nɔmimaa akɛ oosumɔ ni ojie niŋmaa lɛ fɛɛ kɛjɛ mli?", 19 | "saveFileDialogTitle": "Ŋmaa faili lɛ gbɛi", 20 | "save": "Helemɔ", 21 | "linkDialogTextTitle": "Tɛxtimɔ", 22 | "linkDialogLinkTitle": "Linki", 23 | "enterLinkTextDialogTitle": "Ŋmaa Link", 24 | "bold": "Hiɛwa", 25 | "italic": "munyu tumi", 26 | "link": "Linki", 27 | "image": "Magã", 28 | "heading": "Yitsoŋ", 29 | "code": "Ko ni", 30 | "bulletList": "Bullet List", 31 | "quote": "Kɛɛmɔ", 32 | "horizontalRule": "Mla ni yɔɔ diɛŋtsɛ", 33 | "strikethrough": "yi nɔ", 34 | "confirmAppExitTitle": "Majemɔ", 35 | "confirmAppExitContent": "Ani oyɛ nɔmimaa akɛ oosumɔ ni oje app nɛɛ mli?", 36 | "donate": "Onia", 37 | "print": "Print", 38 | "table": "Okpɔnɔ", 39 | "rows": "Rows", 40 | "columns": "Colums", 41 | "insert": "Hɔlɔ mli" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_kk.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "kk", 3 | "ok": "Жарайды", 4 | "yes": "Иә", 5 | "cancel": "Күшін жою", 6 | "appTitle": "Маркақтау редакторы", 7 | "previewToolTip": "Алдын-ала қарау", 8 | "switchThemeMenuItem": "Тақырыпты ауыстыру", 9 | "switchViewMenuItem": "Көру", 10 | "openFileMenuItem": "Ашу", 11 | "markdownTextInputLabel": "Нарждау мәтінін мына жерден енгізіңіз", 12 | "error": "Қателік", 13 | "unableToOpenFileError": "Файлды ашу мүмкін емес, оны мәзірдегі ашық файлдан ашып көріңіз", 14 | "unableToOpenFileFromMenuError": "Файлды ашу мүмкін емес", 15 | "emptyInputTextContent": "Мәтінді енгізіңіз", 16 | "clear": "Айқын", 17 | "clearAllTitle": "Барлығын тазалаңыз", 18 | "clearAllContent": "Сіз барлық мәтінді өшіргіңіз келе ме?", 19 | "saveFileDialogTitle": "Файлдың атын енгізіңіз", 20 | "save": "Жинау", 21 | "linkDialogTextTitle": "Мәтін", 22 | "linkDialogLinkTitle": "Байланыс", 23 | "enterLinkTextDialogTitle": "Сілтемені енгізіңіз", 24 | "bold": "Батыл", 25 | "italic": "Курсив", 26 | "link": "Байланыс", 27 | "image": "Бейне", 28 | "heading": "Тақырып", 29 | "code": "Код", 30 | "bulletList": "Оқ тізімі", 31 | "quote": "Сілтеме жасау", 32 | "horizontalRule": "Көлденең ереже", 33 | "strikethrough": "Стрикет", 34 | "confirmAppExitTitle": "Шығуды растаңыз", 35 | "confirmAppExitContent": "Сіз бұл бағдарламадан шыққыңыз келе ме?", 36 | "donate": "Қию", 37 | "print": "Із", 38 | "table": "Үстел", 39 | "rows": "Жолдар", 40 | "columns": "Бағандар", 41 | "insert": "Қосу" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_km.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "km", 3 | "ok": "យល់ព្រម", 4 | "yes": "បាត", 5 | "cancel": "លប់ចោល", 6 | "appTitle": "កម្មវិធីនិពន្ធម៉ាកុស", 7 | "previewToolTip": "បុរេតសសន៍", 8 | "switchThemeMenuItem": "ប្តូរស្បែក", 9 | "switchViewMenuItem": "ប្តូរទិដ្ឋភាព", 10 | "openFileMenuItem": "ដេលចមហរ", 11 | "markdownTextInputLabel": "បញ្ចូលអត្ថបទសម្គាល់របស់អ្នកនៅទីនេះ", 12 | "error": "កមហុស", 13 | "unableToOpenFileError": "មិនអាចបើកឯកសារទេសូមព្យាយាមបើកវាពីជម្រើសឯកសារនៅលើម៉ឺនុយ", 14 | "unableToOpenFileFromMenuError": "មិនអាចបើកឯកសារបានទេ", 15 | "emptyInputTextContent": "សូមបញ្ចូលអត្ថបទខ្លះ", 16 | "clear": "ផ្លឺ", 17 | "clearAllTitle": "ជម្រះទាំងអស់", 18 | "clearAllContent": "តើអ្នកប្រាកដទេថាតើអ្នកចង់លុបអត្ថបទទាំងអស់ទេ?", 19 | "saveFileDialogTitle": "បញ្ចូលឈ្មោះឯកសារ", 20 | "save": "សរេង្គាហ", 21 | "linkDialogTextTitle": "អត្ថបត", 22 | "linkDialogLinkTitle": "ការតាក់តង", 23 | "enterLinkTextDialogTitle": "បញ្ចូលតំណ", 24 | "bold": "ក្លាហាន", 25 | "italic": "ទ្រេត", 26 | "link": "ការតាក់តង", 27 | "image": "ធម្ផារម្ផន៍", 28 | "heading": "ក្បាលសមបុរត", 29 | "code": "ច្បាប់រដ្ឋប្បវេនី", 30 | "bulletList": "បញ្ជីចំណុច", 31 | "quote": "ការវាយតមលៃ", 32 | "horizontalRule": "វិធានផ្តេក", 33 | "strikethrough": "striKethrough", 34 | "confirmAppExitTitle": "បញ្ជាក់ការចាកចេញ", 35 | "confirmAppExitContent": "តើអ្នកពិតជាចង់ចាកចេញពីកម្មវិធីនេះមែនទេ?", 36 | "donate": "បរិច្ចាក", 37 | "print": "អកសរបុម្ក", 38 | "table": "តុ", 39 | "rows": "ជួរ", 40 | "columns": "ជួរឈរ", 41 | "insert": "រចក" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_kri.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "kri", 3 | "ok": "Ok", 4 | "yes": "Yɛs", 5 | "cancel": "nɔ", 6 | "appTitle": "Makdɔwn Ɛditɔ .", 7 | "previewToolTip": "Preview .", 8 | "switchThemeMenuItem": "Switch di tim fɔ di .", 9 | "switchViewMenuItem": "Switch View .", 10 | "openFileMenuItem": "Opin", 11 | "markdownTextInputLabel": "Ɛntay yu makdɔwn tɛks ya .", 12 | "error": "Mistek", 13 | "unableToOpenFileError": "Nɔ ebul fɔ opin di fayl, tray fɔ opin am frɔm opin fayl opshɔn na di menyu .", 14 | "unableToOpenFileFromMenuError": "Nɔ ebul fɔ opin di fayl .", 15 | "emptyInputTextContent": "Duya ɛnta sɔm tɛks .", 16 | "clear": "Klia", 17 | "clearAllTitle": "Klia ɔl .", 18 | "clearAllContent": "Yu shɔ se yu want fɔ klia ɔl di tɛks?", 19 | "saveFileDialogTitle": "Ɛntay di nem fɔ di fayl .", 20 | "save": "Sev", 21 | "linkDialogTextTitle": "Tɛks", 22 | "linkDialogLinkTitle": "Link", 23 | "enterLinkTextDialogTitle": "Ɛntay link .", 24 | "bold": "Gɛt maynd", 25 | "italic": "Italiks .", 26 | "link": "Link", 27 | "image": "Aydul", 28 | "heading": "Di edlayn .", 29 | "code": "Kod .", 30 | "bulletList": "List fɔ Bullet .", 31 | "quote": "Tɔk", 32 | "horizontalRule": "Ɔrizɔntal Rul .", 33 | "strikethrough": "Straykthru", 34 | "confirmAppExitTitle": "Kɔnfirm Ɛkzit .", 35 | "confirmAppExitContent": "Yu shɔ se yu want fɔ kɔmɔt na dis ap?", 36 | "donate": "Gi", 37 | "print": "Print di 1999.", 38 | "table": "Tebul", 39 | "rows": "Row dɛn .", 40 | "columns": "Kɔlɔm dɛn .", 41 | "insert": "Ad" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_sk.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "V poriadku", 3 | "yes": "Áno", 4 | "cancel": "Zrušiť", 5 | "appTitle": "Redaktor", 6 | "previewToolTip": "Ukážka", 7 | "switchThemeMenuItem": "Téma", 8 | "switchViewMenuItem": "Zobrazenie prepínača", 9 | "openFileMenuItem": "OTVORENÉ", 10 | "markdownTextInputLabel": "Zadajte tu svoj text", 11 | "error": "Chyba", 12 | "unableToOpenFileError": "Nemožno otvoriť súbor, skúste ho otvoriť z možnosti otvoreného súboru v ponuke", 13 | "unableToOpenFileFromMenuError": "Nie je možné otvoriť súbor", 14 | "emptyInputTextContent": "Zadajte nejaký text", 15 | "clear": "Vyčistiť", 16 | "clearAllTitle": "Vyčistiť", 17 | "clearAllContent": "Ste si istí, že chcete vyčistiť všetok text?", 18 | "saveFileDialogTitle": "Zadajte názov súboru", 19 | "save": "Uložiť", 20 | "linkDialogTextTitle": "Text", 21 | "linkDialogLinkTitle": "Prepojiť", 22 | "enterLinkTextDialogTitle": "Zadajte odkaz", 23 | "bold": "Výrazný", 24 | "italic": "Kurzíva", 25 | "link": "Prepojiť", 26 | "image": "Obraz", 27 | "heading": "Nadpis", 28 | "code": "Kódovať", 29 | "bulletList": "Zoznam", 30 | "quote": "Citovať", 31 | "horizontalRule": "Horizontálne pravidlo", 32 | "strikethrough": "Štrajk", 33 | "@@locale": "sk", 34 | "confirmAppExitTitle": "Potvrďte výstup", 35 | "confirmAppExitContent": "Ste si istí, že chcete opustiť túto aplikáciu?", 36 | "donate": "Darovať", 37 | "print": "Tlač", 38 | "table": "Tabuľka", 39 | "rows": "Riadky", 40 | "columns": "Stĺpce", 41 | "insert": "Vložiť" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_sv.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ok", 3 | "yes": "Ja", 4 | "cancel": "Avboka", 5 | "appTitle": "Markdown Editor", 6 | "previewToolTip": "Förhandsvisning", 7 | "switchThemeMenuItem": "Switchtema", 8 | "switchViewMenuItem": "Switchvy", 9 | "openFileMenuItem": "Öppna", 10 | "markdownTextInputLabel": "Ange din Markdown -text här", 11 | "error": "Fel", 12 | "unableToOpenFileError": "Det går inte att öppna filen, försök att öppna den från Open File -alternativet på menyn", 13 | "unableToOpenFileFromMenuError": "Det går inte att öppna filen", 14 | "emptyInputTextContent": "Ange lite text", 15 | "clear": "Rensa", 16 | "clearAllTitle": "Rensar alla", 17 | "clearAllContent": "Är du säker på att du vill rensa all text?", 18 | "saveFileDialogTitle": "Ange filens namn", 19 | "save": "Spara", 20 | "linkDialogTextTitle": "Text", 21 | "linkDialogLinkTitle": "Länk", 22 | "enterLinkTextDialogTitle": "Ange länken", 23 | "bold": "Djärv", 24 | "italic": "Kursiv", 25 | "link": "Länk", 26 | "image": "Bild", 27 | "heading": "Rubrik", 28 | "code": "Koda", 29 | "bulletList": "Kula", 30 | "quote": "Citationstecken", 31 | "horizontalRule": "Horisontell regel", 32 | "strikethrough": "Trrikethrough", 33 | "@@locale": "sv", 34 | "confirmAppExitTitle": "Bekräfta utgång", 35 | "confirmAppExitContent": "Är du säker på att du vill lämna den här appen?", 36 | "donate": "Donera", 37 | "print": "Skriva ut", 38 | "table": "Tabell", 39 | "rows": "Rader", 40 | "columns": "Kolumner", 41 | "insert": "Infoga" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_tt.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ярар", 3 | "yes": "Әйе", 4 | "cancel": "Бетерү", 5 | "appTitle": "Марк Дедор", 6 | "previewToolTip": "Алдан карау", 7 | "switchThemeMenuItem": "Тема темасын күчерү", 8 | "switchViewMenuItem": "Күчергеч күренеш", 9 | "openFileMenuItem": "Ачык", 10 | "markdownTextInputLabel": "Монда Марк Даунгны кертегез", 11 | "error": "Хата", 12 | "unableToOpenFileError": "Файлны ача алмый, аны менюдагы ачык файл вариантын ачарга тырышыгыз", 13 | "unableToOpenFileFromMenuError": "Файлны ача алмый", 14 | "emptyInputTextContent": "Зинһар, текстны кертегез", 15 | "clear": "Чиста", 16 | "clearAllTitle": "Барысын да чистарту", 17 | "clearAllContent": "Сез бөтен текстны чистартырга телисезме?", 18 | "saveFileDialogTitle": "Файлның исемен кертегез", 19 | "save": "Саклагыз", 20 | "linkDialogTextTitle": "Текст", 21 | "linkDialogLinkTitle": "Сылтама", 22 | "enterLinkTextDialogTitle": "Ссылка кертегез", 23 | "bold": "Калын", 24 | "italic": "Италик", 25 | "link": "Сылтама", 26 | "image": "Образ", 27 | "heading": "Баш", 28 | "code": "Код", 29 | "bulletList": "Пуля исемлеге", 30 | "quote": "Цитата", 31 | "horizontalRule": "Горизонталь кагыйдә", 32 | "strikethrough": "Бәрелеш", 33 | "@@locale": "tt", 34 | "confirmAppExitTitle": "Чыгышны раслагыз", 35 | "confirmAppExitContent": "Сез бу кушымтаны чыгарга телисезме?", 36 | "donate": "Бүләк итегез", 37 | "print": "Бастыру", 38 | "table": "Таблица", 39 | "rows": "Рәтләр", 40 | "columns": "Баганалар", 41 | "insert": "Кертү" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ug.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ok", 3 | "yes": "ھەئە", 4 | "cancel": "بىكار قىلىش", 5 | "appTitle": "توشۇۋېلىش تەھرىرى", 6 | "previewToolTip": "ئالدىن كۆرۈش", 7 | "switchThemeMenuItem": "تېما تېمىسى", 8 | "switchViewMenuItem": "Schangel", 9 | "openFileMenuItem": "ئوچۇق", 10 | "markdownTextInputLabel": "بەلگە تېكىستىڭىزنى بۇ يەرگە كىرگۈزۈڭ", 11 | "error": "خاتالىق", 12 | "unableToOpenFileError": "ھۆججەتنى ئاچالمىدى, تىزىملىكتىكى ئوچۇق ھۆججەت تاللانمىسىدىن ئېچىڭ", 13 | "unableToOpenFileFromMenuError": "ھۆججەتنى ئاچالمىدى", 14 | "emptyInputTextContent": "بەزى تېكىستلەرنى كىرگۈزۈڭ", 15 | "clear": "ئېنىق", 16 | "clearAllTitle": "ھەممىنى تازىلاش", 17 | "clearAllContent": "بارلىق تېكىستلەرنى تازىلاشنى خالامسىز?", 18 | "saveFileDialogTitle": "ھۆججەتنىڭ نامىنى كىرگۈزۈڭ", 19 | "save": "تېجەڭ", 20 | "linkDialogTextTitle": "تېكىست", 21 | "linkDialogLinkTitle": "ئۇلىنىش", 22 | "enterLinkTextDialogTitle": "كىرىڭ", 23 | "bold": "Bold", 24 | "italic": "يانتۇ", 25 | "link": "ئۇلىنىش", 26 | "image": "Image", 27 | "heading": "ماۋزۇ", 28 | "code": "كود", 29 | "bulletList": "ئوق تىزىملىكى", 30 | "quote": "نەقىل", 31 | "horizontalRule": "توغرىسىغا قائىدە", 32 | "strikethrough": "ئىش تاشلاش", 33 | "@@locale": "ug", 34 | "confirmAppExitTitle": "چېكىنىشنى جەزملەشتۈرۈڭ", 35 | "confirmAppExitContent": "بۇ دېتالدىن چېكىنىشنى خالامسىز?", 36 | "donate": "ئىئانە قىلىڭ", 37 | "print": "بېسىپ چىقىرىش", 38 | "table": "جەدۋەل", 39 | "rows": "Rows", 40 | "columns": "ستونلار", 41 | "insert": "قىستۇر" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_yo.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Dara", 3 | "yes": "Bẹẹni", 4 | "cancel": "Fagilee", 5 | "appTitle": "Oloolu", 6 | "previewToolTip": "Awotẹlẹ", 7 | "switchThemeMenuItem": "Akori yipada", 8 | "switchViewMenuItem": "Yipada Yipada", 9 | "openFileMenuItem": "Ṣii", 10 | "markdownTextInputLabel": "Tẹ ọrọ iṣakoso rẹ nibi", 11 | "error": "Aṣiṣe", 12 | "unableToOpenFileError": "Ko lagbara lati ṣii faili naa, gbiyanju ṣiṣi lati aṣayan ṣiṣi faili lori akojọ aṣayan", 13 | "unableToOpenFileFromMenuError": "Ko le ṣii faili naa", 14 | "emptyInputTextContent": "Jọwọ tẹ diẹ ninu ọrọ", 15 | "clear": "Ko kuro", 16 | "clearAllTitle": "Pa gbogbo run", 17 | "clearAllContent": "Ṣe o da ọ ni o fẹ lati sọ gbogbo ọrọ naa kuro?", 18 | "saveFileDialogTitle": "Tẹ orukọ faili naa", 19 | "save": "Fipamọ", 20 | "linkDialogTextTitle": "Ọrọ", 21 | "linkDialogLinkTitle": "Ọna asopọ", 22 | "enterLinkTextDialogTitle": "Tẹ ọna asopọ", 23 | "bold": "Alaifoya", 24 | "italic": "Italiki", 25 | "link": "Ọna asopọ", 26 | "image": "Aworan", 27 | "heading": "Akọle", 28 | "code": "Koodu", 29 | "bulletList": "Atokọ ọta ibọn", 30 | "quote": "Ṣagbasọ", 31 | "horizontalRule": "Ofin Petele", 32 | "strikethrough": "Ikọsilẹ", 33 | "@@locale": "yo", 34 | "confirmAppExitTitle": "Jẹrisi ijade", 35 | "confirmAppExitContent": "Ṣe o da ọ loju pe o fẹ lati jade kuro ni app yii?", 36 | "donate": "Ṣetọrẹ", 37 | "print": "Tẹjade", 38 | "table": "Tabili", 39 | "rows": "Ori ila", 40 | "columns": "Awọn ọwọn", 41 | "insert": "Fisi" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_da.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "OK", 3 | "yes": "Ja", 4 | "cancel": "Ophæve", 5 | "appTitle": "Markdown Editor", 6 | "previewToolTip": "Preview", 7 | "switchThemeMenuItem": "Skift tema", 8 | "switchViewMenuItem": "Switch View", 9 | "openFileMenuItem": "Åben", 10 | "markdownTextInputLabel": "Indtast din Markdown -tekst her", 11 | "error": "Fejl", 12 | "unableToOpenFileError": "Kan ikke åbne filen, prøv at åbne den fra open filindstillingen i menuen", 13 | "unableToOpenFileFromMenuError": "Kan ikke åbne filen", 14 | "emptyInputTextContent": "Indtast venligst noget tekst", 15 | "clear": "Klar", 16 | "clearAllTitle": "Ryd alle", 17 | "clearAllContent": "Er du sikker på, at du vil rydde al teksten?", 18 | "saveFileDialogTitle": "Indtast navnet på filen", 19 | "save": "Spare", 20 | "linkDialogTextTitle": "Tekst", 21 | "linkDialogLinkTitle": "Forbindelse", 22 | "enterLinkTextDialogTitle": "Indtast link", 23 | "bold": "Dristig", 24 | "italic": "Kursiv", 25 | "link": "Forbindelse", 26 | "image": "Billede", 27 | "heading": "Overskrift", 28 | "code": "Kode", 29 | "bulletList": "Kugle liste", 30 | "quote": "Citere", 31 | "horizontalRule": "Vandret regel", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "da", 34 | "confirmAppExitTitle": "Bekræft udgang", 35 | "confirmAppExitContent": "Er du sikker på, at du vil afslutte denne app?", 36 | "donate": "Doner", 37 | "print": "Trykke", 38 | "table": "Tabel", 39 | "rows": "Rækker", 40 | "columns": "Søjler", 41 | "insert": "Indsæt" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_lo.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "ຕົກລົງ", 3 | "yes": "ແລ້ວ", 4 | "cancel": "ຍົກເລີກ", 5 | "appTitle": "ບັນນາທິການ Markdown", 6 | "previewToolTip": "ການສະແດງຕົວຢ່າງ", 7 | "switchThemeMenuItem": "ສັບປ່ຽນຫົວຂໍ້", 8 | "switchViewMenuItem": "ເປີດມຸມມອງ", 9 | "openFileMenuItem": "ເປີດ", 10 | "markdownTextInputLabel": "ກະລຸນາໃສ່ຂໍ້ຄວາມ Markown ຂອງທ່ານທີ່ນີ້", 11 | "error": "ຜິດ", 12 | "unableToOpenFileError": "ບໍ່ສາມາດເປີດເອກະສານ, ລອງເປີດຈາກຕົວເລືອກ Open File ໃນເມນູ", 13 | "unableToOpenFileFromMenuError": "ບໍ່ສາມາດເປີດເອກະສານໄດ້", 14 | "emptyInputTextContent": "ກະລຸນາໃສ່ຂໍ້ຄວາມບາງຢ່າງ", 15 | "clear": "ແຈ່ມແຈ້ງ", 16 | "clearAllTitle": "ລ້າງທັງຫມົດ", 17 | "clearAllContent": "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການກໍາຈັດຂໍ້ຄວາມທັງຫມົດ?", 18 | "saveFileDialogTitle": "ໃສ່ຊື່ຂອງເອກະສານ", 19 | "save": "ປະຢັດ", 20 | "linkDialogTextTitle": "ຂໍ້ຄວາມ", 21 | "linkDialogLinkTitle": "ການເຊື່ອມໂຍງ", 22 | "enterLinkTextDialogTitle": "ໃສ່ລິ້ງ", 23 | "bold": "ກ້າຫານ", 24 | "italic": "ອິຕາລີ", 25 | "link": "ການເຊື່ອມໂຍງ", 26 | "image": "ຮູບ", 27 | "heading": "ຫົວຂໍ້", 28 | "code": "ລະຫັດ", 29 | "bulletList": "ບັນຊີລາຍຊື່ລູກປືນ", 30 | "quote": "ອ້າງ", 31 | "horizontalRule": "ກົດລະບຽບຕາມແນວນອນ", 32 | "strikethrough": "ການເຄື່ອນໄຫວ", 33 | "@@locale": "lo", 34 | "confirmAppExitTitle": "ຢືນຢັນການອອກ", 35 | "confirmAppExitContent": "ທ່ານແນ່ໃຈບໍ່ວ່າທ່ານຕ້ອງການອອກຈາກແອັບ this ນີ້?", 36 | "donate": "ບໍລິຈາກ", 37 | "print": "ພິມ", 38 | "table": "ໂຕະ", 39 | "rows": "ພາຢ", 40 | "columns": "ຖັນ", 41 | "insert": "ຊອນເຂົ້າ" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_pa.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "ਠੀਕ ਹੈ", 3 | "yes": "ਹਾਂ", 4 | "cancel": "ਰੱਦ ਕਰੋ", 5 | "appTitle": "ਮਾਰਕਡਾਉਨ ਐਡੀਟਰ", 6 | "previewToolTip": "ਝਲਕ", 7 | "switchThemeMenuItem": "ਥੀਮ ਬਦਲੋ", 8 | "switchViewMenuItem": "ਸਵਿਚ ਦ੍ਰਿਸ਼", 9 | "openFileMenuItem": "ਖੁੱਲਾ", 10 | "markdownTextInputLabel": "ਆਪਣਾ ਮਾਰਟਡਾਉਨ ਟੈਕਸਟ ਇੱਥੇ ਦਾਖਲ ਕਰੋ", 11 | "error": "ਗਲਤੀ", 12 | "unableToOpenFileError": "ਫਾਈਲ ਖੋਲ੍ਹਣ ਵਿੱਚ ਅਸਮਰੱਥ, ਮੀਨੂੰ ਤੇ ਖੁੱਲੇ ਫਾਈਲ ਵਿਕਲਪ ਤੋਂ ਖੋਲ੍ਹਣ ਦੀ ਕੋਸ਼ਿਸ਼ ਕਰੋ", 13 | "unableToOpenFileFromMenuError": "ਫਾਈਲ ਖੋਲ੍ਹਣ ਵਿੱਚ ਅਸਮਰੱਥ", 14 | "emptyInputTextContent": "ਕਿਰਪਾ ਕਰਕੇ ਕੁਝ ਟੈਕਸਟ ਦਾਖਲ ਕਰੋ", 15 | "clear": "ਸਾਫ", 16 | "clearAllTitle": "ਸਭ ਨੂੰ ਸਾਫ ਕਰੋ", 17 | "clearAllContent": "ਕੀ ਤੁਹਾਨੂੰ ਯਕੀਨ ਹੈ ਕਿ ਤੁਸੀਂ ਸਾਰੇ ਪਾਠ ਨੂੰ ਸਾਫ ਕਰਨਾ ਚਾਹੁੰਦੇ ਹੋ?", 18 | "saveFileDialogTitle": "ਫਾਈਲ ਦਾ ਨਾਮ ਦਰਜ ਕਰੋ", 19 | "save": "ਸੇਵ", 20 | "linkDialogTextTitle": "ਟੈਕਸਟ", 21 | "linkDialogLinkTitle": "ਲਿੰਕ", 22 | "enterLinkTextDialogTitle": "ਲਿੰਕ ਦਰਜ ਕਰੋ", 23 | "bold": "ਬੋਲਡ", 24 | "italic": "ਇਟੈਲਿਕ", 25 | "link": "ਲਿੰਕ", 26 | "image": "ਚਿੱਤਰ", 27 | "heading": "ਸਿਰਲੇਖ", 28 | "code": "ਕੋਡ", 29 | "bulletList": "ਬੁਲੇਟ ਲਿਸਟ", 30 | "quote": "ਹਵਾਲਾ", 31 | "horizontalRule": "ਹਰੀਜ਼ਟਲ ਨਿਯਮ", 32 | "strikethrough": "ਹੜਤਾਲ", 33 | "@@locale": "pa", 34 | "confirmAppExitTitle": "ਬਾਹਰ ਜਾਣ ਦੀ ਪੁਸ਼ਟੀ ਕਰੋ", 35 | "confirmAppExitContent": "ਕੀ ਤੁਸੀਂ ਯਕੀਨਨ ਇਸ ਐਪ ਤੋਂ ਬਾਹਰ ਜਾਣਾ ਚਾਹੁੰਦੇ ਹੋ?", 36 | "donate": "ਦਾਨ", 37 | "print": "ਪ੍ਰਿੰਟ", 38 | "table": "ਟੇਬਲ", 39 | "rows": "ਕਤਾਰਾਂ", 40 | "columns": "ਕਾਲਮ", 41 | "insert": "ਸੰਮਿਲਿਤ ਕਰੋ" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_sd.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "ٺيڪ آ ٺيڪ ن", 3 | "yes": "ها", 4 | "cancel": "رد ڪري", 5 | "appTitle": "مارڪ ڊائون اين ايڊيٽر", 6 | "previewToolTip": "نظريو", 7 | "switchThemeMenuItem": "مٽايو موضوع", 8 | "switchViewMenuItem": "نظر مٽبو", 9 | "openFileMenuItem": "کوليو", 10 | "markdownTextInputLabel": "هتي پنهنجو نشان لکو هتي داخل ڪريو", 11 | "error": "غلط", 12 | "unableToOpenFileError": "فائل کولڻ کان قاصر، ان کي کولڻ جي لاء ان کي کولڻ جي ڪوشش ڪريو مينيو تي", 13 | "unableToOpenFileFromMenuError": "فائل کولڻ کان قاصر", 14 | "emptyInputTextContent": "مهرباني ڪري ڪجهه متن داخل ڪريو", 15 | "clear": "صاف طاقت", 16 | "clearAllTitle": "بلڪل بلڪل", 17 | "clearAllContent": "ڇا توهان کي پڪ آهي ته توهان سڀني متن کي صاف ڪرڻ چاهيو ٿا؟", 18 | "saveFileDialogTitle": "فائل جو نالو داخل ڪريو", 19 | "save": "سڪرو", 20 | "linkDialogTextTitle": "ٽايو", 21 | "linkDialogLinkTitle": "لنڪ", 22 | "enterLinkTextDialogTitle": "لنڪ ۾ داخل ڪريو", 23 | "bold": "بولڊ", 24 | "italic": "اطالوي", 25 | "link": "لنڪ", 26 | "image": "تصوير", 27 | "heading": "پيراپ", 28 | "code": "ڪوڊ", 29 | "bulletList": "بلٽ لسٽ", 30 | "quote": "پڙهائي سينس", 31 | "horizontalRule": "افقي قاعدو", 32 | "strikethrough": "هڙتال ڪندڙ", 33 | "@@locale": "sd", 34 | "confirmAppExitTitle": "تصديق ڪريو", 35 | "confirmAppExitContent": "ڇا توهان کي پڪ آهي ته توهان هن ايپ کي ٻاهر نڪرڻ چاهيو ٿا؟", 36 | "donate": "عطيو ڏيو", 37 | "print": "ڇپي", 38 | "table": "ٽيبل", 39 | "rows": "قطار", 40 | "columns": "ڪالمن", 41 | "insert": "داخلو" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ur.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "ٹھیک ہے", 3 | "yes": "ہاں", 4 | "cancel": "منسوخ کریں", 5 | "appTitle": "مارک ڈاون ایڈیٹر", 6 | "previewToolTip": "پیش نظارہ", 7 | "switchThemeMenuItem": "تھیم کو سوئچ کریں", 8 | "switchViewMenuItem": "سوئچ ویو", 9 | "openFileMenuItem": "کھلا", 10 | "markdownTextInputLabel": "اپنا مارک ڈاون متن یہاں درج کریں", 11 | "error": "غلطی", 12 | "unableToOpenFileError": "فائل کھولنے سے قاصر ، مینو پر اوپن فائل آپشن سے کھولنے کی کوشش کریں", 13 | "unableToOpenFileFromMenuError": "فائل کھولنے سے قاصر ہے", 14 | "emptyInputTextContent": "براہ کرم کچھ متن درج کریں", 15 | "clear": "صاف", 16 | "clearAllTitle": "سب کو صاف کریں", 17 | "clearAllContent": "کیا آپ کو یقین ہے کہ کیا آپ تمام متن کو صاف کرنا چاہتے ہیں؟", 18 | "saveFileDialogTitle": "فائل کا نام درج کریں", 19 | "save": "بچت کریں", 20 | "linkDialogTextTitle": "متن", 21 | "linkDialogLinkTitle": "لنک", 22 | "enterLinkTextDialogTitle": "لنک درج کریں", 23 | "bold": "بولڈ", 24 | "italic": "اٹالک", 25 | "link": "لنک", 26 | "image": "تصویر", 27 | "heading": "سرخی", 28 | "code": "کوڈ", 29 | "bulletList": "گولی کی فہرست", 30 | "quote": "اقتباس", 31 | "horizontalRule": "افقی اصول", 32 | "strikethrough": "ہڑتال", 33 | "@@locale": "ur", 34 | "confirmAppExitTitle": "ایگزٹ کی تصدیق کریں", 35 | "confirmAppExitContent": "کیا آپ واقعی اس ایپ سے باہر نکلنا چاہتے ہیں؟", 36 | "donate": "عطیہ کریں", 37 | "print": "پرنٹ کریں", 38 | "table": "جدول", 39 | "rows": "قطاریں", 40 | "columns": "کالم", 41 | "insert": "داخل کریں" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_mfe.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "mfe", 3 | "ok": "Dakor", 4 | "yes": "Wi", 5 | "cancel": "Kennsel", 6 | "appTitle": "Editer pou Mark-desann", 7 | "previewToolTip": "Previzion", 8 | "switchThemeMenuItem": "Tem Sanzman", 9 | "switchViewMenuItem": "Sanzman", 10 | "openFileMenuItem": "Ouver", 11 | "markdownTextInputLabel": "Met ou text marke isi", 12 | "error": "Erer", 13 | "unableToOpenFileError": "Pa kapav ouver fichier la, essaye ouvert li depi opsion fisie ouver lor meni", 14 | "unableToOpenFileFromMenuError": "Pa kapav ouver fisie-la", 15 | "emptyInputTextContent": "Silvouple, rant dan enn ti text", 16 | "clear": "Kler", 17 | "clearAllTitle": "Kler tou", 18 | "clearAllContent": "Eski to sir to anvi kler tou sa text-la?", 19 | "saveFileDialogTitle": "Met nom fichier la", 20 | "save": "Sove", 21 | "linkDialogTextTitle": "Tex", 22 | "linkDialogLinkTitle": "Lien", 23 | "enterLinkTextDialogTitle": "Rantre lor lien", 24 | "bold": "Odasie", 25 | "italic": "Italik", 26 | "link": "Lien", 27 | "image": "Zimaz", 28 | "heading": "Diriz zot", 29 | "code": "Kod", 30 | "bulletList": "Lalis bal", 31 | "quote": "Sitasion", 32 | "horizontalRule": "Regleman pou orizontal", 33 | "strikethrough": "Fer enn gran difikilte", 34 | "confirmAppExitTitle": "Sorti lor Konfirm", 35 | "confirmAppExitContent": "Eski to sir to anvi sorti dan sa app-la?", 36 | "donate": "Donasion", 37 | "print": "Inprim", 38 | "table": "Latab", 39 | "rows": "Bann ranze", 40 | "columns": "Kolon", 41 | "insert": "Insere" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ps.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "ps", 3 | "ok": "سمه ده", 4 | "yes": "هو", 5 | "cancel": "لغوه کول", 6 | "appTitle": "د مارکډ ایډیټ", 7 | "previewToolTip": "مخلید", 8 | "switchThemeMenuItem": "موضوع بدل کړه", 9 | "switchViewMenuItem": "د بدلولو ځای", 10 | "openFileMenuItem": "خلاص", 11 | "markdownTextInputLabel": "خپل د نښه کولو متن دلته دننه کړئ", 12 | "error": "تېروتنه", 13 | "unableToOpenFileError": "د فایل خلاصولو توان نلري، هڅه وکړئ چې په مینو کې د خلاص فایل اختیار څخه خلاص کړئ", 14 | "unableToOpenFileFromMenuError": "د فایل خلاصولو توان نلري", 15 | "emptyInputTextContent": "مهرباني وکړئ یو څه متن دننه کړئ", 16 | "clear": "روښانه", 17 | "clearAllTitle": "ټول پاک کړه", 18 | "clearAllContent": "ایا تاسو ډاډه یاست ایا تاسو غواړئ ټول متن پاک کړئ؟", 19 | "saveFileDialogTitle": "د فایل نوم دننه کړئ", 20 | "save": "خوندي کړئ", 21 | "linkDialogTextTitle": "متن", 22 | "linkDialogLinkTitle": "لینک", 23 | "enterLinkTextDialogTitle": "لینک دننه کړئ", 24 | "bold": "بولډ", 25 | "italic": "ایټالیک", 26 | "link": "لینک", 27 | "image": "انځور", 28 | "heading": "سرلیک", 29 | "code": "کوډ", 30 | "bulletList": "د ګولۍ لیست", 31 | "quote": "نرخ", 32 | "horizontalRule": "افقي قانون", 33 | "strikethrough": "اعتصاب", 34 | "confirmAppExitTitle": "د وتلو تایید کړئ", 35 | "confirmAppExitContent": "ایا تاسو باوري یاست چې غواړئ دا ایپ وتل غواړې؟", 36 | "donate": "مرسته وکړه", 37 | "print": "چاپ", 38 | "table": "میز", 39 | "rows": "قطارونه", 40 | "columns": "کالمونه", 41 | "insert": "دننه کړئ" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_tpi.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "tpi", 3 | "ok": "Okei", 4 | "yes": "Yes", 5 | "cancel": "kensel", 6 | "appTitle": "Markdaun Edita", 7 | "previewToolTip": "Priviu", 8 | "switchThemeMenuItem": "Switsim As tok", 9 | "switchViewMenuItem": "Switsim lukluk", 10 | "openFileMenuItem": "Open", 11 | "markdownTextInputLabel": "Putim makdaun teks bilong yu long hia", 12 | "error": "Mistek", 13 | "unableToOpenFileError": "No inap long opim fail, traim long opim long open fail opsen long menu", 14 | "unableToOpenFileFromMenuError": "No inap long opim fail", 15 | "emptyInputTextContent": "Plis putim sampela teks", 16 | "clear": "Klia", 17 | "clearAllTitle": "Klia Olgeta", 18 | "clearAllContent": "Yu sua se yu wantem kliarem olgeta teks?", 19 | "saveFileDialogTitle": "Putim nem bilong fail", 20 | "save": "Seiv", 21 | "linkDialogTextTitle": "Teks", 22 | "linkDialogLinkTitle": "Link", 23 | "enterLinkTextDialogTitle": "Go insait long Link", 24 | "bold": "Strong", 25 | "italic": "italik", 26 | "link": "Link", 27 | "image": "Piksa", 28 | "heading": "Hed blong hed", 29 | "code": "Kod", 30 | "bulletList": "Bullet Lis", 31 | "quote": "Kwot", 32 | "horizontalRule": "Rul bilong Horisontal", 33 | "strikethrough": "Strikim tru", 34 | "confirmAppExitTitle": "Konfem Eksit", 35 | "confirmAppExitContent": "Yu sua se yu wantem kamaot long ap ia?", 36 | "donate": "Donetim", 37 | "print": "Prenim", 38 | "table": "Tebol", 39 | "rows": "Ol lain", 40 | "columns": "Ol mun", 41 | "insert": "Putim i go insait" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_fy.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "fy", 3 | "ok": "Ok", 4 | "yes": "Ja", 5 | "cancel": "Opheffe", 6 | "appTitle": "MarkDD-bewurker", 7 | "previewToolTip": "Foarfertoaning", 8 | "switchThemeMenuItem": "THEA WURK", 9 | "switchViewMenuItem": "Útsicht wikselje", 10 | "openFileMenuItem": "Iepen", 11 | "markdownTextInputLabel": "Fier hjir jo markDown-tekst yn", 12 | "error": "Fersin", 13 | "unableToOpenFileError": "Kin it bestân net iepenje, besykje it te iepenjen fan iepen bestânopsje op it menu", 14 | "unableToOpenFileFromMenuError": "Kin it bestân net iepenje", 15 | "emptyInputTextContent": "Fier wat tekst yn", 16 | "clear": "Klear", 17 | "clearAllTitle": "Alles wiskje", 18 | "clearAllContent": "Binne jo wis wolle jo alle tekst wiskje?", 19 | "saveFileDialogTitle": "Fier de namme fan it bestân yn", 20 | "save": "Rêde", 21 | "linkDialogTextTitle": "Tekst", 22 | "linkDialogLinkTitle": "Bân", 23 | "enterLinkTextDialogTitle": "Link ynfiere", 24 | "bold": "Dryst", 25 | "italic": "Fral", 26 | "link": "Bân", 27 | "image": "Byld", 28 | "heading": "Opskrift", 29 | "code": "Koade", 30 | "bulletList": "Belselist", 31 | "quote": "Opjaan", 32 | "horizontalRule": "Horizontale regel", 33 | "strikethrough": "Strikethrough", 34 | "confirmAppExitTitle": "Befêstigje ôfslach", 35 | "confirmAppExitContent": "Binne jo wis dat jo dizze app wolle útgean?", 36 | "donate": "Donearje", 37 | "print": "Ôfdrukke", 38 | "table": "Tafel", 39 | "rows": "Rigen", 40 | "columns": "Kolommen", 41 | "insert": "Ynfoegje" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_gu.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "gu", 3 | "ok": "ઠીક", 4 | "yes": "હા", 5 | "cancel": "રદ કરવું", 6 | "appTitle": "નિશાની સંપાદક", 7 | "previewToolTip": "પૂર્વદર્શન", 8 | "switchThemeMenuItem": "થીમ બદલવી", 9 | "switchViewMenuItem": "સ્વિચ દૃશ્ય", 10 | "openFileMenuItem": "ખુલ્લું", 11 | "markdownTextInputLabel": "તમારું માર્કડાઉન ટેક્સ્ટ અહીં દાખલ કરો", 12 | "error": "ભૂલ", 13 | "unableToOpenFileError": "ફાઇલ ખોલવામાં અસમર્થ, તેને મેનૂ પર ખુલ્લા ફાઇલ વિકલ્પથી ખોલવાનો પ્રયાસ કરો", 14 | "unableToOpenFileFromMenuError": "ફાઇલ ખોલવામાં અસમર્થ", 15 | "emptyInputTextContent": "કૃપા કરીને કેટલાક ટેક્સ્ટ દાખલ કરો", 16 | "clear": "સ્પષ્ટ", 17 | "clearAllTitle": "બધુ સાફ કરવું", 18 | "clearAllContent": "શું તમને ખાતરી છે કે શું તમે બધા ટેક્સ્ટને સાફ કરવા માંગો છો?", 19 | "saveFileDialogTitle": "ફાઇલનું નામ દાખલ કરો", 20 | "save": "બચત કરવી", 21 | "linkDialogTextTitle": "લખાણ", 22 | "linkDialogLinkTitle": "સંબંધ", 23 | "enterLinkTextDialogTitle": "કડી દાખલ કરો", 24 | "bold": "હિંમતવાન", 25 | "italic": "ઇટાલિક", 26 | "link": "સંબંધ", 27 | "image": "છબી", 28 | "heading": "શીર્ષક", 29 | "code": "સંહિતા", 30 | "bulletList": "ગોળી", 31 | "quote": "ભાવ", 32 | "horizontalRule": "આડા નિયમ", 33 | "strikethrough": "હડતાલ", 34 | "confirmAppExitTitle": "બહાર નીકળો", 35 | "confirmAppExitContent": "શું તમે ખરેખર આ એપ્લિકેશનમાંથી બહાર નીકળવા માંગો છો?", 36 | "donate": "દાન કરવું", 37 | "print": "છાપું", 38 | "table": "કોષ્ટક", 39 | "rows": "પંખી", 40 | "columns": "શણગાર", 41 | "insert": "દાખલ કરવું" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_shn.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "shn", 3 | "ok": "လႆႈယူႇ", 4 | "yes": "ၸႂ်ႈ", 5 | "cancel": "ႁူၼ်ၶိုၼ်း", 6 | "appTitle": "မၢၵ်ႉၶ်ႊတၢၼ်ႇ ၽူႈထတ်းလိၵ်ႈ", 7 | "previewToolTip": "လၢမ်းတူၺ်း", 8 | "switchThemeMenuItem": "Switch Theme", 9 | "switchViewMenuItem": "ဝီးဝီး", 10 | "openFileMenuItem": "ၽုၺ်ႇ", 11 | "markdownTextInputLabel": "ၶဝ်ႈလိၵ်ႈမၢႆတွင်း ၸဝ်ႈၵဝ်ႇတီႈၼႆႈ", 12 | "error": "ပဵၼ်လူႉ", 13 | "unableToOpenFileError": "ပိုတ်ႇၾၢႆႇၼၼ်ႉ ၸၢမ်းပိုတ်ႇတီႈ file option ၼႂ်း menu ၼၼ်ႉၶႃႈ", 14 | "unableToOpenFileFromMenuError": "ဢမ်ႇပိုတ်ႇၾၢႆႇ", 15 | "emptyInputTextContent": "ၶဝ်ႈပၼ် text ၵမ်ႈၽွင်ႈ", 16 | "clear": "လၢင်ႉ", 17 | "clearAllTitle": "မူတ်းမူတ်း", 18 | "clearAllContent": "ၸွင်ႇသူၶႂ်ႈၸႅတ်ႈလိၵ်ႈတင်းမူတ်းႁႃႉ?", 19 | "saveFileDialogTitle": "သႂ်ႇၸိုဝ်ႈၾၢႆႇ", 20 | "save": "ၵဵဝ်ႇၶေ", 21 | "linkDialogTextTitle": "လိၵ်ႈပွတ်း", 22 | "linkDialogLinkTitle": "ၵဵဝ်ႇၵွင်ႉ", 23 | "enterLinkTextDialogTitle": "ၶဝ်ႈလႅၵ်ႈလႆၢႈ", 24 | "bold": "ၼႃဝႆႉ", 25 | "italic": "ဢိတ်ႇလိၵ်ႈ", 26 | "link": "ၵဵဝ်ႇၵွင်ႉ", 27 | "image": "ပုင်ႇႁၢင်ႊ", 28 | "heading": "ႁူဝ်ႁူဝ်", 29 | "code": "ပၵ်းပိူင်", 30 | "bulletList": "သဵၼ်ႈမၢႆမၢၵ်ႇၵွင်ႈ", 31 | "quote": "ၶေႃႈဢၢင်ႈဢိင်ႈ", 32 | "horizontalRule": "ပၵ်းပိူင်ထုိင်", 33 | "strikethrough": "Strikethroad", 34 | "confirmAppExitTitle": "မၵ်းမၼ်ႈဢွၵ်ႇ", 35 | "confirmAppExitContent": "ၶႂ်ႈဢွၵ်ႇဢႅပ်ႉၼႆႉယူႇႁႃႉ?", 36 | "donate": "လူႇတၢၼ်း", 37 | "print": "ဢိတ်ႇလိၵ်ႈ", 38 | "table": "ၽိူၼ်", 39 | "rows": "ၶိူဝ်းၵူၼ်း", 40 | "columns": "ထၼ်ႇထိပ်ႇ", 41 | "insert": "မူင်ႈမႅင်း" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_tr.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Tamam", 3 | "yes": "Evet", 4 | "cancel": "İptal etmek", 5 | "appTitle": "Markdown Editor", 6 | "previewToolTip": "Önizleme", 7 | "switchThemeMenuItem": "Anahtar Teması", 8 | "switchViewMenuItem": "Anahtar Görünümü", 9 | "openFileMenuItem": "Açık", 10 | "markdownTextInputLabel": "İşaret Metninizi Buraya Girin", 11 | "error": "Hata", 12 | "unableToOpenFileError": "Dosyayı açılamıyor, menüdeki açık dosya seçeneğinden açmayı deneyin", 13 | "unableToOpenFileFromMenuError": "Dosyayı açılamıyor", 14 | "emptyInputTextContent": "Lütfen biraz metin girin", 15 | "clear": "Temizlemek", 16 | "clearAllTitle": "Hepsini temizlemek", 17 | "clearAllContent": "Tüm metni temizlemek istiyorsunuz?", 18 | "saveFileDialogTitle": "Dosyanın adını girin", 19 | "save": "Kaydetmek", 20 | "linkDialogTextTitle": "Metin", 21 | "linkDialogLinkTitle": "Bağlantı", 22 | "enterLinkTextDialogTitle": "Bağlantı girin", 23 | "bold": "Gözü pek", 24 | "italic": "İtalik", 25 | "link": "Bağlantı", 26 | "image": "İmaj", 27 | "heading": "Başlık", 28 | "code": "Kodlamak", 29 | "bulletList": "Mermi listesi", 30 | "quote": "Alıntı", 31 | "horizontalRule": "Yatay kural", 32 | "strikethrough": "Sert", 33 | "@@locale": "tr", 34 | "confirmAppExitTitle": "Çıkışı Onayla", 35 | "confirmAppExitContent": "Bu uygulamadan çıkmak istediğinizden emin misiniz?", 36 | "donate": "Bağış yapmak", 37 | "print": "Yazdır", 38 | "table": "Masa", 39 | "rows": "Satırlar", 40 | "columns": "Sütunlar", 41 | "insert": "Sokmak" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_af.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ok", 3 | "yes": "Ja", 4 | "cancel": "Kanselleer", 5 | "appTitle": "Markdown Editor", 6 | "previewToolTip": "Voorskou", 7 | "switchThemeMenuItem": "Switch -tema", 8 | "switchViewMenuItem": "Skakelaaraansig", 9 | "openFileMenuItem": "Oopmaak", 10 | "markdownTextInputLabel": "Voer u Markdown -teks hier in", 11 | "error": "Fout", 12 | "unableToOpenFileError": "Kan nie die lêer oopmaak nie, probeer dit oopmaak vanaf Open File -opsie op die menu", 13 | "unableToOpenFileFromMenuError": "Kan nie die lêer oopmaak nie", 14 | "emptyInputTextContent": "Voer asseblief 'n teks in", 15 | "clear": "Helder", 16 | "clearAllTitle": "Duidelik alles", 17 | "clearAllContent": "Is u seker dat u al die teks wil skoonmaak?", 18 | "saveFileDialogTitle": "Voer die naam van die lêer in", 19 | "save": "Red", 20 | "linkDialogTextTitle": "Teks", 21 | "linkDialogLinkTitle": "Skakel", 22 | "enterLinkTextDialogTitle": "Voer skakel in", 23 | "bold": "Dapper", 24 | "italic": "Kursief", 25 | "link": "Skakel", 26 | "image": "Beeld", 27 | "heading": "Opskrif", 28 | "code": "Kode", 29 | "bulletList": "Koeëllys", 30 | "quote": "Kwotasie", 31 | "horizontalRule": "Horisontale reël", 32 | "strikethrough": "Treffend", 33 | "@@locale": "af", 34 | "confirmAppExitTitle": "Bevestig uitgang", 35 | "confirmAppExitContent": "Is u seker dat u hierdie app wil verlaat?", 36 | "donate": "Skenk", 37 | "print": "Afdruk", 38 | "table": "Tafel", 39 | "rows": "Rye", 40 | "columns": "Kolomme", 41 | "insert": "Invoeg" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ckb.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "ckb", 3 | "ok": "باشە", 4 | "yes": "بەڵێ", 5 | "cancel": "ڕەتکردنەوە", 6 | "appTitle": "Markdown Editor", 7 | "previewToolTip": "پێشبینی", 8 | "switchThemeMenuItem": "تەوەری سویچ", 9 | "switchViewMenuItem": "سویچ ڤیو", 10 | "openFileMenuItem": "کردنەوە", 11 | "markdownTextInputLabel": "دەقی Markdown ی خۆت لێرە بنووسە", 12 | "error": "هەڵە", 13 | "unableToOpenFileError": "ناتوانیت فایلەکە بکەیتەوە، هەوڵبدە لە بژاردەی Open File لە مینیوەکەدا بیکەیتەوە", 14 | "unableToOpenFileFromMenuError": "ناتوانێت فایلەکە بکاتەوە", 15 | "emptyInputTextContent": "تکایە هەندێک دەق بنووسە", 16 | "clear": "ڕوون", 17 | "clearAllTitle": "هەمووی پاک بکەرەوە", 18 | "clearAllContent": "ئایا دڵنیای دەتەوێت هەموو دەقەکان پاک بکەیتەوە؟", 19 | "saveFileDialogTitle": "ناوی فایلەکە بنووسە", 20 | "save": "هەڵگرتن", 21 | "linkDialogTextTitle": "دەق", 22 | "linkDialogLinkTitle": "لینک", 23 | "enterLinkTextDialogTitle": "لینکی داخڵ بکە", 24 | "bold": "تۆخ", 25 | "italic": "ئیتاڵیک", 26 | "link": "لینک", 27 | "image": "وێنە", 28 | "heading": "سەردێڕ", 29 | "code": "کۆد", 30 | "bulletList": "لیستی فیشەک", 31 | "quote": "وەرگرتە", 32 | "horizontalRule": "یاسای ئاسۆیی", 33 | "strikethrough": "Strikethrough", 34 | "confirmAppExitTitle": "دەرچوونی دەرچوون پشتڕاست بکەرەوە", 35 | "confirmAppExitContent": "ئایا دڵنیای کە دەتەوێت لەم ئەپە دەربچیت؟", 36 | "donate": "بەخشین", 37 | "print": "چاپ", 38 | "table": "خشتە", 39 | "rows": "ڕیزەکان", 40 | "columns": "ستوونەکان", 41 | "insert": "تێکردن" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_cs.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "cs", 3 | "ok": "Dobře", 4 | "yes": "Ano", 5 | "cancel": "Zrušit", 6 | "appTitle": "Markdown editor", 7 | "previewToolTip": "Náhled", 8 | "switchThemeMenuItem": "Přepínač", 9 | "switchViewMenuItem": "Přepínač", 10 | "openFileMenuItem": "OTEVŘENO", 11 | "markdownTextInputLabel": "Zadejte svůj text Markdown zde", 12 | "error": "Chyba", 13 | "unableToOpenFileError": "Nelze otevřít soubor, zkuste jej otevřít z možnosti otevřeného souboru v nabídce", 14 | "unableToOpenFileFromMenuError": "Nelze otevřít soubor", 15 | "emptyInputTextContent": "Zadejte prosím nějaký text", 16 | "clear": "Jasný", 17 | "clearAllTitle": "Vyčistit vše", 18 | "clearAllContent": "Jste si jisti, že chcete vyčistit celý text?", 19 | "saveFileDialogTitle": "Zadejte název souboru", 20 | "save": "Uložit", 21 | "linkDialogTextTitle": "Text", 22 | "linkDialogLinkTitle": "Odkaz", 23 | "enterLinkTextDialogTitle": "Zadejte odkaz", 24 | "bold": "Odvážné", 25 | "italic": "Kurzíva", 26 | "link": "Odkaz", 27 | "image": "Obraz", 28 | "heading": "Záhlaví", 29 | "code": "Kód", 30 | "bulletList": "Seznam kulky", 31 | "quote": "Citovat", 32 | "horizontalRule": "Horizontální pravidlo", 33 | "strikethrough": "Strikethrough", 34 | "confirmAppExitTitle": "Potvrďte výjezd", 35 | "confirmAppExitContent": "Jste si jisti, že chcete tuto aplikaci opustit?", 36 | "donate": "Darovat", 37 | "print": "Vytisknout", 38 | "table": "Tabulka", 39 | "rows": "Řádky", 40 | "columns": "Sloupce", 41 | "insert": "Vložit" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_mn.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Бас", 3 | "yes": "Мон", 4 | "cancel": "Цуаах", 5 | "appTitle": "Тэмдэглэх редактор", 6 | "previewToolTip": "Киноны урөдчилсан үзлэг", 7 | "switchThemeMenuItem": "ЗОРИУЛСАН", 8 | "switchViewMenuItem": "Гүйлгэх", 9 | "openFileMenuItem": "Нээлттэй", 10 | "markdownTextInputLabel": "Тэмдэгт текстээ энд оруулна уу", 11 | "error": "Алдаа", 12 | "unableToOpenFileError": "Файлыг нээх боломжгүй бол цэс дээрх нээлттэй файлын сонголтоос нээхийг хичээ", 13 | "unableToOpenFileFromMenuError": "Файлыг нээх боломжгүй байна", 14 | "emptyInputTextContent": "Зарим текстийг оруулна уу", 15 | "clear": "Саруул", 16 | "clearAllTitle": "Бүгдийг цэвэрлэ", 17 | "clearAllContent": "Та бүх текстийг цэвэрлэхийг хүсч байна уу?", 18 | "saveFileDialogTitle": "Файлын нэрийг оруулна уу", 19 | "save": "Аврах", 20 | "linkDialogTextTitle": "Сэдэв", 21 | "linkDialogLinkTitle": "Эгнээ", 22 | "enterLinkTextDialogTitle": "Оруулах", 23 | "bold": "Зоригтой", 24 | "italic": "Зун", 25 | "link": "Эгнээ", 26 | "image": "Дүр", 27 | "heading": "Гарчиг", 28 | "code": "Хуулө цааз", 29 | "bulletList": "Баруу Жууп жагсаалт", 30 | "quote": "Иш татах", 31 | "horizontalRule": "Хэвтээ дүрэм", 32 | "strikethrough": "Strikethrugh", 33 | "@@locale": "mn", 34 | "confirmAppExitTitle": "Гарах илгээх илгээх", 35 | "confirmAppExitContent": "Та энэ апп-оос гарахыг хүсч байна уу?", 36 | "donate": "Бэлэглэх", 37 | "print": "Үсэг", 38 | "table": "Ширээ", 39 | "rows": "Мөр", 40 | "columns": "Багана", 41 | "insert": "Оруулах" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ms.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ok", 3 | "yes": "Ya", 4 | "cancel": "Batalkan", 5 | "appTitle": "Editor Markdown", 6 | "previewToolTip": "Pratonton", 7 | "switchThemeMenuItem": "Tukar tema", 8 | "switchViewMenuItem": "Pandangan Tukar", 9 | "openFileMenuItem": "Buka", 10 | "markdownTextInputLabel": "Masukkan teks Markdown anda di sini", 11 | "error": "Ralat", 12 | "unableToOpenFileError": "Tidak dapat membuka fail, cuba buka dari pilihan Fail Terbuka pada menu", 13 | "unableToOpenFileFromMenuError": "Tidak dapat membuka fail", 14 | "emptyInputTextContent": "Sila masukkan beberapa teks", 15 | "clear": "Jelas", 16 | "clearAllTitle": "Kosongkan semua", 17 | "clearAllContent": "Adakah anda pasti ingin membersihkan semua teks?", 18 | "saveFileDialogTitle": "Masukkan nama fail", 19 | "save": "Simpan", 20 | "linkDialogTextTitle": "Teks", 21 | "linkDialogLinkTitle": "Pautan", 22 | "enterLinkTextDialogTitle": "Masukkan pautan", 23 | "bold": "Berani", 24 | "italic": "Italic", 25 | "link": "Pautan", 26 | "image": "Imej", 27 | "heading": "Tajuk", 28 | "code": "Kod", 29 | "bulletList": "Senarai peluru", 30 | "quote": "Petikan", 31 | "horizontalRule": "Peraturan mendatar", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "ms", 34 | "confirmAppExitTitle": "Sahkan keluar", 35 | "confirmAppExitContent": "Adakah anda pasti mahu keluar dari aplikasi ini?", 36 | "donate": "Menderma", 37 | "print": "Cetak", 38 | "table": "Jadual", 39 | "rows": "Baris", 40 | "columns": "Lajur", 41 | "insert": "Masukkan" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_new.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "new", 3 | "ok": "ज्यू", 4 | "yes": "ख", 5 | "cancel": "रोक्का", 6 | "appTitle": "मार्कडाउन सम्पादक", 7 | "previewToolTip": "पूर्वावलोकन", 8 | "switchThemeMenuItem": "विषयवस्तु", 9 | "switchViewMenuItem": "दर्शन", 10 | "openFileMenuItem": "खुल्ला", 11 | "markdownTextInputLabel": "छिगु मार्कडाउन टेक्स्टयात थन दुथ्याकि ।", 12 | "error": "त्रुटि", 13 | "unableToOpenFileError": "फाइल चायेके मफु, मेनुइ च्वंगु खुल्ला फाइल विकल्पं थुकियात चायेकेत स्व ।", 14 | "unableToOpenFileFromMenuError": "फाइल चायेके मफुत ।", 15 | "emptyInputTextContent": "छुं पाठ दुथ्यानादिसँ ।", 16 | "clear": "यचु", 17 | "clearAllTitle": "थुकियात झीसं थुइकेमाः ।", 18 | "clearAllContent": "छिं पक्का यानादिया ला कि छिं फुक्क टेक्स्ट क्लियर याये मास्ति वः ला ?", 19 | "saveFileDialogTitle": "फाइलया नां दुथ्याकि ।", 20 | "save": "लेंके", 21 | "linkDialogTextTitle": "पाठ", 22 | "linkDialogLinkTitle": "लिङ्क", 23 | "enterLinkTextDialogTitle": "लिंक दुथ्याकि ।", 24 | "bold": "आँतय्‍य", 25 | "italic": "इटाली", 26 | "link": "लिङ्क", 27 | "image": "छवि", 28 | "heading": "न्ह्यने", 29 | "code": "कोड", 30 | "bulletList": "बुले लिस्ट", 31 | "quote": "उद्धरण", 32 | "horizontalRule": "होरिजोंटल नियम ४.", 33 | "strikethrough": "तच्व", 34 | "confirmAppExitTitle": "उद्गार उद्घोष", 35 | "confirmAppExitContent": "छिं थुगु एपं पिहां वने मास्ति वःगु पक्का खः ला ?", 36 | "donate": "दान य", 37 | "print": "प्रिंट", 38 | "table": "टेबिल", 39 | "rows": "रोस", 40 | "columns": "कोलम", 41 | "insert": "दुत छ्वेउ" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_no.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ok", 3 | "yes": "Ja", 4 | "cancel": "Kansellere", 5 | "appTitle": "Markdown Editor", 6 | "previewToolTip": "Forhåndsvisning", 7 | "switchThemeMenuItem": "Bytt tema", 8 | "switchViewMenuItem": "Bytt visning", 9 | "openFileMenuItem": "Åpne", 10 | "markdownTextInputLabel": "Skriv inn din Markdown -tekst her", 11 | "error": "Feil", 12 | "unableToOpenFileError": "Kan ikke åpne filen, prøv å åpne den fra alternativet med åpen fil på menyen", 13 | "unableToOpenFileFromMenuError": "Kan ikke åpne filen", 14 | "emptyInputTextContent": "Vennligst skriv inn litt tekst", 15 | "clear": "Klar", 16 | "clearAllTitle": "Fjern alle", 17 | "clearAllContent": "Er du sikker på at du vil tømme all teksten?", 18 | "saveFileDialogTitle": "Skriv inn navnet på filen", 19 | "save": "Spare", 20 | "linkDialogTextTitle": "Tekst", 21 | "linkDialogLinkTitle": "Lenke", 22 | "enterLinkTextDialogTitle": "Skriv inn lenken", 23 | "bold": "Fet", 24 | "italic": "Kursiv", 25 | "link": "Lenke", 26 | "image": "Bilde", 27 | "heading": "Overskrift", 28 | "code": "Kode", 29 | "bulletList": "Bullet List", 30 | "quote": "Sitere", 31 | "horizontalRule": "Horisontal regel", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "no", 34 | "confirmAppExitTitle": "Bekreft avkjørsel", 35 | "confirmAppExitContent": "Er du sikker på at du vil avslutte denne appen?", 36 | "donate": "Donere", 37 | "print": "Trykk", 38 | "table": "Bord", 39 | "rows": "Rader", 40 | "columns": "Kolonner", 41 | "insert": "Sett inn" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_su.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "OKÉ", 3 | "yes": "Nuhun", 4 | "cancel": "Ngabatalkeun", 5 | "appTitle": "Éditor Sprordown", 6 | "previewToolTip": "Nilik", 7 | "switchThemeMenuItem": "Switch thee", 8 | "switchViewMenuItem": "Pelanggan", 9 | "openFileMenuItem": "Muka", 10 | "markdownTextInputLabel": "Lebetkeun téks Spirdown anjeun di dieu", 11 | "error": "Kasalahan", 12 | "unableToOpenFileError": "Teu tiasa muka file, cobi muka tina pilihan file kabuka dina ménu", 13 | "unableToOpenFileFromMenuError": "Teu tiasa muka file", 14 | "emptyInputTextContent": "Punten lebetkeun sababaraha téks", 15 | "clear": "Jelas", 16 | "clearAllTitle": "Jelas", 17 | "clearAllContent": "Naha anjeun yakin anjeun hoyong ngabersihan sadaya téks?", 18 | "saveFileDialogTitle": "Lebetkeun nami file", 19 | "save": "Ngahémat", 20 | "linkDialogTextTitle": "Téks", 21 | "linkDialogLinkTitle": "Kakait", 22 | "enterLinkTextDialogTitle": "Lebetkeun tautan", 23 | "bold": "Wani", 24 | "italic": "Interiat", 25 | "link": "Kakait", 26 | "image": "Gambar", 27 | "heading": "Judul", 28 | "code": "Kode", 29 | "bulletList": "Daptar pelor", 30 | "quote": "Cutatan", 31 | "horizontalRule": "Aturan horisontal", 32 | "strikethrough": "Strikethugh", 33 | "@@locale": "su", 34 | "confirmAppExitTitle": "Konpirmasi kaluar", 35 | "confirmAppExitContent": "Naha anjeun badé kaluar aplikasi ieu?", 36 | "donate": "Nulungan", 37 | "print": "Nyitak", 38 | "table": "Tabél", 39 | "rows": "Jurung", 40 | "columns": "Kolom", 41 | "insert": "Nyelapkeun" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_doi.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "doi", 3 | "ok": "ठीक ऐ", 4 | "yes": "हां", 5 | "cancel": "रद्द", 6 | "appTitle": "मार्कडाउन संपादक ऐ", 7 | "previewToolTip": "पूर्वावलोकन ऐ", 8 | "switchThemeMenuItem": "स्विच थीम", 9 | "switchViewMenuItem": "स्विच व्यू", 10 | "openFileMenuItem": "खु'ल्ला", 11 | "markdownTextInputLabel": "अपना मार्कडाउन पाठ इत्थें दर्ज करो", 12 | "error": "गलती", 13 | "unableToOpenFileError": "फाइल गी खोलने च असमर्थ, मेनू पर ओपन फाइल विकल्प थमां खोलने दी कोशश करो", 14 | "unableToOpenFileFromMenuError": "फाइल गी खोलने च असमर्थ", 15 | "emptyInputTextContent": "कृपा करियै कुसै पाठ गी दर्ज करो", 16 | "clear": "साफ", 17 | "clearAllTitle": "सारे साफ़ करो", 18 | "clearAllContent": "क्या तुस यकीन करदे ओ के तुस सारे पाठ गी साफ करना चांदे ओ?", 19 | "saveFileDialogTitle": "फाइल दा नांऽ दर्ज करो", 20 | "save": "बचाओ", 21 | "linkDialogTextTitle": "पाठ", 22 | "linkDialogLinkTitle": "तार", 23 | "enterLinkTextDialogTitle": "लिंक दर्ज करो", 24 | "bold": "न-झक्क", 25 | "italic": "इटालिक ऐ", 26 | "link": "तार", 27 | "image": "बिंब", 28 | "heading": "हेडिंग", 29 | "code": "कोड ऐ", 30 | "bulletList": "बुलेट लिस्ट ऐ", 31 | "quote": "हवाला", 32 | "horizontalRule": "क्षैतिज नियम", 33 | "strikethrough": "हड़ताल थ्रू", 34 | "confirmAppExitTitle": "निकास दी पुष्टि करो", 35 | "confirmAppExitContent": "क्या तुस इस ऐप थमां बाहर निकलना चांह् दे ओ?", 36 | "donate": "दान देना", 37 | "print": "प्रिंट करो", 38 | "table": "टेबल", 39 | "rows": "कतारें", 40 | "columns": "स्तंभ ऐ", 41 | "insert": "दाखल करना" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_tet.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "tet", 3 | "ok": "Di'ak", 4 | "yes": "Sin", 5 | "cancel": "Kansela", 6 | "appTitle": "Editór Markadu", 7 | "previewToolTip": "Previzaun", 8 | "switchThemeMenuItem": "Tema", 9 | "switchViewMenuItem": "Vizaun troka", 10 | "openFileMenuItem": "Loke", 11 | "markdownTextInputLabel": "Hatama ita-nia testu markdown iha ne’e .", 12 | "error": "Erru", 13 | "unableToOpenFileError": "Labele loke file, koko loke husi opsaun file nakloke iha menu .", 14 | "unableToOpenFileFromMenuError": "Labele loke file .", 15 | "emptyInputTextContent": "Favor hatama testu ruma", 16 | "clear": "Klaru", 17 | "clearAllTitle": "Klaru hotu", 18 | "clearAllContent": "Ita-boot iha serteza katak ita-boot hakarak hamoos testu hotu?", 19 | "saveFileDialogTitle": "Hatama naran husi file .", 20 | "save": "Salva", 21 | "linkDialogTextTitle": "Testu", 22 | "linkDialogLinkTitle": "Ligasaun", 23 | "enterLinkTextDialogTitle": "Tama iha Ligasaun", 24 | "bold": "Brani", 25 | "italic": "Itáliku", 26 | "link": "Ligasaun", 27 | "image": "Imajen", 28 | "heading": "Rubrika", 29 | "code": "Kódigu", 30 | "bulletList": "Lista Bala", 31 | "quote": "Sitasaun", 32 | "horizontalRule": "Regra Orizontal", 33 | "strikethrough": "Strikethrough", 34 | "confirmAppExitTitle": "Konfirma Saída", 35 | "confirmAppExitContent": "Ita iha serteza katak ita hakarak sai husi app ne’e?", 36 | "donate": "Doasaun", 37 | "print": "Imprime", 38 | "table": "Meza", 39 | "rows": "Fila", 40 | "columns": "Koluna", 41 | "insert": "Hatama" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_bci.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "bci", 3 | "ok": "Etipka", 4 | "yes": "ɛɛ", 5 | "cancel": "yilɛ", 6 | "appTitle": "Mardi klɛfuɛ", 7 | "previewToolTip": "wun tekle wɔ", 8 | "switchThemeMenuItem": "Kaci", 9 | "switchViewMenuItem": "An jranjran View", 10 | "openFileMenuItem": "Tike", 11 | "markdownTextInputLabel": "Klɛ ɔ markdown ndɛ’n i wa", 12 | "error": "Fɔnlɛ", 13 | "unableToOpenFileError": "Sɛ amun kwlá tikeman file’n, amun kwla tike i file ng’ɔ ti tikewa’n su mɛn’n nun.", 14 | "unableToOpenFileFromMenuError": "Ɔ kwlá tikeman file’n .", 15 | "emptyInputTextContent": "Sɛ a klɛ ndɛ wie mun .", 16 | "clear": "Wun'kpa", 17 | "clearAllTitle": "Yo'man All", 18 | "clearAllContent": "?Amun lafi su kɛ amún yíyí ndɛ’m be kwlaa be nun?", 19 | "saveFileDialogTitle": "Klɛ file’n i dunman’n .", 20 | "save": "Yo iye", 21 | "linkDialogTextTitle": "Klɛwa", 22 | "linkDialogLinkTitle": "Be afien like", 23 | "enterLinkTextDialogTitle": "Enter Link", 24 | "bold": "Be wu i kpa", 25 | "italic": "n'ga ti n'dɛ", 26 | "link": "Be afien like", 27 | "image": "Foto", 28 | "heading": "kɔmi", 29 | "code": "mmla", 30 | "bulletList": "Liste bullet", 31 | "quote": "Inuan", 32 | "horizontalRule": "Mmla nga be kan sran’m be ndɛ’n", 33 | "strikethrough": "Akplowa", 34 | "confirmAppExitTitle": "Exit exit d’anfirm", 35 | "confirmAppExitContent": "?Amun lafi su kɛ amún fíte appli sɔ’n nun?", 36 | "donate": "Man", 37 | "print": "yili", 38 | "table": "Tabli", 39 | "rows": "Rows", 40 | "columns": "tran'ni", 41 | "insert": "Fa wlu" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_cnh.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "cnh", 3 | "ok": "Ok", 4 | "yes": "A si", 5 | "cancel": "Letthan", 6 | "appTitle": "Markdown editor", 7 | "previewToolTip": "A hlankan", 8 | "switchThemeMenuItem": "Switch Theme", 9 | "switchViewMenuItem": "Switch View", 10 | "openFileMenuItem": "On", 11 | "markdownTextInputLabel": "Na markdown cafang kha hika ah khumh", 12 | "error": "Palhnak", 13 | "unableToOpenFileError": "File kha on khawh loin, menu ah file option in on khawh i zuam .", 14 | "unableToOpenFileFromMenuError": "File cu on khawh lo .", 15 | "emptyInputTextContent": "Zaangfahnak tein cafang cheukhat kha khumh", 16 | "clear": "A fiangmi", 17 | "clearAllTitle": "A dihlak in", 18 | "clearAllContent": "Cafang vialte kha clear tuah na duh maw ti kha na zumh maw?", 19 | "saveFileDialogTitle": "File min kha khumh", 20 | "save": "Khamh", 21 | "linkDialogTextTitle": "Catial", 22 | "linkDialogLinkTitle": "Pehtlaih ter", 23 | "enterLinkTextDialogTitle": "Link", 24 | "bold": "Raltha", 25 | "italic": "A chung", 26 | "link": "Pehtlaih ter", 27 | "image": "Hmanthlak", 28 | "heading": "Hmailei", 29 | "code": "Code", 30 | "bulletList": "Bullet cazin", 31 | "quote": "Bia rovui", 32 | "horizontalRule": "Horizontal Rule", 33 | "strikethrough": "Hrut", 34 | "confirmAppExitTitle": "Confirm Exit", 35 | "confirmAppExitContent": "Hi app hi chuah na duh hrimhrim maw?", 36 | "donate": "Hlut", 37 | "print": "print", 38 | "table": "Cabuai", 39 | "rows": "Rows", 40 | "columns": "Column", 41 | "insert": "A chung ah telh" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_hi.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "ठीक है", 3 | "yes": "हाँ", 4 | "cancel": "रद्द करना", 5 | "appTitle": "मार्कडाउन संपादक", 6 | "previewToolTip": "पूर्व दर्शन", 7 | "switchThemeMenuItem": "स्विच थीम", 8 | "switchViewMenuItem": "स्विच व्यू", 9 | "openFileMenuItem": "खुला", 10 | "markdownTextInputLabel": "यहां अपना मार्कडाउन टेक्स्ट दर्ज करें", 11 | "error": "गलती", 12 | "unableToOpenFileError": "फ़ाइल खोलने में असमर्थ, इसे मेनू पर ओपन फाइल विकल्प से खोलने का प्रयास करें", 13 | "unableToOpenFileFromMenuError": "फ़ाइल खोलने में असमर्थ", 14 | "emptyInputTextContent": "कृपया कुछ पाठ दर्ज करें", 15 | "clear": "स्पष्ट", 16 | "clearAllTitle": "सभी साफ करें", 17 | "clearAllContent": "क्या आप सुनिश्चित हैं कि क्या आप सभी पाठ को साफ करना चाहते हैं?", 18 | "saveFileDialogTitle": "फ़ाइल का नाम दर्ज करें", 19 | "save": "बचाना", 20 | "linkDialogTextTitle": "मूलपाठ", 21 | "linkDialogLinkTitle": "जोड़ना", 22 | "enterLinkTextDialogTitle": "लिंक दर्ज करें", 23 | "bold": "बोल्ड", 24 | "italic": "तिरछा", 25 | "link": "जोड़ना", 26 | "image": "छवि", 27 | "heading": "शीर्षक", 28 | "code": "कोड", 29 | "bulletList": "बुलेट सूची", 30 | "quote": "उद्धरण", 31 | "horizontalRule": "क्षैतिज नियम", 32 | "strikethrough": "स्ट्राइकथ्रू", 33 | "@@locale": "hi", 34 | "confirmAppExitTitle": "बाहर निकलने की पुष्टि करें", 35 | "confirmAppExitContent": "क्या आप वाकई इस ऐप से बाहर निकलना चाहते हैं?", 36 | "donate": "दान करें", 37 | "print": "छाप", 38 | "table": "मेज़", 39 | "rows": "पंक्तियों", 40 | "columns": "कॉलम", 41 | "insert": "डालना" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ky.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "ky", 3 | "ok": "Макул", 4 | "yes": "Ооба", 5 | "cancel": "Жокко чыгаруу", 6 | "appTitle": "Markdown Editor", 7 | "previewToolTip": "Алдын ала көрүү", 8 | "switchThemeMenuItem": "Теманы которуу", 9 | "switchViewMenuItem": "View", 10 | "openFileMenuItem": "Ачык", 11 | "markdownTextInputLabel": "Бул жердеги Markdown текстин киргизиңиз", 12 | "error": "Ката", 13 | "unableToOpenFileError": "Файлды ача албай, менюдагы ачык файл опциясынан аны ачып көрүңүз", 14 | "unableToOpenFileFromMenuError": "Файлды ача албай жатат", 15 | "emptyInputTextContent": "Сураныч, бир аз текст киргизиңиз", 16 | "clear": "Тазалоо", 17 | "clearAllTitle": "Баарын тазалоо", 18 | "clearAllContent": "Сиз бардык текстти тазалагыңыз келеби?", 19 | "saveFileDialogTitle": "Файлдын атын киргизиңиз", 20 | "save": "Сактоо", 21 | "linkDialogTextTitle": "Текст", 22 | "linkDialogLinkTitle": "Шилтеме", 23 | "enterLinkTextDialogTitle": "Шилтеме киргизиңиз", 24 | "bold": "Кайнат", 25 | "italic": "Курсив", 26 | "link": "Шилтеме", 27 | "image": "Сүрөт", 28 | "heading": "Аталыш", 29 | "code": "Код", 30 | "bulletList": "Ок тизмеси", 31 | "quote": "Цитата", 32 | "horizontalRule": "Горизонталдуу эреже", 33 | "strikethrough": "Strikhhough", 34 | "confirmAppExitTitle": "Чыгуу ыраста", 35 | "confirmAppExitContent": "Бул колдонмону чыгууну каалайсызбы?", 36 | "donate": "Кайрымдуулук", 37 | "print": "Басып чыгаруу", 38 | "table": "Стол", 39 | "rows": "Катарлар", 40 | "columns": "Тилкелери", 41 | "insert": "Кыстаруу" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_pl.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "pl", 3 | "ok": "OK", 4 | "yes": "Tak", 5 | "cancel": "Anulować", 6 | "appTitle": "Edytor Markdown", 7 | "previewToolTip": "Zapowiedź", 8 | "switchThemeMenuItem": "Przełącz motyw", 9 | "switchViewMenuItem": "Widok przełącznika", 10 | "openFileMenuItem": "Otwarte", 11 | "markdownTextInputLabel": "Wprowadź swój tekst Markdown tutaj", 12 | "error": "Błąd", 13 | "unableToOpenFileError": "Nie można otworzyć pliku, spróbuj otworzyć go z opcji Otwórz plik w menu", 14 | "unableToOpenFileFromMenuError": "Nie można otworzyć pliku", 15 | "emptyInputTextContent": "Wprowadź tekst", 16 | "clear": "Jasne", 17 | "clearAllTitle": "Wyczyść wszystko", 18 | "clearAllContent": "Czy na pewno chcesz wyczyścić cały tekst?", 19 | "saveFileDialogTitle": "Wprowadź nazwę pliku", 20 | "save": "Ratować", 21 | "linkDialogTextTitle": "Tekst", 22 | "linkDialogLinkTitle": "Połączyć", 23 | "enterLinkTextDialogTitle": "Wprowadź link", 24 | "bold": "Pogrubiony", 25 | "italic": "italski", 26 | "link": "Połączyć", 27 | "image": "Obraz", 28 | "heading": "Nagłówek", 29 | "code": "Kod", 30 | "bulletList": "Lista pocisków", 31 | "quote": "Cytat", 32 | "horizontalRule": "Reguła pozioma", 33 | "strikethrough": "Strikethrough", 34 | "confirmAppExitTitle": "Potwierdź wyjście", 35 | "confirmAppExitContent": "Czy na pewno chcesz zamknąć tę aplikację?", 36 | "donate": "Podarować", 37 | "print": "Wydrukować", 38 | "table": "Tabela", 39 | "rows": "Wydziwianie", 40 | "columns": "Kolumny", 41 | "insert": "Wstawić" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_bn.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "ঠিক আছে", 3 | "yes": "হ্যাঁ", 4 | "cancel": "বাতিল", 5 | "appTitle": "মার্কডাউন সম্পাদক", 6 | "previewToolTip": "পূর্বরূপ", 7 | "switchThemeMenuItem": "থিম স্যুইচ করুন", 8 | "switchViewMenuItem": "স্যুইচ ভিউ", 9 | "openFileMenuItem": "খোলা", 10 | "markdownTextInputLabel": "আপনার মার্কডাউন পাঠ্য এখানে প্রবেশ করুন", 11 | "error": "ত্রুটি", 12 | "unableToOpenFileError": "ফাইলটি খুলতে অক্ষম, মেনুতে ওপেন ফাইল বিকল্প থেকে এটি খোলার চেষ্টা করুন", 13 | "unableToOpenFileFromMenuError": "ফাইলটি খুলতে অক্ষম", 14 | "emptyInputTextContent": "কিছু পাঠ্য লিখুন দয়া করে", 15 | "clear": "পরিষ্কার", 16 | "clearAllTitle": "সব পরিষ্কার", 17 | "clearAllContent": "আপনি কি নিশ্চিত যে আপনি সমস্ত পাঠ্য সাফ করতে চান?", 18 | "saveFileDialogTitle": "ফাইলের নাম লিখুন", 19 | "save": "সংরক্ষণ করুন", 20 | "linkDialogTextTitle": "পাঠ্য", 21 | "linkDialogLinkTitle": "লিঙ্ক", 22 | "enterLinkTextDialogTitle": "লিঙ্ক লিখুন", 23 | "bold": "সাহসী", 24 | "italic": "ইটালিক", 25 | "link": "লিঙ্ক", 26 | "image": "চিত্র", 27 | "heading": "শিরোনাম", 28 | "code": "কোড", 29 | "bulletList": "বুলেট তালিকা", 30 | "quote": "উদ্ধৃতি", 31 | "horizontalRule": "অনুভূমিক নিয়ম", 32 | "strikethrough": "স্ট্রাইকথ্রু", 33 | "@@locale": "bn", 34 | "confirmAppExitTitle": "প্রস্থান নিশ্চিত করুন", 35 | "confirmAppExitContent": "আপনি কি নিশ্চিত যে আপনি এই অ্যাপ্লিকেশনটি প্রস্থান করতে চান?", 36 | "donate": "দান করুন", 37 | "print": "মুদ্রণ", 38 | "table": "টেবিল", 39 | "rows": "সারি", 40 | "columns": "কলাম", 41 | "insert": ".োকান" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_cgg.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "cgg", 3 | "ok": "Kare", 4 | "yes": "Yego", 5 | "cancel": "okushazamu", 6 | "appTitle": "Omuhwezi wa Markdown", 7 | "previewToolTip": "Reeba", 8 | "switchThemeMenuItem": "Swimu", 9 | "switchViewMenuItem": "Switch View", 10 | "openFileMenuItem": "Kugambiriraho", 11 | "markdownTextInputLabel": "Tamu ekihandiiko kyawe ky'okumanyisa aha", 12 | "error": "Enshobi", 13 | "unableToOpenFileError": "Otabaasa kwiguraho fairo, gyezaho kukiigura kuruga omu fayiro .", 14 | "unableToOpenFileFromMenuError": "Okubaasa kwiguraho fairo", 15 | "emptyInputTextContent": "Nyabura we taate", 16 | "clear": "Nikwe", 17 | "clearAllTitle": "Shoma Boona", 18 | "clearAllContent": "Noohamya ngu nooyenda kushoboorora ebihandiiko byona?", 19 | "saveFileDialogTitle": "Tamu eiziina rya fairo", 20 | "save": "Kubika", 21 | "linkDialogTextTitle": "Ekihandiiko", 22 | "linkDialogLinkTitle": "Orutindo", 23 | "enterLinkTextDialogTitle": "Tamu Link", 24 | "bold": "Kuba na namazima", 25 | "italic": "ekintu", 26 | "link": "Orutindo", 27 | "image": "Ekishushani", 28 | "heading": "omutwe", 29 | "code": "Code", 30 | "bulletList": "Orukarara rwa Bullet", 31 | "quote": "Okugambwa", 32 | "horizontalRule": "Embaraasi", 33 | "strikethrough": "Okuha", 34 | "confirmAppExitTitle": "Okuruga", 35 | "confirmAppExitContent": "Noohamya ngu nooyenda kuruga omu app egi?", 36 | "donate": "Okugabira", 37 | "print": "Enyimaho", 38 | "table": "Emeza", 39 | "rows": "Enkuru", 40 | "columns": "Ebiragiro", 41 | "insert": "Okutasyamu" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_dyu.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "dyu", 3 | "ok": "N'sona", 4 | "yes": "Ɔnhɔn", 5 | "cancel": "weleku", 6 | "appTitle": "Markdown sɛbɛbaga", 7 | "previewToolTip": "labɛn", 8 | "switchThemeMenuItem": "Switch barokun", 9 | "switchViewMenuItem": "Switch View", 10 | "openFileMenuItem": "Yɛlɛ", 11 | "markdownTextInputLabel": "I ka tagamasiɲɛ sɛbɛ yan .", 12 | "error": "Fili", 13 | "unableToOpenFileError": "Komi i ma se ka file dayɛlɛ, a ɲini k’a dayɛlɛ ka bɔ file dayɛlɛnin dɔ la menu kan .", 14 | "unableToOpenFileFromMenuError": "A ma se ka file dayɛlɛ .", 15 | "emptyInputTextContent": "Aw ka sɛbɛnin dɔw sɛbɛ", 16 | "clear": "Pelepele", 17 | "clearAllTitle": "A bɛɛ lajɛ", 18 | "clearAllContent": "Yala i lanin b’a la ko i b’a fɛ ka sɛbɛnin bɛɛ bɔ yen wa?", 19 | "saveFileDialogTitle": "Dosiye tɔgɔ sɛbɛ .", 20 | "save": "Kisi", 21 | "linkDialogTextTitle": "Masalabolo", 22 | "linkDialogLinkTitle": "Ka tugu", 23 | "enterLinkTextDialogTitle": "Linkan", 24 | "bold": "Fari", 25 | "italic": "Italikan", 26 | "link": "Ka tugu", 27 | "image": "Ja", 28 | "heading": "Kuntigiya", 29 | "code": "Kogo", 30 | "bulletList": "Bulɔti lisi", 31 | "quote": "Kofɔta", 32 | "horizontalRule": "Horizontal sariya .", 33 | "strikethrough": "barikaman", 34 | "confirmAppExitTitle": "I ka bɔ kɛnɛ kan", 35 | "confirmAppExitContent": "Yala i lanin b’a la ko i b’a fɛ ka bɔ o porogramu kɔnɔ wa?", 36 | "donate": "Di", 37 | "print": "sɛbɛn", 38 | "table": "Tabaki", 39 | "rows": "Rows", 40 | "columns": "lagosininw", 41 | "insert": "Ka don" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ha.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ko", 3 | "yes": "I", 4 | "cancel": "Warware", 5 | "appTitle": "Marked Edita", 6 | "previewToolTip": "Duba na farko", 7 | "switchThemeMenuItem": "Canza jigo", 8 | "switchViewMenuItem": "Duba Duba", 9 | "openFileMenuItem": "Buɗe", 10 | "markdownTextInputLabel": "Shigar da rubutun alamar sirrin a nan", 11 | "error": "Kuskure", 12 | "unableToOpenFileError": "An kasa buɗe fayil ɗin, gwada buɗe ta daga zaɓin fayil ɗin buɗe a menu", 13 | "unableToOpenFileFromMenuError": "An kasa buɗe fayil ɗin", 14 | "emptyInputTextContent": "Da fatan za a shigar da wasu rubutu", 15 | "clear": "Share", 16 | "clearAllTitle": "Share duka", 17 | "clearAllContent": "Shin kun tabbata kuna son share duk rubutun?", 18 | "saveFileDialogTitle": "Shigar da sunan fayil ɗin", 19 | "save": "Ceta", 20 | "linkDialogTextTitle": "Matani", 21 | "linkDialogLinkTitle": "Haɗewa", 22 | "enterLinkTextDialogTitle": "Shigar da hanyar haɗi", 23 | "bold": "M", 24 | "italic": "Italic", 25 | "link": "Haɗewa", 26 | "image": "Kamanni", 27 | "heading": "Kan littafi", 28 | "code": "Tsari", 29 | "bulletList": "Jerin harsashi", 30 | "quote": "Sa farashi", 31 | "horizontalRule": "Attaonal Dokar", 32 | "strikethrough": "Faɗakarwa", 33 | "@@locale": "ha", 34 | "confirmAppExitTitle": "Tabbatar da fita", 35 | "confirmAppExitContent": "Shin kun tabbata kuna son fita wannan app?", 36 | "donate": "Ba da kyauta", 37 | "print": "Buga", 38 | "table": "Tebur", 39 | "rows": "Layuka", 40 | "columns": "Ginshiƙai", 41 | "insert": "Shiga da" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ig.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ọ dị mma", 3 | "yes": "Okwukwe", 4 | "cancel": "Ikansulu", 5 | "appTitle": "Ndezi nke Markdown", 6 | "previewToolTip": "Previu", 7 | "switchThemeMenuItem": "Gbanwee isiokwu", 8 | "switchViewMenuItem": "Gbanwee echiche", 9 | "openFileMenuItem": "Meghe", 10 | "markdownTextInputLabel": "Tinye ederede akara gị ebe a", 11 | "error": "Mmejo", 12 | "unableToOpenFileError": "Enweghi ike imeghe faịlụ a, nwaa imeghe ya site na nhọrọ faịlụ mepere emepe na menu", 13 | "unableToOpenFileFromMenuError": "Enweghi ike imeghe faịlụ", 14 | "emptyInputTextContent": "Biko tinye ederede", 15 | "clear": "Agwa idiocha", 16 | "clearAllTitle": "Kpochapụ niile", 17 | "clearAllContent": "Ì ji n'aka na ị chọrọ ikpochapụ ederede niile?", 18 | "saveFileDialogTitle": "Tinye aha faịlụ ahụ", 19 | "save": "Zoputa", 20 | "linkDialogTextTitle": "Nsiride", 21 | "linkDialogLinkTitle": "Omuma mmadu", 22 | "enterLinkTextDialogTitle": "Tinye njikọ", 23 | "bold": "Kenwaramanya", 24 | "italic": "Istic", 25 | "link": "Omuma mmadu", 26 | "image": "Oyiyi", 27 | "heading": "N'isi", 28 | "code": "Akara otu", 29 | "bulletList": "Ndepụta Bulle", 30 | "quote": "Kwotu", 31 | "horizontalRule": "Uche kwụ ọtọ", 32 | "strikethrough": "Catchethrough", 33 | "@@locale": "ig", 34 | "confirmAppExitTitle": "Kwenye ọpụpụ", 35 | "confirmAppExitContent": "Ì ji n'aka na ịchọrọ ịpụ ngwa a?", 36 | "donate": "Inye", 37 | "print": "Deputa", 38 | "table": "Okpokoro", 39 | "rows": "Agwo", 40 | "columns": "Mntanet", 41 | "insert": "Itinye" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_mr.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "ठीक आहे", 3 | "yes": "होय", 4 | "cancel": "रद्द करा", 5 | "appTitle": "मार्कडाउन संपादक", 6 | "previewToolTip": "पूर्वावलोकन", 7 | "switchThemeMenuItem": "थीम स्विच करा", 8 | "switchViewMenuItem": "स्विच दृश्य", 9 | "openFileMenuItem": "उघडा", 10 | "markdownTextInputLabel": "आपला मार्कडाउन मजकूर येथे प्रविष्ट करा", 11 | "error": "त्रुटी", 12 | "unableToOpenFileError": "फाइल उघडण्यात अक्षम, मेनूवर ओपन फाइल पर्याय वरून उघडण्याचा प्रयत्न करा", 13 | "unableToOpenFileFromMenuError": "फाईल उघडण्यात अक्षम", 14 | "emptyInputTextContent": "कृपया काही मजकूर प्रविष्ट करा", 15 | "clear": "स्पष्ट", 16 | "clearAllTitle": "सर्व साफ करा", 17 | "clearAllContent": "आपणास खात्री आहे की आपण सर्व मजकूर साफ करू इच्छिता?", 18 | "saveFileDialogTitle": "फाईलचे नाव प्रविष्ट करा", 19 | "save": "जतन करा", 20 | "linkDialogTextTitle": "मजकूर", 21 | "linkDialogLinkTitle": "दुवा", 22 | "enterLinkTextDialogTitle": "दुवा प्रविष्ट करा", 23 | "bold": "ठळक", 24 | "italic": "इटालिक", 25 | "link": "दुवा", 26 | "image": "प्रतिमा", 27 | "heading": "शीर्षक", 28 | "code": "कोड", 29 | "bulletList": "बुलेट यादी", 30 | "quote": "कोट", 31 | "horizontalRule": "क्षैतिज नियम", 32 | "strikethrough": "स्ट्राइकथ्रू", 33 | "@@locale": "mr", 34 | "confirmAppExitTitle": "बाहेर पडा याची पुष्टी करा", 35 | "confirmAppExitContent": "आपणास खात्री आहे की आपण या अ‍ॅपमधून बाहेर पडू इच्छिता?", 36 | "donate": "देणगी", 37 | "print": "मुद्रण", 38 | "table": "टेबल", 39 | "rows": "पंक्ती", 40 | "columns": "स्तंभ", 41 | "insert": "घाला" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_btx.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "btx", 3 | "ok": "Ue", 4 | "yes": "ue", 5 | "cancel": "la surung", 6 | "appTitle": "Editor Markdown", 7 | "previewToolTip": "Pratinjo", 8 | "switchThemeMenuItem": "Saklar Tema", 9 | "switchViewMenuItem": "Tampilenndu", 10 | "openFileMenuItem": "Buka", 11 | "markdownTextInputLabel": "Masukken teks markdownndu i jenda .", 12 | "error": "Rusak", 13 | "unableToOpenFileError": "La banci ibuka file, cubakenlah buka i bas pilihen file terbuka i bas menu .", 14 | "unableToOpenFileFromMenuError": "La banci ibuka file .", 15 | "emptyInputTextContent": "Masukken piga-piga teks .", 16 | "clear": "Terang", 17 | "clearAllTitle": "Bengketlah Kerina", 18 | "clearAllContent": "Pasti nge kam nggit mbersihken kerina teks e?", 19 | "saveFileDialogTitle": "Masukken gelar file .", 20 | "save": "Simpan", 21 | "linkDialogTextTitle": "Tulisan", 22 | "linkDialogLinkTitle": "Jaringan", 23 | "enterLinkTextDialogTitle": "Masukken Link", 24 | "bold": "Tebal", 25 | "italic": "Metal", 26 | "link": "Jaringan", 27 | "image": "Gambar", 28 | "heading": "Kepala", 29 | "code": "Kai si ikataken", 30 | "bulletList": "Daftar Peluru", 31 | "quote": "Pedah", 32 | "horizontalRule": "Aturan Horizontal .", 33 | "strikethrough": "erkite-kiteken", 34 | "confirmAppExitTitle": "Keluarlah .", 35 | "confirmAppExitContent": "Kam yakin nge atendu ndarat i bas aplikasi enda?", 36 | "donate": "Cukong", 37 | "print": "Cetak", 38 | "table": "Meja", 39 | "rows": "biri-biri", 40 | "columns": "Kolom", 41 | "insert": "Ngancuhi" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_fa.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "خوب", 3 | "yes": "بله", 4 | "cancel": "لغو کردن", 5 | "appTitle": "ویرایشگر", 6 | "previewToolTip": "پیش نمایش", 7 | "switchThemeMenuItem": "تم سوئیچ", 8 | "switchViewMenuItem": "نمای سوئیچ", 9 | "openFileMenuItem": "باز", 10 | "markdownTextInputLabel": "متن Markdown خود را اینجا وارد کنید", 11 | "error": "خطا", 12 | "unableToOpenFileError": "امکان باز کردن پرونده وجود ندارد ، سعی کنید آن را از گزینه Open File در منو باز کنید", 13 | "unableToOpenFileFromMenuError": "امکان باز کردن پرونده وجود ندارد", 14 | "emptyInputTextContent": "لطفا چند متن وارد کنید", 15 | "clear": "پاک کردن", 16 | "clearAllTitle": "همه را پاک کنید", 17 | "clearAllContent": "آیا مطمئن هستید که می خواهید تمام متن را پاک کنید؟", 18 | "saveFileDialogTitle": "نام پرونده را وارد کنید", 19 | "save": "پس انداز کردن", 20 | "linkDialogTextTitle": "متن", 21 | "linkDialogLinkTitle": "پیوند", 22 | "enterLinkTextDialogTitle": "لینک را وارد کنید", 23 | "bold": "سرزنده", 24 | "italic": "وابسته به ایتالیایی", 25 | "link": "پیوند", 26 | "image": "تصویر", 27 | "heading": "عنوان", 28 | "code": "رمز", 29 | "bulletList": "لیست گلوله", 30 | "quote": "نقل قول", 31 | "horizontalRule": "قانون افقی", 32 | "strikethrough": "چیز جالب", 33 | "@@locale": "fa", 34 | "confirmAppExitTitle": "خروج را تأیید کنید", 35 | "confirmAppExitContent": "آیا مطمئن هستید که می خواهید از این برنامه خارج شوید؟", 36 | "donate": "اهداء کردن", 37 | "print": "چاپ", 38 | "table": "جدول", 39 | "rows": "ردیف", 40 | "columns": "ستون", 41 | "insert": "درج کردن" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_hr.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "U redu", 3 | "yes": "Da", 4 | "cancel": "Otkazati", 5 | "appTitle": "Uređivač Markdown", 6 | "previewToolTip": "Pregled", 7 | "switchThemeMenuItem": "Prebaci temu", 8 | "switchViewMenuItem": "Preklopnik", 9 | "openFileMenuItem": "Otvoriti", 10 | "markdownTextInputLabel": "Unesite svoj tekst Markdown ovdje", 11 | "error": "Pogreška", 12 | "unableToOpenFileError": "Nije moguće otvoriti datoteku, pokušajte je otvoriti iz opcije otvorene datoteke na izborniku", 13 | "unableToOpenFileFromMenuError": "Nije moguće otvoriti datoteku", 14 | "emptyInputTextContent": "Unesite neki tekst", 15 | "clear": "Jasan", 16 | "clearAllTitle": "Očisti sve", 17 | "clearAllContent": "Jeste li sigurni želite li očistiti sav tekst?", 18 | "saveFileDialogTitle": "Unesite ime datoteke", 19 | "save": "Uštedjeti", 20 | "linkDialogTextTitle": "Tekst", 21 | "linkDialogLinkTitle": "Link", 22 | "enterLinkTextDialogTitle": "Unesite vezu", 23 | "bold": "Hrabar", 24 | "italic": "Kurziv", 25 | "link": "Link", 26 | "image": "Slika", 27 | "heading": "Naslov", 28 | "code": "Kodirati", 29 | "bulletList": "Popis metaka", 30 | "quote": "Citat", 31 | "horizontalRule": "Horizontalno pravilo", 32 | "strikethrough": "Udar", 33 | "@@locale": "hr", 34 | "confirmAppExitTitle": "Potvrdite izlaz", 35 | "confirmAppExitContent": "Jeste li sigurni da želite izaći iz ove aplikacije?", 36 | "donate": "Donirati", 37 | "print": "Ispis", 38 | "table": "Stol", 39 | "rows": "Redovi", 40 | "columns": "Stupci", 41 | "insert": "Umetnuti" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_mam.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "mam", 3 | "ok": "B´anatz´un", 4 | "yes": "oki", 5 | "cancel": "okxju", 6 | "appTitle": "Market", 7 | "previewToolTip": "Tze´n", 8 | "switchThemeMenuItem": "Tb'anil", 9 | "switchViewMenuItem": "chik´il", 10 | "openFileMenuItem": "Jaql", 11 | "markdownTextInputLabel": "Tzʼokx tqʼon tibʼa toj t-xe t-xaq t-xeʼ", 12 | "error": "Nya bʼaʼn", 13 | "unableToOpenFileError": "Mintiʼ bʼant tuʼn tjaw tjaqoʼn archivo, tzʼok tilil tuʼna tuʼn t-xi t-jaqoʼna toj opción jqoʼn archivo toj menú .", 14 | "unableToOpenFileFromMenuError": "Mixti’ tu’n tjaw b’inchet aju’ .", 15 | "emptyInputTextContent": "B’a’n tu’n tokxa toj u’j", 16 | "clear": "B´a´n", 17 | "clearAllTitle": "Cl", 18 | "clearAllContent": "¿Axpe tok taja tuʼn tel tpaʼna tkyaqil uʼj?", 19 | "saveFileDialogTitle": "Tz’ib’inkuya tb’i tb’i .", 20 | "save": "K'u'l", 21 | "linkDialogTextTitle": "Yol tz'ib'in", 22 | "linkDialogLinkTitle": "Enlace", 23 | "enterLinkTextDialogTitle": "Enkink", 24 | "bold": "Q´aq", 25 | "italic": "b´a´n", 26 | "link": "Enlace", 27 | "image": "Tilb´ilal", 28 | "heading": "Ti'j", 29 | "code": "K'mon", 30 | "bulletList": "k´ul u´j", 31 | "quote": "B´il twi´", 32 | "horizontalRule": "Horizestal", 33 | "strikethrough": "NA", 34 | "confirmAppExitTitle": "Ex nya bʼaʼn .", 35 | "confirmAppExitContent": "¿Qʼuqli tkʼuʼja tiʼj qa taja tuʼn tel tpan tibʼa tiʼj aplicación lu?", 36 | "donate": "Oyil", 37 | "print": "Imprimir", 38 | "table": "Mex", 39 | "rows": "Roya", 40 | "columns": "ij;", 41 | "insert": "Q´onxa" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_min.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "min", 3 | "ok": "Jadih", 4 | "yes": "Iyo", 5 | "cancel": "Bata", 6 | "appTitle": "Penyuntiangan Markdown", 7 | "previewToolTip": "Pratinjau", 8 | "switchThemeMenuItem": "Tema Sakik", 9 | "switchViewMenuItem": "Pandangan Sakik", 10 | "openFileMenuItem": "Bukak", 11 | "markdownTextInputLabel": "Masuakkan teks markidown Sanak di siko", 12 | "error": "Kasilapan", 13 | "unableToOpenFileError": "Indak dapek mambukak file, cubo bukak dari opsi tabukak pado menu .", 14 | "unableToOpenFileFromMenuError": "Indak dapek mambukak file .", 15 | "emptyInputTextContent": "Silakan masuakkan babarapo teks", 16 | "clear": "Barasiah", 17 | "clearAllTitle": "Jalehkan Sadonyo", 18 | "clearAllContent": "Lai yakin sanak nio manjalehkan sadonyo teks?", 19 | "saveFileDialogTitle": "Masuakkan namo file .", 20 | "save": "Simpan", 21 | "linkDialogTextTitle": "Teks", 22 | "linkDialogLinkTitle": "Tautan", 23 | "enterLinkTextDialogTitle": "Masuak Pautan", 24 | "bold": "Bagak", 25 | "italic": "Italik", 26 | "link": "Tautan", 27 | "image": "Gambar", 28 | "heading": "Manuju", 29 | "code": "Kode", 30 | "bulletList": "Daftar Syarat", 31 | "quote": "Mangutip", 32 | "horizontalRule": "Aturan Horizontal", 33 | "strikethrough": "Panundaan", 34 | "confirmAppExitTitle": "Kaluakan Konfirmasi", 35 | "confirmAppExitContent": "Lai yakin sanak nio kalua dari aplikasi ko?", 36 | "donate": "Sumbang", 37 | "print": "Cetak", 38 | "table": "Meja", 39 | "rows": "Barisan", 40 | "columns": "Kolom", 41 | "insert": "Masuakan" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_mt.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "OK", 3 | "yes": "IVA", 4 | "cancel": "Ikkanċella", 5 | "appTitle": "Editur Markdown", 6 | "previewToolTip": "Preview", 7 | "switchThemeMenuItem": "Swiċċ it-tema", 8 | "switchViewMenuItem": "Swiċċ veduta", 9 | "openFileMenuItem": "Miftuħa", 10 | "markdownTextInputLabel": "Daħħal it-test Markdown tiegħek hawn", 11 | "error": "Żball", 12 | "unableToOpenFileError": "Ma tistax tiftaħ il-fajl, ipprova tiftaħha mill-għażla tal-fajl miftuħ fuq il-menu", 13 | "unableToOpenFileFromMenuError": "Ma tistax tiftaħ il-fajl", 14 | "emptyInputTextContent": "Jekk jogħġbok daħħal xi test", 15 | "clear": "Ċar", 16 | "clearAllTitle": "Ċar kollox", 17 | "clearAllContent": "Int żgur li trid tnaddaf it-test kollu?", 18 | "saveFileDialogTitle": "Daħħal l-isem tal-fajl", 19 | "save": "Ħlief", 20 | "linkDialogTextTitle": "Test", 21 | "linkDialogLinkTitle": "Link", 22 | "enterLinkTextDialogTitle": "Daħħal link", 23 | "bold": "Kuraġġuż", 24 | "italic": "Korsiv", 25 | "link": "Link", 26 | "image": "Immaġni", 27 | "heading": "Intestatura", 28 | "code": "Kodiċi", 29 | "bulletList": "Lista tal-Bullet", 30 | "quote": "Kwotazzjoni", 31 | "horizontalRule": "Regola orizzontali", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "mt", 34 | "confirmAppExitTitle": "Ikkonferma l-ħruġ", 35 | "confirmAppExitContent": "Int żgur li trid toħroġ minn din l-app?", 36 | "donate": "Donazzjoni", 37 | "print": "Stampa", 38 | "table": "Tabella", 39 | "rows": "Ringieli", 40 | "columns": "Kolonni", 41 | "insert": "Daħħal" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_tiv.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "tiv", 3 | "ok": "Ok", 4 | "yes": "Aan", 5 | "cancel": "bunde", 6 | "appTitle": "Markuditor", 7 | "previewToolTip": "Umaagh", 8 | "switchThemeMenuItem": "Ivangeli", 9 | "switchViewMenuItem": "Switch View", 10 | "openFileMenuItem": "Bugh", 11 | "markdownTextInputLabel": "Nyôr a ikyav you heen .", 12 | "error": "Isholio", 13 | "unableToOpenFileError": "Ka u fetyô u bughun fail la ga, nôngo u bughun un ken faile u a bugh sha menu la .", 14 | "unableToOpenFileFromMenuError": "U fan u bughun faile la ga .", 15 | "emptyInputTextContent": "We a rumun yô, nger ngeren mbagenev", 16 | "clear": "Wanger", 17 | "clearAllTitle": "Clear All", 18 | "clearAllContent": "U ngu a vangertiôr wer u soo u wanger akaa a i nger la cii kpa?", 19 | "saveFileDialogTitle": "Nger iti i faile la .", 20 | "save": "Ver", 21 | "linkDialogTextTitle": "Loho", 22 | "linkDialogLinkTitle": "Zua", 23 | "enterLinkTextDialogTitle": "Nyôr ken Link", 24 | "bold": "Vangertiôr", 25 | "italic": "Italic", 26 | "link": "Zua", 27 | "image": "Foto", 28 | "heading": "U vesen", 29 | "code": "Kode", 30 | "bulletList": "Bullet List", 31 | "quote": "Or kwagh la voughur", 32 | "horizontalRule": "Tindi u Ityendezwa", 33 | "strikethrough": "Kwagh u kpilighyol", 34 | "confirmAppExitTitle": "Kwaghôron u sha inja", 35 | "confirmAppExitContent": "U ngu a vangertiôr wer u soo u duen ken app ne kpa?", 36 | "donate": "Nagh", 37 | "print": "Gber", 38 | "table": "Tebul", 39 | "rows": "Rows", 40 | "columns": "Ukasua", 41 | "insert": "Wa" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_vec.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "vec", 3 | "ok": "Bon", 4 | "yes": "Sì", 5 | "cancel": "Anula", 6 | "appTitle": "Maditor de segna", 7 | "previewToolTip": "Anteprima", 8 | "switchThemeMenuItem": "Tema incomoda", 9 | "switchViewMenuItem": "Veuwiwiwsw", 10 | "openFileMenuItem": "Verto", 11 | "markdownTextInputLabel": "Entra el tesodo del marchio qua .", 12 | "error": "Eror", 13 | "unableToOpenFileError": "Incapaci de verxar el file, sercar de verxarlo da l’opsion del file aperto sul menù", 14 | "unableToOpenFileFromMenuError": "Incapace de verzer el file .", 15 | "emptyInputTextContent": "Par piaser entra in qualche testo", 16 | "clear": "Ciaro", 17 | "clearAllTitle": "Chiaro Tuti", 18 | "clearAllContent": "Sicuro che te vol sganciar tuto el testo?", 19 | "saveFileDialogTitle": "Entra el nome del file .", 20 | "save": "Salvar", 21 | "linkDialogTextTitle": "Teston", 22 | "linkDialogLinkTitle": "Colegamento", 23 | "enterLinkTextDialogTitle": "Inserir Link", 24 | "bold": "Temerario", 25 | "italic": "Italico", 26 | "link": "Colegamento", 27 | "image": "Imàjine", 28 | "heading": "Te diriger", 29 | "code": "Codice", 30 | "bulletList": "Lista de bułeta", 31 | "quote": "Preventivo", 32 | "horizontalRule": "Regola de orizontale .", 33 | "strikethrough": "Forte", 34 | "confirmAppExitTitle": "Evita conferma", 35 | "confirmAppExitContent": "Sicuro che te vol uscir sta app?", 36 | "donate": "Donar", 37 | "print": "Stampa", 38 | "table": "Tola", 39 | "rows": "Fiduci", 40 | "columns": "Coloni", 41 | "insert": "Inpirar" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_as.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "ঠিক আছে", 3 | "yes": "হয়", 4 | "cancel": "বাতিল কৰক", 5 | "appTitle": "মাৰ্কডাউন সম্পাদক", 6 | "previewToolTip": "পূৰ্বদৰ্শন", 7 | "switchThemeMenuItem": "থিম চুইচ কৰক", 8 | "switchViewMenuItem": "চুইচ চাওক", 9 | "openFileMenuItem": "খোলা", 10 | "markdownTextInputLabel": "আপোনাৰ মাৰ্কডাউন লিখনী ইয়াত দিয়ক", 11 | "error": "আঁসোৱাহ", 12 | "unableToOpenFileError": "ফাইলটো খোলিব নোৱাৰি, মেনুত খোলা ফাইল বিকল্পৰ পৰা খোলিবলৈ চেষ্টা কৰক", 13 | "unableToOpenFileFromMenuError": "ফাইলটো খোলিব নোৱাৰা", 14 | "emptyInputTextContent": "অনুগ্ৰহ কৰি কিছুমান লিখনী দিয়ক", 15 | "clear": "পৰিষ্কাৰ", 16 | "clearAllTitle": "সকলো পৰিষ্কাৰ কৰক", 17 | "clearAllContent": "আপুনি নিশ্চিত নেকি যে আপুনি সকলো লিখনী ক্লিয়াৰ কৰিব বিচাৰে?", 18 | "saveFileDialogTitle": "নথিপত্ৰৰ নাম সুমুৱাওক", 19 | "save": "সঞ্চয় কৰা", 20 | "linkDialogTextTitle": "পাঠ্য", 21 | "linkDialogLinkTitle": "লিংক", 22 | "enterLinkTextDialogTitle": "লিংক দিয়ক", 23 | "bold": "সাহসী", 24 | "italic": "Italic", 25 | "link": "লিংক", 26 | "image": "ছৱি", 27 | "heading": "হেডিং", 28 | "code": "কোড", 29 | "bulletList": "বুলেট তালিকা", 30 | "quote": "উদ্ধৃতি", 31 | "horizontalRule": "অনুভূমিক নিয়ম", 32 | "strikethrough": "ষ্ট্ৰাইকথ্ৰু", 33 | "@@locale": "as", 34 | "confirmAppExitTitle": "প্ৰস্থান নিশ্চিত কৰক", 35 | "confirmAppExitContent": "আপুনি এই এপটোৰ পৰা ওলাই যাব বিচৰাটো নিশ্চিত নেকি?", 36 | "donate": "দান কৰা", 37 | "print": "প্ৰিন্ট কৰক", 38 | "table": "মেজ", 39 | "rows": "শাৰী", 40 | "columns": "স্তম্ভসমূহ", 41 | "insert": "প্ৰবিষ্ট কৰা" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_bs.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "U redu", 3 | "yes": "Da", 4 | "cancel": "Otkazati", 5 | "appTitle": "Objave urednik", 6 | "previewToolTip": "Pregled", 7 | "switchThemeMenuItem": "Prekidač", 8 | "switchViewMenuItem": "Prekidač", 9 | "openFileMenuItem": "Otvoren", 10 | "markdownTextInputLabel": "Ovdje unesite svoj tekst o obratcu", 11 | "error": "Greška", 12 | "unableToOpenFileError": "Nije moguće otvoriti datoteku, pokušajte otvarati ga iz opcije Open File na izborniku", 13 | "unableToOpenFileFromMenuError": "Nije moguće otvoriti datoteku", 14 | "emptyInputTextContent": "Molimo unesite neki tekst", 15 | "clear": "Jasan", 16 | "clearAllTitle": "Očistiti sve", 17 | "clearAllContent": "Jeste li sigurni da želite očistiti sav tekst?", 18 | "saveFileDialogTitle": "Unesite ime datoteke", 19 | "save": "Sačuvati", 20 | "linkDialogTextTitle": "Tekst", 21 | "linkDialogLinkTitle": "Link", 22 | "enterLinkTextDialogTitle": "Unesite vezu", 23 | "bold": "Odvažan", 24 | "italic": "Italic", 25 | "link": "Link", 26 | "image": "Slika", 27 | "heading": "Naslov", 28 | "code": "Kodeks", 29 | "bulletList": "Lista metaka", 30 | "quote": "Citat", 31 | "horizontalRule": "Horizontalno pravilo", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "bs", 34 | "confirmAppExitTitle": "Potvrdite izlaz", 35 | "confirmAppExitContent": "Jeste li sigurni da želite izaći iz ove aplikacije?", 36 | "donate": "Donirati", 37 | "print": "Ispisati", 38 | "table": "Tablica", 39 | "rows": "Redovi", 40 | "columns": "Stubovi", 41 | "insert": "Umetnuti" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_cy.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "cy", 3 | "ok": "Iawn", 4 | "yes": "Ie", 5 | "cancel": "Chansliff", 6 | "appTitle": "Golygydd Markdown", 7 | "previewToolTip": "Rhagolwg", 8 | "switchThemeMenuItem": "Thema switsh", 9 | "switchViewMenuItem": "Golwg Switsh", 10 | "openFileMenuItem": "Ymagorant", 11 | "markdownTextInputLabel": "Rhowch eich testun Markdown yma", 12 | "error": "Gwallau", 13 | "unableToOpenFileError": "Methu agor y ffeil, ceisiwch ei hagor o opsiwn ffeil agored ar y ddewislen", 14 | "unableToOpenFileFromMenuError": "Methu agor y ffeil", 15 | "emptyInputTextContent": "Rhowch ychydig o destun", 16 | "clear": "Gliria ’", 17 | "clearAllTitle": "Clirio popeth", 18 | "clearAllContent": "Ydych chi'n siŵr a ydych chi am glirio'r holl destun?", 19 | "saveFileDialogTitle": "Rhowch enw'r ffeil", 20 | "save": "Hiachasit", 21 | "linkDialogTextTitle": "Tecstio", 22 | "linkDialogLinkTitle": "Chysyllti", 23 | "enterLinkTextDialogTitle": "ENTER LINK", 24 | "bold": "Lem", 25 | "italic": "Italig", 26 | "link": "Chysyllti", 27 | "image": "Nelwedd", 28 | "heading": "Phennawd", 29 | "code": "Codiff", 30 | "bulletList": "Rhestr Bwled", 31 | "quote": "Ddyfynnent", 32 | "horizontalRule": "Rheol lorweddol", 33 | "strikethrough": "Streic", 34 | "confirmAppExitTitle": "Cadarnhau allanfa", 35 | "confirmAppExitContent": "Ydych chi'n siŵr eich bod chi am adael yr app hon?", 36 | "donate": "Rhoion", 37 | "print": "Printiwyd", 38 | "table": "Fwrdd", 39 | "rows": "Ngrymus", 40 | "columns": "Colofnau", 41 | "insert": "Mewnosodent" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_fur.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "fur", 3 | "ok": "Va ben", 4 | "yes": "sì", 5 | "cancel": "cancelâ", 6 | "appTitle": "Editôr di markdown", 7 | "previewToolTip": "predi", 8 | "switchThemeMenuItem": "Teste di comutazion", 9 | "switchViewMenuItem": "Viste di comut", 10 | "openFileMenuItem": "Viert", 11 | "markdownTextInputLabel": "Inserî il to test di segn culì", 12 | "error": "Erôr", 13 | "unableToOpenFileError": "No podint vierzi il file, provâ a vierzilu de opzion di file viert sul menût", 14 | "unableToOpenFileFromMenuError": "No podìn vierzi il file", 15 | "emptyInputTextContent": "Par plasê inserî cualchi test", 16 | "clear": "Clâr", 17 | "clearAllTitle": "Cjamâ dut dut", 18 | "clearAllContent": "Sicurt che tu âs di distacâ dut il test?", 19 | "saveFileDialogTitle": "Inserî il non dal file", 20 | "save": "Salvâ", 21 | "linkDialogTextTitle": "Test", 22 | "linkDialogLinkTitle": "Colegament", 23 | "enterLinkTextDialogTitle": "Inserî il leam", 24 | "bold": "Coragjôs", 25 | "italic": "funzion", 26 | "link": "Colegament", 27 | "image": "Imagjin", 28 | "heading": "Viodi", 29 | "code": "codiç", 30 | "bulletList": "Liste di bulle", 31 | "quote": "Preventîf", 32 | "horizontalRule": "Regole orizontâl", 33 | "strikethrough": "Strichet", 34 | "confirmAppExitTitle": "Confermâ Exite", 35 | "confirmAppExitContent": "Sigur che si vûl jessi fûr di cheste aplicazion?", 36 | "donate": "Donâ", 37 | "print": "stamp; Preest", 38 | "table": "Taule", 39 | "rows": "struture", 40 | "columns": "Racuelte", 41 | "insert": "Inserî" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_hy.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Լավ", 3 | "yes": "Այո", 4 | "cancel": "Չեղարկել", 5 | "appTitle": "Markdown խմբագիր", 6 | "previewToolTip": "Նախադիտում", 7 | "switchThemeMenuItem": "Անջատեք թեման", 8 | "switchViewMenuItem": "Switch View", 9 | "openFileMenuItem": "Բաց անել", 10 | "markdownTextInputLabel": "Մուտքագրեք ձեր Markdown տեքստը այստեղ", 11 | "error": "Սխալ", 12 | "unableToOpenFileError": "Անհնար է բացել ֆայլը, փորձեք այն բացել «Բաց ֆայլի» տարբերակից", 13 | "unableToOpenFileFromMenuError": "Անհնար է բացել ֆայլը", 14 | "emptyInputTextContent": "Խնդրում ենք մուտքագրել որոշ տեքստ", 15 | "clear": "Պարզ", 16 | "clearAllTitle": "Մաքրել բոլորը", 17 | "clearAllContent": "Համոզված եք, որ ցանկանում եք մաքրել ամբողջ տեքստը:", 18 | "saveFileDialogTitle": "Մուտքագրեք ֆայլի անունը", 19 | "save": "Խնայել", 20 | "linkDialogTextTitle": "Տեքստ", 21 | "linkDialogLinkTitle": "Հղկել", 22 | "enterLinkTextDialogTitle": "Մուտքագրեք հղումը", 23 | "bold": "Հանդուգն", 24 | "italic": "Italic", 25 | "link": "Հղկել", 26 | "image": "Պատկեր", 27 | "heading": "Վերնագիր", 28 | "code": "Ծածկագիր", 29 | "bulletList": "Փամփուշտների ցուցակ", 30 | "quote": "Մեջբերում", 31 | "horizontalRule": "Հորիզոնական կանոն", 32 | "strikethrough": "Գործադուլ", 33 | "@@locale": "hy", 34 | "confirmAppExitTitle": "Հաստատեք ելքը", 35 | "confirmAppExitContent": "Համոզված եք, որ ցանկանում եք դուրս գալ այս հավելվածից:", 36 | "donate": "Նվիրել", 37 | "print": "Տպարան", 38 | "table": "Սեղան", 39 | "rows": "Տողեր", 40 | "columns": "Սյուներ", 41 | "insert": "Տեղադրել" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_sw.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Sawa", 3 | "yes": "Ndio", 4 | "cancel": "Ghairi", 5 | "appTitle": "Mhariri wa Markdown", 6 | "previewToolTip": "Hakikisho", 7 | "switchThemeMenuItem": "Badili mandhari", 8 | "switchViewMenuItem": "Badilisha mtazamo", 9 | "openFileMenuItem": "Wazi", 10 | "markdownTextInputLabel": "Ingiza maandishi yako ya alama hapa", 11 | "error": "Kosa", 12 | "unableToOpenFileError": "Haiwezi kufungua faili, jaribu kuifungua kutoka kwa chaguo la faili wazi kwenye menyu", 13 | "unableToOpenFileFromMenuError": "Haiwezi kufungua faili", 14 | "emptyInputTextContent": "Tafadhali ingiza maandishi", 15 | "clear": "Wazi", 16 | "clearAllTitle": "Futa zote", 17 | "clearAllContent": "Je! Una uhakika unataka kusafisha maandishi yote?", 18 | "saveFileDialogTitle": "Ingiza jina la faili", 19 | "save": "Kuokoa", 20 | "linkDialogTextTitle": "Maandishi", 21 | "linkDialogLinkTitle": "Kiungo", 22 | "enterLinkTextDialogTitle": "Ingiza kiunga", 23 | "bold": "Ujasiri", 24 | "italic": "Italic", 25 | "link": "Kiungo", 26 | "image": "Picha", 27 | "heading": "Kichwa", 28 | "code": "Nambari", 29 | "bulletList": "Orodha ya risasi", 30 | "quote": "Nukuu", 31 | "horizontalRule": "Utawala wa usawa", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "sw", 34 | "confirmAppExitTitle": "Thibitisha exit", 35 | "confirmAppExitContent": "Je! Una uhakika unataka kutoka kwa programu hii?", 36 | "donate": "Toa", 37 | "print": "Chapisha", 38 | "table": "Meza", 39 | "rows": "Safu", 40 | "columns": "Nguzo", 41 | "insert": "Ingiza" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_vi.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Được rồi", 3 | "yes": "Đúng", 4 | "cancel": "Hủy bỏ", 5 | "appTitle": "Biên tập viên Markdown", 6 | "previewToolTip": "Xem trước", 7 | "switchThemeMenuItem": "Chuyển đổi chủ đề", 8 | "switchViewMenuItem": "Chuyển đổi chế độ xem", 9 | "openFileMenuItem": "Mở", 10 | "markdownTextInputLabel": "Nhập văn bản đánh dấu của bạn vào đây", 11 | "error": "Lỗi", 12 | "unableToOpenFileError": "Không thể mở tệp, hãy thử mở nó từ tùy chọn Tệp mở trên menu", 13 | "unableToOpenFileFromMenuError": "Không thể mở tệp", 14 | "emptyInputTextContent": "Vui lòng nhập một số văn bản", 15 | "clear": "Thông thoáng", 16 | "clearAllTitle": "Rõ ràng tất cả", 17 | "clearAllContent": "Bạn có chắc chắn bạn có muốn xóa tất cả các văn bản không?", 18 | "saveFileDialogTitle": "Nhập tên của tệp", 19 | "save": "Cứu", 20 | "linkDialogTextTitle": "Chữ", 21 | "linkDialogLinkTitle": "Liên kết", 22 | "enterLinkTextDialogTitle": "Nhập liên kết", 23 | "bold": "In đậm", 24 | "italic": "Chữ in nghiêng", 25 | "link": "Liên kết", 26 | "image": "Hình ảnh", 27 | "heading": "Tiêu đề", 28 | "code": "Mã số", 29 | "bulletList": "Danh sách đạn", 30 | "quote": "Trích dẫn", 31 | "horizontalRule": "Quy tắc ngang", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "vi", 34 | "confirmAppExitTitle": "Xác nhận Thoát", 35 | "confirmAppExitContent": "Bạn có chắc chắn muốn thoát khỏi ứng dụng này không?", 36 | "donate": "Quyên tặng", 37 | "print": "In", 38 | "table": "Bàn", 39 | "rows": "Hàng", 40 | "columns": "Cột", 41 | "insert": "Chèn" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ak.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Yoo", 3 | "yes": "Aane", 4 | "cancel": "Twam", 5 | "appTitle": "Markdown samufo .", 6 | "previewToolTip": "Preview .", 7 | "switchThemeMenuItem": "Sesa asɛmti no .", 8 | "switchViewMenuItem": "Sesa hwɛ .", 9 | "openFileMenuItem": "Bue", 10 | "markdownTextInputLabel": "Hyehyɛ wo markdown nsɛm no wɔ ha .", 11 | "error": "Mfomsoɔ", 12 | "unableToOpenFileError": "Wontumi mmue fael no, bɔ mmɔden sɛ wubebue afi Open File option wɔ menu no so .", 13 | "unableToOpenFileFromMenuError": "Entumi mmue fael no .", 14 | "emptyInputTextContent": "Yɛsrɛ sɛ kyerɛw nsɛm bi .", 15 | "clear": "Wann", 16 | "clearAllTitle": "Popa ne nyinaa .", 17 | "clearAllContent": "Wogye di sɛ wopɛ sɛ wopopa nsɛm no nyinaa?", 18 | "saveFileDialogTitle": "Hyehyɛ fael no din .", 19 | "save": "Kora", 20 | "linkDialogTextTitle": "Atwerɛ", 21 | "linkDialogLinkTitle": "Link", 22 | "enterLinkTextDialogTitle": "Hyehyɛ Link .", 23 | "bold": "Akokoɔduro", 24 | "italic": "Italic .", 25 | "link": "Link", 26 | "image": "Mfoni", 27 | "heading": "Asɛmti .", 28 | "code": "Kood .", 29 | "bulletList": "Bullet List .", 30 | "quote": "Asɛnka", 31 | "horizontalRule": "Mmara a ɛda fam .", 32 | "strikethrough": "Strikethrough .", 33 | "@@locale": "ak", 34 | "confirmAppExitTitle": "Si so dua sɛ wobɛfi adi .", 35 | "confirmAppExitContent": "Wogye di sɛ wopɛ sɛ wufi app yi mu?", 36 | "donate": "Yi boa", 37 | "print": "Print .", 38 | "table": "Pono", 39 | "rows": "Ntoatoaso .", 40 | "columns": "Nsɛm a ɛwɔ adum so .", 41 | "insert": "Fa hyɛ mu" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_fon.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "fon", 3 | "ok": "É nyɔ́", 4 | "yes": "Ɛɛn", 5 | "cancel": "ÐáñáôçñÞóôå", 6 | "appTitle": "Markdown wlantɔ", 7 | "previewToolTip": "nukɔnmɛ", 8 | "switchThemeMenuItem": "Dɔn Xóta", 9 | "switchViewMenuItem": "Switch", 10 | "openFileMenuItem": "Hun", 11 | "markdownTextInputLabel": "Wlan wema towe e nɔ xlɛ́ ɖɔ a ɖó wuntun é ɖò fí .", 12 | "error": "Nùwanyido", 13 | "unableToOpenFileError": "Ma sixu hun file ɔ ó, tɛnkpɔn bo hun sín file option mɛ ɖò menu ɔ jí .", 14 | "unableToOpenFileFromMenuError": "Ma sixu hun file ɔ ó .", 15 | "emptyInputTextContent": "Kɛnklɛn bo wlan nǔwlanwlán ɖé lɛ .", 16 | "clear": "Nyénminyénmi", 17 | "clearAllTitle": "Súnsún Nǔ lɛ Bǐ", 18 | "clearAllContent": "A ka jló na ɖè nǔwlanwlán lɛ bǐ síìn à?", 19 | "saveFileDialogTitle": "Wlan file ɔ sin nyikɔ .", 20 | "save": "Xàsà do", 21 | "linkDialogTextTitle": "Wemafɔ", 22 | "linkDialogLinkTitle": "Kancica", 23 | "enterLinkTextDialogTitle": "Link", 24 | "bold": "Adàntɔ́", 25 | "italic": "klewun", 26 | "link": "Kancica", 27 | "image": "Nùdidé", 28 | "heading": "gbɔ", 29 | "code": "Kod", 30 | "bulletList": "Sún wěgbójínɔtɔ́", 31 | "quote": "Xókwín", 32 | "horizontalRule": "Sɛ́n e kúnkplá wanyiyi é", 33 | "strikethrough": "Nǔ e è sɔ́ dó jǐ tɔn é", 34 | "confirmAppExitTitle": "Mi mɔ nu jɛ mɛ", 35 | "confirmAppExitContent": "A ka kudeji ɖɔ emi jló na tɔ́n sín appli elɔ mɛ à?", 36 | "donate": "Dŏ nù", 37 | "print": "Wema", 38 | "table": "Távo", 39 | "rows": "Rows", 40 | "columns": "Sinvi lɛ", 41 | "insert": "Nùɖé" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_luo.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "luo", 3 | "ok": "Oo", 4 | "yes": "Ee", 5 | "cancel": "ketho", 6 | "appTitle": "Markoma Editor", 7 | "previewToolTip": "pok itimo ne ji gik ma itimo", 8 | "switchThemeMenuItem": "Thuolo mar Swin", 9 | "switchViewMenuItem": "Neno sinema mar neno sinema", 10 | "openFileMenuItem": "Yawo", 11 | "markdownTextInputLabel": "Inyalo keto ndiko mari mar mbui kae", 12 | "error": "Kier", 13 | "unableToOpenFileError": "Ok nyal yawo failno, tem mondo iyawe kuom oboke ma oyawore e menyu", 14 | "unableToOpenFileFromMenuError": "Ok onyal yawo failno", 15 | "emptyInputTextContent": "Yie mondo iket weche moko", 16 | "clear": "Maliw", 17 | "clearAllTitle": "Neno gik moko duto", 18 | "clearAllContent": "Be in gadier ni idwaro golo weche duto?", 19 | "saveFileDialogTitle": "Iketo nying failno", 20 | "save": "Waro", 21 | "linkDialogTextTitle": "Ote machuok", 22 | "linkDialogLinkTitle": "Tudo", 23 | "enterLinkTextDialogTitle": "Ndik Link", 24 | "bold": "Thuon", 25 | "italic": "mapile", 26 | "link": "Tudo", 27 | "image": "Picha", 28 | "heading": "Dhi nyime", 29 | "code": "noko", 30 | "bulletList": "Listi mar bil", 31 | "quote": "Poro kaka owacho", 32 | "horizontalRule": "Chike mag nyuol", 33 | "strikethrough": "Duoko", 34 | "confirmAppExitTitle": "Kontera mar Wuok", 35 | "confirmAppExitContent": "Be in gadier ni idwaro wuok e programni?", 36 | "donate": "Chiwo ne jomoko", 37 | "print": "duong'", 38 | "table": "Mesa", 39 | "rows": "Yore mag timo gik moko", 40 | "columns": "Kolon", 41 | "insert": "Soyo" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_nus.arb: -------------------------------------------------------------------------------- 1 | { 2 | "@@locale": "nus", 3 | "ok": "Gɔ̱a̱̱", 4 | "yes": "Äɣ", 5 | "cancel": "wuɔ̱c", 6 | "appTitle": "Maa̱p piny Edi̱ra", 7 | "previewToolTip": "Preview", 8 | "switchThemeMenuItem": "Switch The wi̱thä", 9 | "switchViewMenuItem": "I̱thwi̱w.", 10 | "openFileMenuItem": "Lɛp", 11 | "markdownTextInputLabel": "Kämni ruac in ca gɔ̱r piny ɛn wa̱nɛ", 12 | "error": "Duër", 13 | "unableToOpenFileError": "/Cɛ rɔ luäŋ kɛ lëp file, ɣɔ̱nɛ jɛ ɛn ɣöö biɛ la̱th kä hift file min ca la̱th kä menu", 14 | "unableToOpenFileFromMenuError": "/Cɛ rɔ luäŋ kɛ lëp.", 15 | "emptyInputTextContent": "Ɣän göörä ɣöö bä la̱th rɛy tha̱a̱ŋ rieetni̱", 16 | "clear": "Lɛ̱ylɛ̱y", 17 | "clearAllTitle": "thok", 18 | "clearAllContent": "Kä ji̱n ŋäci jɛ ɛn ɣöö go̱o̱ri ɣöö biɛ ŋa̱c kɛn rieet diaal?", 19 | "saveFileDialogTitle": "Gɔ̱ri ciöt file", 20 | "save": "Ka̱n", 21 | "linkDialogTextTitle": "Rua̱c mi ca ja̱k", 22 | "linkDialogLinkTitle": "Min thia̱kɛ", 23 | "enterLinkTextDialogTitle": "Ɛn ɣöö Link", 24 | "bold": "Ɛ jɔc", 25 | "italic": "läri", 26 | "link": "Min thia̱kɛ", 27 | "image": "Thurɛ", 28 | "heading": "jia̱th", 29 | "code": "kämni rɔ", 30 | "bulletList": "Buul Li̱th", 31 | "quote": "Tho̱̱p ra̱n", 32 | "horizontalRule": "Ɣöridhɔn Ruulä", 33 | "strikethrough": "Ti̱ɛr", 34 | "confirmAppExitTitle": "Cäät", 35 | "confirmAppExitContent": "Kä ji̱n go̱o̱ri ɣöö bi app ɛmɛ raar?", 36 | "donate": "Tho̱p ra̱m mi dɔŋ", 37 | "print": "pɛ̱ɛ̱th", 38 | "table": "Tha̱rbët", 39 | "rows": "ba̱kɔ̱", 40 | "columns": "duël mi tɔt", 41 | "insert": "Tily" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_pt.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "OK", 3 | "yes": "Sim", 4 | "cancel": "Cancelar", 5 | "appTitle": "Editor de Markdown", 6 | "previewToolTip": "Visualização", 7 | "switchThemeMenuItem": "Switch Theme", 8 | "switchViewMenuItem": "Visualização do Switch", 9 | "openFileMenuItem": "Abrir", 10 | "markdownTextInputLabel": "Digite seu texto de marcação aqui", 11 | "error": "Erro", 12 | "unableToOpenFileError": "Incapaz de abrir o arquivo, tente abri -lo da opção de arquivo aberto no menu", 13 | "unableToOpenFileFromMenuError": "Incapaz de abrir o arquivo", 14 | "emptyInputTextContent": "Por favor, insira algum texto", 15 | "clear": "Claro", 16 | "clearAllTitle": "Limpar tudo", 17 | "clearAllContent": "Tem certeza que deseja limpar todo o texto?", 18 | "saveFileDialogTitle": "Digite o nome do arquivo", 19 | "save": "Salvar", 20 | "linkDialogTextTitle": "Texto", 21 | "linkDialogLinkTitle": "Link", 22 | "enterLinkTextDialogTitle": "Digite o link", 23 | "bold": "Audacioso", 24 | "italic": "itálico", 25 | "link": "Link", 26 | "image": "Imagem", 27 | "heading": "Cabeçalho", 28 | "code": "Código", 29 | "bulletList": "Lista de balas", 30 | "quote": "Citar", 31 | "horizontalRule": "Regra horizontal", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "pt", 34 | "confirmAppExitTitle": "Confirmar saída", 35 | "confirmAppExitContent": "Tem certeza de que deseja sair deste aplicativo?", 36 | "donate": "Doar", 37 | "print": "Imprimir", 38 | "table": "Mesa", 39 | "rows": "Linhas", 40 | "columns": "Colunas", 41 | "insert": "Inserir" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_sr.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "У реду", 3 | "yes": "Да", 4 | "cancel": "Отказати", 5 | "appTitle": "Маркдовн Едитор", 6 | "previewToolTip": "Преглед", 7 | "switchThemeMenuItem": "Пребаците тему", 8 | "switchViewMenuItem": "Прекидач", 9 | "openFileMenuItem": "Отворен", 10 | "markdownTextInputLabel": "Овде унесите текст ознаке", 11 | "error": "Грешка", 12 | "unableToOpenFileError": "Није могуће отворити датотеку, покушајте да га отворите из опције отворене датотеке на менију", 13 | "unableToOpenFileFromMenuError": "Није могуће отворити датотеку", 14 | "emptyInputTextContent": "Молимо унесите неки текст", 15 | "clear": "Чист", 16 | "clearAllTitle": "Очистити све", 17 | "clearAllContent": "Јесте ли сигурни да желите да очистите сав текст?", 18 | "saveFileDialogTitle": "Унесите име датотеке", 19 | "save": "Сачувати", 20 | "linkDialogTextTitle": "Текст", 21 | "linkDialogLinkTitle": "Линк", 22 | "enterLinkTextDialogTitle": "Унесите везу", 23 | "bold": "Подебљан", 24 | "italic": "Италијан", 25 | "link": "Линк", 26 | "image": "Слика", 27 | "heading": "Наслов", 28 | "code": "Шифра", 29 | "bulletList": "Листа мека", 30 | "quote": "Цитирати", 31 | "horizontalRule": "Хоризонтално правило", 32 | "strikethrough": "СтрикеТхроугх", 33 | "@@locale": "sr", 34 | "confirmAppExitTitle": "Потврдите излаз", 35 | "confirmAppExitContent": "Јесте ли сигурни да желите да изађете из ове апликације?", 36 | "donate": "Донирати", 37 | "print": "Штампа", 38 | "table": "Сто", 39 | "rows": "Редови", 40 | "columns": "Колоне", 41 | "insert": "Уметнути" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_tk.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Bolýar", 3 | "yes": "Hawa", 4 | "cancel": "Ýatyr", 5 | "appTitle": "Mazdovdi Redaktor", 6 | "previewToolTip": "Deslapky syn", 7 | "switchThemeMenuItem": "Temany geçiriň", 8 | "switchViewMenuItem": "Görüşgin görüşeri", 9 | "openFileMenuItem": "Açyk", 10 | "markdownTextInputLabel": "Bellik tekstiňizi şu ýere giriziň", 11 | "error": "Ýalňyşlyk", 12 | "unableToOpenFileError": "Faýly açyp bolmaýar, menýuda açyk faýl opsiýasyndan açyp synap görüň", 13 | "unableToOpenFileFromMenuError": "Faýly açyp bolmaýar", 14 | "emptyInputTextContent": "Käbir teksti giriziň", 15 | "clear": "Düşnükli", 16 | "clearAllTitle": "Hemmesini arassala", 17 | "clearAllContent": "Thehli teksti arassalamak isleýärsiňizmi?", 18 | "saveFileDialogTitle": "Faýlyň adyny giriziň", 19 | "save": "Tygşytlaň", 20 | "linkDialogTextTitle": "Tekst", 21 | "linkDialogLinkTitle": "Baglanyşyk", 22 | "enterLinkTextDialogTitle": "Baglanyşyga giriň", 23 | "bold": "Goýy", 24 | "italic": "Italýan", 25 | "link": "Baglanyşyk", 26 | "image": "Şekil", 27 | "heading": "Sözbaşy", 28 | "code": "Kody", 29 | "bulletList": "Ok sanawynda", 30 | "quote": "Sitata", 31 | "horizontalRule": "Gorizontal düzgün", 32 | "strikethrough": "Iş taşlaýyş", 33 | "@@locale": "tk", 34 | "confirmAppExitTitle": "Çykyşy tassyklaň", 35 | "confirmAppExitContent": "Bu programmadan çykmak isleýändigiňize ynanýarsyňyzmy?", 36 | "donate": "Bagyş et", 37 | "print": "Çap et", 38 | "table": "Tablisa", 39 | "rows": "Hatarlar", 40 | "columns": "Sütünler", 41 | "insert": "Goýmak" 42 | } -------------------------------------------------------------------------------- /lib/l10n/app_ca.arb: -------------------------------------------------------------------------------- 1 | { 2 | "ok": "Ok", 3 | "yes": "Sí", 4 | "cancel": "Cancel·lar", 5 | "appTitle": "Editor de Markdown", 6 | "previewToolTip": "Tràiler", 7 | "switchThemeMenuItem": "Switch Theme", 8 | "switchViewMenuItem": "Vista de commutació", 9 | "openFileMenuItem": "Obrir", 10 | "markdownTextInputLabel": "Introduïu el text de MarkDown aquí", 11 | "error": "Error", 12 | "unableToOpenFileError": "No es pot obrir el fitxer, proveu d'obrir -lo des de l'opció Obrir el fitxer al menú", 13 | "unableToOpenFileFromMenuError": "No es pot obrir el fitxer", 14 | "emptyInputTextContent": "Introduïu algun text", 15 | "clear": "Clar", 16 | "clearAllTitle": "Esborrar tot", 17 | "clearAllContent": "Esteu segur que voleu esborrar tot el text?", 18 | "saveFileDialogTitle": "Introduïu el nom del fitxer", 19 | "save": "Estalviar", 20 | "linkDialogTextTitle": "Texte", 21 | "linkDialogLinkTitle": "Baula", 22 | "enterLinkTextDialogTitle": "Entrar a l’enllaç", 23 | "bold": "Valent", 24 | "italic": "En cursiva", 25 | "link": "Baula", 26 | "image": "Imatge", 27 | "heading": "Títol", 28 | "code": "Codi", 29 | "bulletList": "Llista de bala", 30 | "quote": "Citar", 31 | "horizontalRule": "Regla horitzontal", 32 | "strikethrough": "Strikethrough", 33 | "@@locale": "ca", 34 | "confirmAppExitTitle": "Confirmeu la sortida", 35 | "confirmAppExitContent": "Esteu segur que voleu sortir d'aquesta aplicació?", 36 | "donate": "Donar", 37 | "print": "Imprimir", 38 | "table": "Taula", 39 | "rows": "Fileres", 40 | "columns": "Columnes", 41 | "insert": "Inserir" 42 | } --------------------------------------------------------------------------------