iOS Question Change context menu of clipboard

schimanski

Well-Known Member
Licensed User
Longtime User
Is it possible to change the context menu of the clipboard-events? I want to use it in german:

paste = einfügen
select all = alles markieren

etc.
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
You can change the app localization with this line:
B4X:
#PlistExtra: <key>CFBundleLocalizations</key><array><string>German</string></array>

SS-2016-01-28_09.04.48.png
 
Upvote 0

JanPRO

Well-Known Member
Licensed User
Longtime User
Hi,
I guess you want to fit the context language to the device language:
you can add more than one languages to the array:
B4X:
#PlistExtra: <key>CFBundleLocalizations</key><array><string>German</string><string>French</string><string>Italian</string></array>
I have made some tests:
iOS will automatically choose the correct language, if the array doesn't contain the device language, but "English", english will be chosen. If the array doesn't contain the device language and "English", the first entry of the array will be choosen.

Jan
 
Upvote 0
Top