The tag has no wiki summary.

learn more… | top users | synonyms

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
0answers
22 views

Custom categories and custom tags in custom post type

Seeking help from all WordPress gurus. I'm stuck on following error. How to display and filter custom categories and custom tags in custom post type? I have registered custom post type: ...
-1
votes
0answers
9 views

Directory Structure for a Multilingual Project

I'm starting to create a project that includes source code in multiple languages (3+), and I need to think about how to structure my project directories. I've looked at Maven's Standard Directory ...
0
votes
0answers
37 views

Multi language Android application

I'm creating a multi language android application and I made folders with different languages and everything works perfect. The only issue that troubles me is when user selects a different language I ...
0
votes
0answers
26 views

Javascript error with IE, about mult-language localization

I have a javascript which works perfectly in ff,chrome and IE9/10, however i get error in IE6/7/8/9. SCRIPT438: Object doesn't support this property or method Localize.html, line 38 character 25 ...
0
votes
0answers
18 views

wpf application with multilingual support

Simple form with some information. One drop down to select language like below: <controls:LanguageControl Width="155" HorizontalAlignment="Left" Margin="0,0,0,5" SelectedCultureInfo="{Binding ...
0
votes
1answer
33 views

Adding a new multilingual domain site to google webmaster tools

I am trying to add a new website with multilingual domain to a google webmaster tools. Domain map is following: www.domain.com (stands for english version) it.domain.com de.domain.com es.domain.com ...
0
votes
1answer
47 views

How could I get just one result from i18n table? (CakePHP)

I query all row from a table and I get all row at all languages... For example: GalleryCategoriesController.php <?php class GalleryCategoriesController extends AppController    {    function ...
0
votes
1answer
9 views

Wordpress in subdir multilanguage url

I have my wordpress installed in a subdir website.com/blog I used qtranslate to translate my wordpress blog from dutch to french and english so my url's are website.com/blog/nl, ...
1
vote
1answer
62 views

PHP multilanguage proplem

I have some code to change my language depend on session here is my php code function make_lang(){ session_start(); if(isset($_POST['a'])){ $_SESSION['a']=true; unset ...
-1
votes
1answer
8 views

Change part of URL [closed]

I have a website on joomla with 3 languages: mysite/ru mysite/az mysite/en when I open article in ./ru link changes to mysite/ru/article1. After that I neet to change language by clicking on EN ...
0
votes
1answer
42 views

Setting sys_language_overlay = hideNonTranslated hides translated content elements on root page (inversed behaviour)

I've setup a multilanguage (german [default], english, japanese) TYPO3 project with Templavoila and want to hide non translated content elements. Therefore I defined sys_language_overlay = ...
2
votes
2answers
57 views

Is this the correct aproach for multilingual data in a database?

I'm currently developing a website where certain dynamic data must be available in various languages. The languages for now are three but the idea is to add more in the future. Imagine this first ...
1
vote
0answers
23 views

International website (English and German) with GETTEXT and VIRTUAL subdirectories in the URL

I have a website which uses two languages: English and German. For now, we use a cookie that stores the user's preferred language (en/de) and sets the language of GETTEXT() accordingly: ...
0
votes
2answers
43 views

Using large text files in different languages in Android

In the app I'm building, I'm using multiple languages. It's easy to add a different language into an app by adding a new folder (for example: values-fr) and adding a new strings.xml file in there. But ...
0
votes
0answers
54 views

Multi language basic php website without subdomain or sub-folders

Right now I have a website which uses two languages English and German. There is no sub folders or sub-domains used. Correct language is shown using a $_Session[lang], and gettext function. ...
2
votes
1answer
254 views

Magento language switch store code Urls

I have Magento 1.7.0.2 My problem is in language switch from store views. I have enabled mod_rewrite, and enabled store code to urls. But language switch doesn't work correctly. Example : ...
1
vote
1answer
49 views

Smarty 3 multilanguage plugin

I've used Smarty to create a multilanguage site and I would to connect a small admin panel to handle texts in different languages. I found this Smarty function ...
3
votes
1answer
80 views

Arabic language support for Timeago jQuery plugin

We're going to build multilingual web application and we considering to use Yarp's Timeago jQuery plugin. But we want to support Arabic Language in our application. And as you may know the Arabic ...
0
votes
0answers
53 views

Language Switcher not displaying for register users (Joomla 3)

I have set up in Joomla 3 a 2 language site, English and Spanish. I have my language switcher set up and working properly for all NON register users (Access Public). The problem appears when a ...
0
votes
0answers
23 views

how change language file via web in codeigniter?

i am beginner on codeigniter, and i use MX module for hmvc in CI, and i create companies module. this module has multi language. his directory is like this: controllers js models views language ...
1
vote
0answers
36 views

codeigniter language in url [duplicate]

Hello guys I need help with my codeigniter project. I'm trying to make a website but I need multy-languages in url. So I need something like: site-name.com/ =====> this should use the default ...
3
votes
2answers
199 views

Zend Framework 2 passing variable to models

I'm currently developing a multilangual website. For the multilangual part i use translator / poedit. I store the selected language in session. It works fine. Module.php: public function ...
1
vote
5answers
79 views

Making (desktop) software whose components are programmed in different languages?

Can the different components of a desktop software be programmed in different languages ? For example, a software called MultiProg consists of components Comp1, Comp2, Comp3 etc. All components ...
0
votes
3answers
64 views

Using multiple languages on one HTML page

My simple question is, how can I use multiple languages in one HTML page? Something like <div> <p>This text is in English</p> </div> <div> <p>This text in ...
0
votes
0answers
77 views

.htaccess language redirect

Now I have .htaccess like: RewriteRule ^([a-zA-Z0-9-]+)$ index.php?page=$1 RewriteRule ^([a-zA-Z0-9-]+)/([a-zA-Z0-9-]+)$ index.php?page=$1&subpage=$2 and this make me addresses ...
0
votes
2answers
40 views

session can't be set in a class function

I tried to build a multi-language site, but the problem the variable can't be set after clicking the submit button for choosing language: <form action="<?php $aradown->make_lang(); ?>" ...
0
votes
1answer
43 views

CSS font stack names in multiple character sets

E.g. for Korean, the "Dotum" font name is also written as "돋움". Is it necessary to use a font stack such as the following: body { font-family: "돋움", "Dotum", sans-serif; } This would presumably ...
3
votes
3answers
89 views

Are there cons of my technique for designing multilingual websites

I am designing a multilingual website and it supports both ltr and rtl. Language: I stored languages in arrays like this $lan=array('browse'=>'تصفح','add'=>'إضافة','signin'=>'تسجيل دخول'); ...
0
votes
0answers
54 views

Are there any potential issues with the way I load a language file in CodeIgniter?

I created a controller that would load a language file for a page based on the language in the URL. For example: localhost/ would have a null $language value so the default English language file ...
0
votes
1answer
127 views

Multilanguage database design approach

I am trying to implement a multilanguage system and I came across a topic on stackoverflow that I didnt get the idea. The full question can be found here The option 3 in the question, It has a ...
0
votes
1answer
96 views

Google and multi-language website with same URL

I'm building a website with multi-language support using geoplugin php class to detect country code. Here is my geolocate code: //GEOLOCATE $geoplugin = new geoPlugin(); $geoplugin->locate(); ...
4
votes
2answers
73 views

Catalyst best way for url language prefix?

I have already done all the I18N and GetText things in multiple languages for an existing site. For selecting one language or another it seems that prefixing urls with path parts like ...
0
votes
0answers
24 views

Oracle multilanguage view optimalisation

I have a view which is basically something like this: CREATE VIEW VW_EMPLOYER AS SELECT L.LANG, E.ID, GET_NAME(L.LANG, E.NAME) AS NAME, A.STREET, A.CITY FROM EMPLOYER E CROSS JOIN LANG L ...
0
votes
0answers
16 views

Need help for wordpress widget

i'm have installed wordpress widget Transposh successively (http://wordpress.org/extend/plugins/transposh-translation-filter-for-wordpress/) it doesn't translate all the page some text remains in ...
0
votes
1answer
115 views

Is it possible to change the UI of MSI installer according to the local system language?

Since the default language for the WiX installler UI is english, I'd like to change to another langue like chinese or something. Is there a way can I do?
0
votes
1answer
101 views

htaccess language redirect

I've been looking for the answers here but I can't get what I need. I want to redirect pages looking to the 'l' language variable. The site is in spanish and english. So I need a pattern like this: ...
0
votes
1answer
180 views

Resource(.resx) file does not change on IIS

I have multilanguage web using resource files. I had them in App_GlobalResources directory and I want the users can modify resx files (language) by yourself. It works fine on my development computer ...
0
votes
1answer
77 views

How to read different entries from database for multilanguage site with Codeigniter?

I couldn't find answer for this question... I'm making a multilanguage web site based on Codeigniter and MySQL database. For the static language texts I'm using the built in lang function and ...
0
votes
0answers
21 views

Is there a protocol behind those apps that support dozens of programming languages?

I took a look at this site ideone and realised that many applications offer support to, e.g., write programs in many different languages. Dozens of languages, including brainf??k. I think it is highly ...
-1
votes
2answers
112 views

joomla multilanguage website redirect to http:/// only in IE in home

I made a website with joomla 2.5, and it's multilingual (native feature) It works great on every browsers and mobile device. But on IE only the website redirect to a blank page with address bar ...
0
votes
1answer
151 views

how to develope a marathi language website?

I want to develop a website which is in marathi language. The website is dynamic means user can give his feedback or comment in marathi ? I want to develope website in html5 with php. I used tag ...
1
vote
0answers
43 views

How can I tokenize numbers from multiple locales with Java's breakIterator?

I want Java's breakIterator to treat both ,123 and .123 as the decimal number 123/1000 (i.e. accept both . and , as a decimal point), accept both . and , as thousands separators, etc. Can this be ...
1
vote
1answer
99 views

Multi-Language Site: Cookie or URL Element

I am making a dynamic multi language web site with CodeIgniter. How should I make the navigation between the languages? The most elegant solution is to use cookies when the visitor clicks the flags, ...
0
votes
0answers
84 views

How to save and Retrive mathematical content in RDLC Report

I am a bit new to Windows Forms development. I need to show maths equation in RDLC Report with Multilanguage support. So basically I can split it into two questions but since both are interlinked I ...
0
votes
1answer
32 views

How to get utf8-encoded text from restfb

i'm trying to fetch all posts and comments from a facebook's page using RestFB. All works, but when i try to fetch a russian page, that has particular chars, storing the result in mysql, every rows ...
0
votes
0answers
78 views

php multilanguage filename upload

im trying to allow users to upload theyr pictures to the website and show them by theyr original file names. in english everything goes as planned, but when i try to upload a file who is in a ...
0
votes
0answers
61 views

Any way to implement a font-family list in GDI or GDI+ or other method in WIN32

In CSS or WPF, we usually define a font family list like this. font-family: Verdana, "Microsoft Yahei", sans-serif; When a CHAR can't display with the first font, It will use the second font... But ...
0
votes
1answer
92 views

Syncing custom fields between 2 languages (with WPML)

I'm using WPML (Wordpress multilanguage plugin) with custom post and fields (with Advanced Custom Fields plugin) and I have this "issue": I've a custom post with a custom field (text), I enter text in ...
0
votes
2answers
70 views

Assign specific language in multi-language ios app

I have a multi-language ios app, it can switch to correct language depends on ios system location. I want to know, for example, the system language is english, how do I assign app language to German ...

1 2 3 4 5 7