The languages tag has no wiki summary.
0
votes
1answer
15 views
Phonegap: Globalization: How to redirect to .html page in this function?
I´ve got this function to alert the preferred language on the device:
function checkLanguage() {
navigator.globalization.getPreferredLanguage(
function (language) {alert('language: ' + ...
0
votes
0answers
9 views
Adding title tags to language folders in Joomla
How can I add a title tag to language folders in Joomla? I use the fallang option to translate all the pages but there is no place to be found to edit the title tag or meta tags of any of these page.
...
0
votes
0answers
9 views
Force user's language in domain directory - .htaccess
the first step for me was to automatically redirect the homepage to the correct user's Accept Language.
So, if the base url is:
www.test.com
the user will be redirect to:
www.test.com/en/
...
0
votes
1answer
31 views
Android app supporting different languages through locale folders vs making stand-alone apps, which is better?
What are the advantages (or disadvantages) of having your android app supporting different languages by using the local folders vs releasing the same app in different languages (other than that it ...
0
votes
0answers
17 views
Windows 1252 based languages?
Need to know which languages are supported by Windows 1252? Is there an authoritative list somewhere?
Not looking for random blogs, in general what are the right sources for such information?
Please ...
0
votes
1answer
19 views
What is an OFFICIAL site from where I can get a list of Languages used by countries? Major/minority?
What is an official site from where I can get a list of Languages used by countries based on real usage data? Please don't point to Wikipedia!
This is a valid question around understanding what ...
0
votes
1answer
27 views
Logic Programming: Solve the term constraint f(X; Y; g(a)) = f(g(Y ); Z; X)
I was not able to attend my programming language class the other day due to my wonderful car crapping out on me. I am working on our homework assignment, I am doing pretty good till I got to this ...
1
vote
1answer
32 views
Goto vs multiple files
I'm creating a MVC framework which should allow multiple languages to be used for the same webpages. Now my original approach was to simply count on a en.php, de.php, fr.php, nl.php to extract ...
-1
votes
0answers
21 views
Opinions and Advice on Programming Languages for Beginner [closed]
I'm looking to create a basic ERP system for a windows computer, it only has to be based on one computer so networking isn't an issue. I'd like to know just which programming language is easiest and ...
-2
votes
0answers
23 views
Unable to see tamil and sinhala fonts in my website [closed]
I have a website which I need to translate in both Sinhala and Tamil.
In the tag I have used the Utf-8 encoding as follows.
And also I have installed Sinhala and Tamil fonts in my pc.Encoding at ...
0
votes
0answers
14 views
How to take complement of a language? [migrated]
I'm stuck on this question about context-free languages and was hoping for some clarification.
L = {a^i b^j c^k | i=j and i=k} is NOT context-free.
Show that its complement IS context-free.
I ...
0
votes
1answer
32 views
How to get chinese simplified language from android device programmitically?
I am doing localization of my app in that I want to know the current language from the device. I am getting current language but I don't how to differentiate Chinese simplified and traditional because ...
1
vote
2answers
69 views
How to force elements in SWT to display in English?
I am Brazilian and I am developing an application that uses SWT. But I need the elements in the SWT to always appear to the user in English. At the moment they appearing in Portuguese for me because ...
1
vote
1answer
43 views
OS regional settings and browser language
I'm working on an asp.net project where we need to localize the UI according to 2 different sources.
The most common scenario is when the user is logged in. In our user management system we know ...
0
votes
4answers
43 views
Language codes reference
Can someone please give me the official reference to the language (country/region) codes. I'm finding different codes for the same language (es_ES, esp_ESP, etc.) and I can't figure out which one is ...
0
votes
1answer
63 views
Best markup language for small articles, letters, resumes
I would like to have a suggestion on the right choice for
a markup language. I need to write some short technical
articles, business letters and a resume.
The desired output are:
PDF
HTML
RTF/DOCX
...
0
votes
0answers
56 views
404 errors in a multilingual magento store
I have a magento store in two languages: Spanish and English.
For example:
When user switches from Spanish to English, it works fine; content switches to that specific lang.
But if I enter an url ...
0
votes
1answer
71 views
Magento language button store view
I've an website in dutch. http://www.domain.com and an german flag button to http://www.domain.com/german.
i have made an store view called german with a local language german.
How do i get to view ...
0
votes
1answer
33 views
Using locale (language+country) in URL for Symfony2
I'm building an international website in Symfony2. My URL looks likes this:
www.test.com/en_HK
This should display english text and prices in HongKong dollars. The english text part is already ...
0
votes
1answer
56 views
Android limit localizations
I am trying to publish an app that is currently only configured for English. When I upload my app to the Play store, it says localization for 'Default + 49 languages'? How do I disable all but ...
1
vote
1answer
49 views
nsis language selection items and special characters
I am using nsis - MUI to create installer. I am facing a problem that when I do something like this:
!insertmacro MUI_LANGUAGE "Czech"
!insertmacro MUI_LANGUAGE "Slovak"
... in selection of ...
4
votes
0answers
39 views
when( expression ){ do stuff }
Does anybody know in which programming language can you use this:
when( expression ){ do stuff }
It is supposed to register the expression and the code block in some array which in turn is parsed ...
0
votes
1answer
121 views
Android: changing activity language
I have a problem with changing all text in one activity of my application... i am using this code to change language:
else if (LANGUAGE.equals("Russian"))
{
Resources res = ...
-1
votes
1answer
40 views
Pumping Lemma's Condition 3 concept
I'm following one of the examples from my textbook on the Pumping Lemma:
Let C = {w | w has an equal number of 0s and 1s}
Condition 3 stipulates: |xy| <= p
If |xy| <= p, then y must consist ...
0
votes
0answers
60 views
PHP / MySQL search with foreign languages
I have some texts in a mysql database, that are in several languages, including portuguese and russian, and have a lot of special characters, like á, à, ç, ã.
Is there a way for me to create a search ...
0
votes
3answers
226 views
Languages, countries and cities database
Is there that kind of database but with all languages, countries and cities?
languages
id, name, iso
1, English, en_GB
2, Български, bg_BG
countries
id, name, lang, iso
1, United Kingdom, en_GB, GBR
...
3
votes
3answers
67 views
Simplest nested block parser
I want to write a simple parser for a nested block syntax, just hierarchical plain-text. For example:
Some regular text.
This is outputted as-is, foo{but THIS
is inside a foo block}.
bar{
Blocks ...
0
votes
1answer
87 views
Can I override Joomla's date format from within the template folder or its language.ini file?
I know you can change the default date format of Joomla by wditing the en-GB.ini file in the languages folder.
Is there anyway to override this by using my templates language file?
Ive tried pasting
...
0
votes
0answers
52 views
How can I print a string in all languages in magento
How can I print a string in all languages in magento?
For a string in csv files like $this->__('String'); but in all languages
Product attribute like $product['name']
somithing simples than ...
1
vote
0answers
91 views
What is the best multilingual library for apphooks in django-cms?
I am looking for the best solution to solve the problem of multilingual webpage with django-cms. Django-cms has build in multilangs and is working cool. Now I prepare my own app. I am going to connect ...
0
votes
2answers
132 views
Using language code (en) or full culture code (e.g. en-AU)?
I have an application in C#/WPF which is internationalized (resource string for some languages).
Currently I am using the following codes for the resource files: default.resx, de-DE, fr-FR, es-ES, ...
1
vote
2answers
205 views
Recursive Definition for Language
Suppose I have a language consisting of just balanced parentheses, i.e., {ε, ( ), ( ( ) ), ( ) ( ), ( ( ( ) ) ), ( ( ) ( ) ), ... } and I'm asked to write a recursive definition for it. Could somebody ...
0
votes
7answers
135 views
iOS localization: How to share and work with translators?
Often in our iOS projects we have multiple supported languages. They are stored in standard .string files that look something like:
/* News section */
"news_title" = "News";
"ok_button_title" = "Ok";
...
0
votes
1answer
30 views
c:\programme and c:\program files in SCCM environment
When installing a specific software (cheops) via SCCM to german PC's we are facing an issue with the language of the operating system.
It seems that the installpackage is searching for a map which ...
1
vote
1answer
58 views
Visual Studio 2012 Program Languages
When I installed visual studio 2012 Ultimate edition I didn't saw to ask me a question about what programming languages I prefer to install. It automatically installed all languages (C#,C++...). Is it ...
-1
votes
2answers
130 views
php.ini Language Settings [closed]
Is there any way to change language settings in php.ini dynamically?
We can set other settings in php.ini dynamically, e.g:
ini_set('display_errors','1');
I saw in php.ini that language is set ...
1
vote
1answer
84 views
How to use a specific locale?
Background
Getting strings in Android is done automatically, based on the user's choice of which locale to set for the device. However, sometimes the user might want to have a locale to be different ...
1
vote
1answer
140 views
Allow user to choose default store/language in Magento CE 1.7.0.2
We want to allow the user to choose a 'default' or 'preferred' store (or language) and set this in their account.
So that when a French user logs into the site, the French store is served as their ...
2
votes
4answers
108 views
Bad Idea to learn two languages at once? [closed]
I'm currently in an AP computer science class in high school, but we are pretty much only going to learn Java the whole year. I am really interested in learning Python, but would it be bad idea to ...
1
vote
1answer
100 views
Github project languages (linguist) information not visible?
Normally you can see on top right what your project exists of, how much % PHP, how much % JS etc..
On my current project this is not visible, I have tried removing and adding it again on Github but ...
0
votes
0answers
66 views
Xcode updating MySQL through phpScript in foreign languages
I've a code in xcode which runs a web link to execute phpScripts.
NSString *strURL = [NSString stringWithFormat:@"http://www.???.com/1.php?customerid=你好"];
// to execute php code
NSData *dataURL = ...
0
votes
0answers
177 views
Text to speech converter from English to Indian languages
I am planning to develop an application on Indian culture and history. In this application we are planning to have voice support. Currently we have all the text in English, that should be converted to ...
0
votes
0answers
64 views
google tts sevlet
I need to generate some sound files in languages other than english, and I found this code
http://alexsleat.co.uk/2011/11/14/python-making-use-of-googles-text-to-speech-translation-tool/
It works ...
-3
votes
3answers
49 views
How organized language settings in Android [closed]
I want to organized language settings in my Android application,but i don't know how can do it, show device language settings and choose language
from there? or choose from application ?
-2
votes
1answer
23 views
How can I do a for example a image link to change the website content from one language to another? [closed]
I have made a website in html/css which I then used in a blank theme in wordpress since the one Im doing ti for wanted an easy way to edit the content later. In html/css I could just use a image link ...
0
votes
1answer
128 views
verifier of addition… not-regular, but is it context-free? [closed]
How can I show that the following language is (not) context-free? The argument that it's not regular goes as follows.
I suspect this language to be context-free... The reason why I think this, is ...
0
votes
1answer
51 views
Changing and Saving Custom Culture After Its Registered
I recently registered a few custom cultures in ASP.NET and was asked later by our client to change something about one of them. For example, I registered en-EU which is a blanket "English for European ...
0
votes
1answer
61 views
Is this a context-free language? [closed]
Is this a context-free language? L = { xy(xR)(yR) | x,y is an element of {0,1}* }
xR means the reverse of x.
I think this is a context free language. Since PDA accepts CFL, I'm trying to draw a PDA ...
0
votes
1answer
73 views
Context-free language not closed under intersection
I found this solution on Wikipedia. Shouldn't it say: j>n≥ 0
Because the intersection are elements that are common in both languages.
Consider the languages L1 and L2 defined by ...
0
votes
1answer
41 views
Changing language of database content in Joomla
I have a database with a lot of information and I display it on my site. Now I need to translate this info into other languages. I have thought of using joomfish but to my knowledge joomfish is only ...


