The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
12 views

cakephp routes for multilanguage website

I want to make a multilanguage site in cakephp, it is written cake's webiste the way of url structure can be like using specific subdomains like en.example.com, fra.example.com or using a prefix to ...
0
votes
1answer
12 views

Joomla redirects me to english version even if i input german link

I have a site with two languages installed: german as default and english. When i switch the site internatsolling.de to english and type into the adressbar the link: ...
0
votes
1answer
24 views

Lithium Framework: Different URL multi language site

I want to get different URLs for different languages. For example: http://www.example.com/en/users/create http://www.example.com/es/usuarios/crear I have g11n enabled and I tried this: ...
-1
votes
0answers
16 views

vb6 multilanguage support [closed]

Although VB.NET has been around the corner long ago, I still need to finish an application written entirely in VB6. The next stage for that application is to implement multilanguage support over the ...
0
votes
0answers
15 views

Can't change UI language after make setup file

I have a problem. Hope anyone can help me! Thank you very much! In my program, I can change the UI language with this code: private: System::Void ChangeLanguage(String^ lang) { for each ...
0
votes
0answers
12 views

What is a good solution for solr cross language dismax search with stopwords

According to https://issues.apache.org/jira/browse/SOLR-3085 having different stopwords on different fields will cause issues for dismax. I am not certain if this will be the case if the fields are ...
0
votes
2answers
39 views

How do people usually implement multilanguage in Silverlight/XAML?

I'm trying to implement an interface to offer multilanguage support. For the sake simplicity, I will pose an example in XAML: <TextBlock Text="Type" Grid.Column="0" Grid.Row="0" ...
-1
votes
0answers
30 views

best way to implement multilanguage website [duplicate]

I have basic experience in webprogramming (HTML, PHP, JavaScript) so I'm not quite sure how to implement a multilanguage webpage the right way. The website I'm talking about should be available in two ...
0
votes
0answers
7 views

elasticsearch and rails : how to handle multilanguage objet?

I m using rails and elasticsearch. My object "product" have a title and a text in different language and also a price and a category here what im currently doing. it is working, but very slow ...
0
votes
0answers
24 views

Doctrine Translatable how to only fetch records with a translation

I'm using Symfony2 + Doctrine + Translatable from DoctrineExtensions. I have an entity article which has a couple of translatable fields like Title and Content. What is happening now is that I've ...
0
votes
1answer
19 views

Joomla multilanguage website redirect to corresponding page when click on flag

I developed a Joomla! multi language website and working fine. But my problem is Languages are English and Russian When I was on an article in "English Page" and if I press that "Russian Flag" then ...
1
vote
1answer
17 views

Joomla! russian language file ( ini ) issue

I am creating a multilanguage web site in joomla!. English and Russian. When I tried to edit the "languages/ru-RU.ini" and added the following line CALLUS="озвоните нам" When save and reopen the ...
0
votes
1answer
22 views

Joomla component for multiple language

In one of my multi language website, there is a custom component. In which we can create "CategorY" and products under category. It has been implemented in the backend and front end and its working ...
-3
votes
1answer
26 views

How to change the language in multi lang project?

I have a multi language project in VB.NET. How can I change the lang? I have a sample which is working but it doesn't works for my language "Persian". what's the problem? and how to specify the ...
0
votes
1answer
23 views

SOLR 4.1 Language Detection

I'm trying to use LangDetectLanguageIdentifierUpdateProcessorFactory that comes with SOLR to detect languages when indexing documents. It looks pretty straightforward implementation, i have put ...
0
votes
2answers
26 views

Drupal: show Content just if User is on specific Language version

I have a Drupal-Site with 2 different Language versions (DE & EN). They use different Domains. I want to make sure, that German content can only be viewed if the User uses the German domain. So if ...
0
votes
1answer
49 views

VB.NET Multi language program

I want to create a vb.net multi language program. I did it with LOCALIZED=TRUE and changing LANGUAGE to my lang. But the problem is my language is right to left. The problem is that in my language ...
0
votes
1answer
36 views

Language based on HTTP_ACCEPT_LANGUAGE and database languages

I have a web site made in 3 languages, but will (maybe) be expanded. So I created a table on the database where I insert the languages of the Website. As index.php I have a script. If the URI ...
0
votes
0answers
13 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
38 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: ...
0
votes
0answers
14 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
56 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
37 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
30 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
65 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
64 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
21 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
66 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
9 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
72 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
73 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
27 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
53 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
72 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
601 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
62 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
93 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
74 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
31 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
37 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
292 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
84 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
73 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
121 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
54 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
55 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
97 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
59 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
182 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
122 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(); ...

1 2 3 4 5 8