S Sergey_New Well-Known Member Licensed User Longtime User Feb 19, 2020 #1 Hello! I am creating an application in 2 languages. How to make the application name when minimized displayed in the selected language?
Hello! I am creating an application in 2 languages. How to make the application name when minimized displayed in the selected language?
Erel B4X founder Staff member Licensed User Longtime User Feb 19, 2020 #2 Are you creating a single application with two languages or two applications? Upvote 0
S Sergey_New Well-Known Member Licensed User Longtime User Feb 19, 2020 #3 Одно приложение с двумя языками. Upvote 0
Erel B4X founder Staff member Licensed User Longtime User Feb 19, 2020 #4 You should use Google translate: One application with two languages. 1. Localizator: https://www.b4x.com/android/forum/t...localize-your-b4x-applications.68751/#content 2. Localize the application name: https://www.b4x.com/android/forum/threads/app-name-localize.70234/ Upvote 0
You should use Google translate: One application with two languages. 1. Localizator: https://www.b4x.com/android/forum/t...localize-your-b4x-applications.68751/#content 2. Localize the application name: https://www.b4x.com/android/forum/threads/app-name-localize.70234/
S Sergey_New Well-Known Member Licensed User Longtime User Feb 19, 2020 #5 The application already uses a localizer to translate content. Added by B4X: #ApplicationLabel: $string/app_label I must use CreateResource to set app_label or can write it in a program, for example:: B4X: app_label = Starter.loc.Localize (Starter.ProgName) Last edited: Feb 19, 2020 Upvote 0
The application already uses a localizer to translate content. Added by B4X: #ApplicationLabel: $string/app_label I must use CreateResource to set app_label or can write it in a program, for example:: B4X: app_label = Starter.loc.Localize (Starter.ProgName)
Erel B4X founder Staff member Licensed User Longtime User Feb 19, 2020 #6 The application label cannot be changed at runtime. You must use resources as explained in the second link. Upvote 0
The application label cannot be changed at runtime. You must use resources as explained in the second link.
S Sergey_New Well-Known Member Licensed User Longtime User Feb 19, 2020 #7 Thanks, Erel! I will do so. Upvote 0