Re: LiveCode Localization?

2019-03-16 Thread Klaus major-k via use-livecode
Hi all,

yep, same here, long ago...

I also created a tool for the tranlators to french and spanish. 
I did the german and english part. :-)

> Am 16.03.2019 um 22:21 schrieb Matthias Rebbe via use-livecode 
> :
> I have one program that supports German and English.
> I have created custom a property set for each language.
> ...
> this allows me to add a new language just by adding another custom property 
> set  with values in that new language.
> I am not sure if this is the best way. At least it is working here for me.
> Regards,
> 
> Matthias
> 
>> Am 16.03.2019 um 21:17 schrieb kee nethery via use-livecode 
>> mailto:use-livecode@lists.runrev.com>>:
>> Does anyone on this list have an app that you localize into other languages 
>> (French, German, Japanese, etc)?
>> If so, I’d like to ask you how you support localization. Want to see if 
>> there is a common method since LiveCode does not support the techniques used 
>> by macOS, iOS, Android, Windows.
>> 
>> Thanks,
>> 
>> Kee Nethery

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major-k.de


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: LiveCode Localization?

2019-03-16 Thread Matthias Rebbe via use-livecode
I have one program that supports German and English.
I have created custom a property set for each language.
 
When the user switches the language for example to German
then i do a
set the custompropertyset of this stack to "de"
and then i call init_gui, which is a custom command that switches all text and 
button labels to the selected language.

For localized answer dialogs i am also using the custom property set.

Answer dialogs would be like this:
answer the ask_target_folder of this stack with "OK" or the btn_cancel of this 
stack


in my German property set 
ask_target_folder has the value "Bitte Zielordner wählen"
btn_cancelis "Abbrechen"
in the English set the values are "Please select target folder" and "cancel"

and so on.

this allows me to add a new language just by adding another custom property set 
 with values in that new language.

I am not sure if this is the best way. At least it is working here for me.

Regards,

Matthias




Matthias Rebbe

free tools for Livecoders:
https://instamaker.dermattes.de 
https://winsignhelper.dermattes.de 

> Am 16.03.2019 um 21:17 schrieb kee nethery via use-livecode 
> mailto:use-livecode@lists.runrev.com>>:
> 
> Does anyone on this list have an app that you localize into other languages 
> (French, German, Japanese, etc)?
> 
> If so, I’d like to ask you how you support localization. Want to see if there 
> is a common method since LiveCode does not support the techniques used by 
> macOS, iOS, Android, Windows.
> 
> Thanks,
> 
> Kee Nethery
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com 
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

LiveCode Localization?

2019-03-16 Thread kee nethery via use-livecode
Does anyone on this list have an app that you localize into other languages 
(French, German, Japanese, etc)?

If so, I’d like to ask you how you support localization. Want to see if there 
is a common method since LiveCode does not support the techniques used by 
macOS, iOS, Android, Windows.

Thanks,

Kee Nethery
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: [off]sublimeText update

2019-03-16 Thread Geoff Canyon via use-livecode
On Sat, Mar 16, 2019 at 9:33 AM Mark Wieder via use-livecode <
use-livecode@lists.runrev.com> wrote:

> On 3/16/19 7:43 AM, AndyP via use-livecode wrote:
> >
> >> But I agree that Navigator having a crap-ton of script-only behaviors is
> >> cumbersome in the IDE if you're showing IDE stacks.
> >
> > At the moment we can hide plugins but only by prefixing the stack name
> with
> > rev. It would be great if we could have another prefix for plugins so
> that
> > they do not get shown in the project browser as standard.
>
> It should be pretty easy to hack the PB to hide plugins when desired...
> If the stack name is among the keys of revIDEPlugins(), ignore it.
>
> Unfortunately, that won't help the Navigator problem.
> Maybe "if the mainstack of stack  is among"...
>

A more general solution would be to have an option to hide SoS in the PB.

As an aside -- why is the scriptonly of stack "revMenuBar" true?? That just
cost me fifteen minutes of debugging Navigator when the only issue was that
Nav was set to not show SoS.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


OT: ji32k7au4a83

2019-03-16 Thread Mark Wieder via use-livecode

Some Saturday Unicode fun:

https://gizmodo.com/why-ji32k7au4a83-is-a-remarkably-common-password-1833045282

--
 Mark Wieder
 ahsoftw...@gmail.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [off]sublimeText update

2019-03-16 Thread Mark Wieder via use-livecode

On 3/16/19 9:33 AM, Mark Wieder via use-livecode wrote:


It should be pretty easy to hack the PB to hide plugins when desired...
If the stack name is among the keys of revIDEPlugins(), ignore it.


Insert the following code before the call to itemise in command 
buildProjectView in stack "revProjectBrowser". I put it at line 472 
(after gathering tStacks) and it did the trick.


   -- ignore plugin stacks
   repeat for each line tStack in the keys of tStacks
  if tStacks[tStack]["short name"] is among the keys of 
revIDEPlugins() then

 delete variable tStacks[tStack]
  end if
   end repeat

...and obviously you'd want a button to toggle this when desired.

Still doesn't help with all those Navigator SO stacks, though.

--
 Mark Wieder
 ahsoftw...@gmail.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


players misplaced & not functional on Windows 10

2019-03-16 Thread Curt Ford via use-livecode

Those grey player bars look like you are using Quicktime for Windows vs
DirectShow? What version of LiveCode are you using?


Hm, these modules were done in LiveCode 7 or 8, I'd need to check. I dragged 
out Player objects for these sounds.

Since they still run fine on my machine (and no other complaints have come in), 
I'd assumed that they didn't need to be updated for the transition from 
QuickTime to DirectShow. Do I need to rework these?

The customer did say he'd updated QuickTime on his PC.

thanks!

Curt

--
Sent from Postbox 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [off]sublimeText update

2019-03-16 Thread Mark Wieder via use-livecode

On 3/16/19 7:43 AM, AndyP via use-livecode wrote:



But I agree that Navigator having a crap-ton of script-only behaviors is
cumbersome in the IDE if you're showing IDE stacks.


At the moment we can hide plugins but only by prefixing the stack name with
rev. It would be great if we could have another prefix for plugins so that
they do not get shown in the project browser as standard.


It should be pretty easy to hack the PB to hide plugins when desired...
If the stack name is among the keys of revIDEPlugins(), ignore it.

Unfortunately, that won't help the Navigator problem.
Maybe "if the mainstack of stack  is among"...

--
 Mark Wieder
 ahsoftw...@gmail.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Save a file on iOS Files app ?

2019-03-16 Thread Ludovic THEBAULT via use-livecode
Hello,

It is possible to save a file on an iPhone which can be accessed by the iOs 
Files app (at least in the On My Phone folder) ?

Thanks !

https://support.apple.com/en-au/HT206481
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [off]sublimeText update

2019-03-16 Thread AndyP via use-livecode


> But I agree that Navigator having a crap-ton of script-only behaviors is
> cumbersome in the IDE if you're showing IDE stacks.

At the moment we can hide plugins but only by prefixing the stack name with
rev. It would be great if we could have another prefix for plugins so that
they do not get shown in the project browser as standard.




-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


App rejected - add parental gate

2019-03-16 Thread William de Smet via use-livecode
Hi there,

An app update was rejected due to the fact I ticked the ‘Kids category’ in the 
initial version of the app. In the app they can share an image outside the app. 
The current quidelines say I have to add a parental gate now. 
Is there anyone who has an example on how to do this?
https://developer.apple.com/app-store/parental-gates/

Greetings, 

William

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode