Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
57 views

Semantically marking up translations

I'm in the process of marking up an historical manuscript which has been translated from German into English. On the web page I will be providing both languages side by side. Is there an accepted way ...
3
votes
1answer
175 views

What <html lang=“”> attribute value should I use for a mixed language page?

I usually use this: <html lang="en">. However, I am working on a website that will use two languages and mix them up sometimes in the same sentence or heading. How would the above code look in ...
2
votes
2answers
290 views

TinyMCE not sending value

Hi All It's the first time I've used Tiny Mce and I have a problem. Please Help The editor works fine in editing but when I click submit nothing is sent from the textarea input Here is the code: ...
2
votes
2answers
57 views

How to make an efficient use of the xml:lang attribue?

While reading XML specs I saw that XML has two builtin attributes, one of them being xml:lang. I understood that let user define the language of the current block but how can it be used by XML ...
1
vote
1answer
48 views

Create ?lang=ua in htaccess (homepage)

I have. Htaccess, which displays only the main page and language ?lang=ua style. I want to redirect (using code 301) asks site.com to site.com/?lang=ua with RewriteEngine. site.com => ...
1
vote
2answers
399 views

Graph Simplification Algorithm Advice Needed

I have a need to take a 2D graph of n points and reduce it the r points (where r is a specific number less than n). For example, I may have two datasets with slightly different number of total points, ...
1
vote
2answers
184 views

What's the difference between the lang attribute and the <meta http-equiv=“Content-Language” content=“en-US”> tag?

I was wondering what's the significance of using the "lang" attribute and how that differs from using the meta "Content-Language" tag? Consider the following code: <html lang="en"> ...
1
vote
1answer
227 views

XHTML meta description and keywords with lang attribute

Is it ok to have this kind of meta declarations in the head section of a XHTML document? <meta name="keywords" lang="en" content="..."/> <meta name="description" lang="en" content="..."/> ...
0
votes
1answer
29 views

Change Month Value in FormDate CodeIgniter Library

I'm using additional Form Date library of CodeIgniter. But, I wanna change the month value, for example: January change to Januari February change to Febuari March change to Maret and so on.... In ...
0
votes
1answer
44 views

How to redirect in .htaccess? (multilanguage)

I have a multilingual website and. Htaccess, which displays all the pages. I want to redirect (using code 301) asks with RewriteEngine. For example: site.com?lang=ru => site.com (remove `lang=ru` ...
0
votes
3answers
84 views

How to make multiple language website with including appropriate files on PHP?

I have 2 languages in my website. I want to include appropriate file according to selected language. For example, <a href='index.php?lang=en'>English</a> and <a ...
0
votes
0answers
41 views

android Assistances with java.lang.OutOfMemoryError sqlite

Looking for assistance completing an android app which will handle about a million entries. I used this tutorial which lead me to the source code here [EmployeeDirectory6-1.0.apk] but i am getting ...
0
votes
5answers
51 views

How to concatenate a string and a variable into a constant name?

I have a constant like define("EMPLOYEE_NAME_ID","employee"); and a variable $code = EMPLOYEE; now i want to print like below <?php echo $code.NAME_ID; ?> But this prints only ...
0
votes
2answers
88 views

how to change the value of <span lang> in javascript?

i have an element in html as shown below. <tr><td class="HELPTEXT"><span lang="HLPMTXT1" id="HLPMTXT1"></span></td></tr> i want to change the value of lang ...
0
votes
1answer
101 views

ie7 lang attribute compatibility

I am setting the lang attribute on my html tag and body tag. I then explicitly use it in my css for targeting css at particular languages. This works fine in IE8, IE9, FF & Chrome and works a ...
0
votes
2answers
117 views

response header support for Content-Language

Does IE7 and Google Chrome support the response header "Content-Language"? I am setting this in my application in to the response header for page requests. The header is recognised in ie8, ie9 and FF4 ...
0
votes
1answer
39 views

XHTML lang and xml:lang value

When specifying the lang or xml:lang for the <html> tag do I need to use en-us or en is enough? Thank you.
0
votes
1answer
100 views

server side detect input string lang [closed]

Possible Duplicate: detect language from string in PHP how can i detect the lang of the user input string? for exemple the string: בדיקה בלה בלה heb אחד שתיים שלוש will give the result: ...
0
votes
1answer
427 views

Routing problem with Kohana 3.1.2

My Kohana route wont work correctly The route: Route::set('admin', '((<lang>/)admin(/<controller>(/<action>(/<id>))))', array( 'lang' => '(de|en)', ...
0
votes
1answer
1k views

StringEscapeUtils.unescapeHtml() problem in unescaping HTML entities for Android

This is what I'm doing: public static String htmlToText(String inString) { String noentity=StringEscapeUtils.unescapeHtml(inString); return noentity; } This is where I'm invoking it: String html = ...
0
votes
2answers
158 views

Why aren't return types considered in Java method overloads?

Why return type of a method is not considered in method overloading ? Can somebody explain , how compiler checks for overloaded methods ?
0
votes
4answers
102 views

How to maintain the previously selected language (I used php arrays and ?lang=) after clicking a link?

I have the following code: <html> <head> <title><?php echo $GLOBALS['L']['title']; ?></title> </head> <body> ...