I am in the process of localizing my application. Everything works well except one issue. According to the Apple docs, if you have a specific region, it should be selected first and then to the more general. So for instance, in my project, I have:
en.lproj
Localization.strings
en_US.lproj
Localization.strings
While I am set to US English in my settings, Monotouch is picking the en.lproj before en_US.lproj when it should be the other way around. Is this a bug or is this not supported?
Thanks,
Ray
Thanks, that link helped. And I re-read the docs and it does not work that way I thought on iOS, only OSX. So iOS only looks at locale only eg. en.lproj.
Related
I recently updated shopware to 6.4.18 and noticed that all custom snippets be issued empty on the storefront.
So instead of the value only the snippet name is given.
Does somebody know the cause and how to fix it?
EDIT:
I ask the support team of the plugin manufacturer of the theme I'm using.
They already know the bug and wrote a documentation for this bug:
https://themedocs-sw6.zenit.design/faq/fehler/textbausteine-zeigen-technischen-namen
Let us have the solution posted here:
https://developer.shopware.com/docs/guides/plugins/themes/theme-configuration#config-inheritance
ChildThemes should have set configInheritance in the theme.json.
I hope you can help me.
After upgrading the payone extension from 3.1.8 to the newest 3.5.5 and checking the correctness of payone configuration with its menu 'export configuration' I detect that the creditcard is not listed under the status mapping group though the mapping for it is set. But the credicard data itself is exported anyway under the clearingtypes. I reinstalled the extension, some times, but allways the same effect. There is also no log entry.
The creditcard is the clearing type I have ordered by payone, the other, which are listed under status_mapping not.
Here is the part of the .xml export.
<status_mapping> !!! no creditcard listet under status mapping!!!
<vor/>
<cod/>
<elv/>
<rec/>
<sb/>
<wlt/>
</status_mapping>
<payment_creditcard>
<min_validity_period></min_validity_period>
</payment_creditcard>
</global>
<clearingtypes>
<cc>
<title><![CDATA[Kreditkarte]]></title>
<id>3</id>
best regards
Christian
I marked that as a bug internally. However, I don't think this is a classic question for Stackoverflow. Feel free to add an issue at https://github.com/PAYONE-GmbH/magento-1 the next time something like this arises :)
I'll check whether I can pin down the issue and will get back to you.
Best,
Florian
Technical Partner Manager #Payone
I have been trying to develop in MonoDevelop for about a week now, my boss asked me to get WEPopOver working on a particular project. I have seen the github documentation and looked at examples, but can't seem to get a working model for MonoDevelop.
Can ANYONE give me an example of how to use this WEPopOver in MonoDevelop?
thank you in advance!
Rick
Did you see/try the sample solution that comes with the bindings ?
If so then you'll need to be more explicit (edit your question) about what you want to do with it.
There seems to be a lot of information on screen capture on failure when using Selenium-webdriver however a lot of it differs and all (of what i've tried) does not work. I am testing on iOS and android using Capybara/web-driver. I understand that when using Capybara it has the capabilities of screen capture by accessing the underlying selenium-driver for example page.driver.browser.save_screenshot('file.png').
An example of my code:
After do |scenario|
if(scenario.failed?)
page.driver.browser_save_screenshot("html-report/#{scenario._id_}.png")
embed("#{scenario._id_}.png", "image/png", "SCREENSHOT")
end
end
The above correctly creates the HTML report however the screenshot is missing. From doing a bit of research it seems like it may be because I am using a scenario outline and its not supported? At least thats what ive found with Watir-webdriver.
Has anyone actually managed to get this working? Any help appreciated, thanks.
I have similar code working with a Scenario and am about to refactor to a Scenario Outline (so I haven't tried a solution I found here). HTH.
I'm trying to use the code posted here: http://seanho.posterous.com/monotouch-first-attempt-arkit-c-version
however - when i try to overlay it on a camera - it seems to behave really strangely.
I'm guess that it's because the camera view only does portrait?
Has anyone succesfully used this? Or maybe know's how to get this working?
Cheers
w://
The code on the blog entry you linked to is ported from the open source iPhone ARKit: http://www.iphonear.org/
iPhone ARKit was updated after this port was posted (to quote the author "My version of code may be outdated"). You may want to examine the source on github to pick up any changes/fixes.