Rosetta


Source link: https://github.com/ahmedaljazzar/rosetta

Rosetta

Rosetta is an Android library that helps your app supporting multiple languages and switching between them without causing any headaches.

How to use

1. Add these lines to your build.gradle

You can use Jcenter() or mavenCentral()

repositories {

  mavenCentral() 
}
  dependencies {

compile "com.ahmedjazzar.rosetta:rosetta:1.0.1" 
}

2. Identify your locales, or let the library do it for you!

At your launch activity or MainApplication.java -if exists-, the Library offers two ways to identify and set the supported locales:

  • The first one requires you to know what languages your app gonna use. It's more efficient, predictable, and easy to use. You can use this method if you have a closed source app, or your app has a specific supported locales:
// This is the locale that you wanna your app to launch with. Locale firstLaunchLocale = new Locale("ar");
  // You can use a HashSet<String> instead and call 'setSupportedStringLocales()' :) HashSet<Locale> supportedLocales = new HashSet<>();
 supportedLocales.add(Locale.US);
 supportedLocales.add(Locale.CHINA);
 supportedLocales.add(firstLaunchLocale);
  // You can make the following object static so you can use the same reference in all app's // classes. static is much stable. LanguageSwitcher ls = new LanguageSwitcher(this, firstLaunchLocale);
 ls.setSupportedLocales(supportedLocales);
 
  • The second one asking the library to do its magic and searches inside the app for available locale. May fail! *:
// This is the locale that you wanna your app to launch with. Locale firstLaunchLocale = new Locale("ar");
  // IMPORTANT: this is the locale of the main strings.xml file. -- most developers write it // in English, so if you wrote it in another locale specify it here. Locale baseLocale = Locale.ENGLISH;  // stringId: the id of a string that's occurred in every locale with a different characters. // For instance if you have 3 locales: US, UK, and Arabic the perfect fit would be the word // 'color' -if exist for sure- because it has different form in each locale: // Locale.US: color, Locale.UK: colour, ar: ??? int stringId = R.string.nice_string;  LanguageSwitcher ls = new LanguageSwitcher(this, firstLaunchLocale, baseLocale);
 ls.setSupportedLocales(stringId);
 
  • The second methodology is gonna fetch the available locales in your app then set them as the support locales since there's no supported locales provided.

  • You can see what locales gonna be fetched before setting them by calling:

     ls.fetchAvailableLocales(stringId);
    

    and it's gonna return a HashSet of the detected locales.

    • It may fails because even if you have a folder named values-ar it doesn't mean you have any resources there, so if you have values-ar and you provided the LanguageSwitcher with a string that's not listed in, or it has the same characters in the same order; i.e nice in US and nice in UK, then your locale, unfortunately, will not detected.

3. Add a tab in your activity_settings.xml

Using this tab the user will be able to change the application language

<LinearLayout
  android:id="@id/language_layout"
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:orientation="vertical">

<TextView

android:id="@id/languageText"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:text="Language"

android:textSize="13sp" />

<TextView

android:id="@id/current_language"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:textSize="11sp"

tools:text="English" /> </LinearLayout>

4. Add the following functionality to your SettingsActivity.java

LinearLayout languageView = (LinearLayout) layout.findViewById(R.id.language_layout);
 languageView.setOnClickListener(new View.OnClickListener() {

  @Override
  public void onClick(View v) {

// If you have a static declared switcher You can call it using the

// following line:

// MainApplication.languageSwitcher.showChangeLanguageDialog(this);


new LanguageSwitcher(getActivity()).showChangeLanguageDialog();

  
}
 
}
);
  // The following 3 lines are extra and not needed :) TextView language_tv = (TextView) layout.findViewById(R.id.current_language);
 Locale currentLocale = getResources().getConfiguration().locale; language_tv.setText(currentLocale.getDisplayName(currentLocale));

5. Cheers!

Yes! You did it. Your application now supports all Android supported locales.

Extra features

  1. To get a HashSet of the supported locales: ls.getLocales().
  2. To set the supported locales using a HashSet<String> instead of HashSet<Locale>: ls.setSupportedStringLocales(supportedLocales).
  3. To return to your launch locale (helpful when you have non-localized views): ls.switchToLaunch(SomeActivity.this)
  4. To use your own DialogFragment with your custom design:
    1. Extend LanguagesListDialogFragment and override onCreateDialog! For example:
    public class ChangeLanguageDialogFragment extends LanguagesListDialogFragment {
      .  .  .
      @Override
      public Dialog onCreateDialog(Bundle savedInstanceState) {
    
    final AlertDialog.Builder builder = new AlertDialog.Builder(getActivity());
    
    .
    
    .
    
    .
    
    return builder.create();
    
      
    }
    
    .  .  . 
    }
    
    1. In positive button on click listener call: onPositiveClick();
    2. In OnItemClickListener use onLanguageSelected(position); , or if you wanna localize the dialog title, positive button, and negative button texts call onLanguageSelectedLocalized(position, titleTextView, positiveBtn, negativeBtn); .
    3. You can use other helpful methods available in the parent class like:
      1. getLanguages() to get a display-ready languages.
      2. getCurrentLocaleIndex() to get the index of the locale that your app is displaying right now.

What is Rosetta?

Rosetta is the first name of Rosetta Stone. The Rosetta Stone is a granodiorite stele inscribed with a decree issued at Memphis, Egypt, in 196 BC on behalf of King Ptolemy V. The decree appears in three scripts: the upper text is Ancient Egyptian hieroglyphs, the middle portion Demotic script, and the lowest Ancient Greek. Because it presents essentially the same text in all three scripts (with some minor differences among them), the stone provided the key to the modern understanding of Egyptian hieroglyphs.

  • Continue reading here

License

The MIT License (MIT) Copyright (c) 2016 Ahmed Jazzar [email protected]

NOTE: This library does not translate your application localized strings, it's just helping you switching between them.

Resources

RubberStamp is an Android library that makes it easy for you to add a watermark to your images.

Features

  • Add a watermark to your images.
  • It can be text or another image.
  • Multiple ways and features to customize how the watermark looks including attributes like font, color, opacity, size, shadow properties, etc.
  • Flexible API that has multiple pre-defined options to get started quickly.
  • Ability to tile your watermark across an image.

This example describes how use Espresso in Android-Kotlin using MVP, Dagger2, Retrofit.

A set of RxJava2 Extensions to get/set values of SharedPreferences in a super simple way.

Tempo is a Kotlin library for Android to get the current time from multiple sources: SNTP, GPS; or your own time source.

An OpenCV based library for Android to scan (detect and crop) ID documents or Passports.

An infinite scrolling timeline to pick a date.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes