Questions tagged [multilingual]
13 questions
124
votes
12 answers
Effective Strategies for Localization in .NET
I am developing the UI for a .NET MVC application that will require international localization of all content in the near future. I am very familiar with .NET in general but have never had a project that required such a significant focus on…

smartcaveman
- 1,522
- 2
- 11
- 11
11
votes
9 answers
Should a new programmer focus on a single technology until he's proficient at it?
Ok, I've been teaching a buddy how to program for a while now. He's a very fast learner, and he's quite good at programming so far. However, he has one "issue" I keep trying to correct.
He jumps in and starts doing highlevel programming without…

Brandon
- 5,873
- 6
- 37
- 59
9
votes
7 answers
Why aren't there more multi natural language programming languages?
Are there any programming languages that are available and extendable in more than one natural language?
For instance, an english version with a do..while loop, a Spanish version with a hacer..mientas loop, a French version with a faire..pendant and…

Martijn Burger
- 189
- 9
8
votes
2 answers
What is a good pattern for multi language in MongoDb?
Say I want to build a website that support multiple language and use MongoDB datastore. I wonder what is a good approach to have multiple versions of the body and title of an article, one for each language.
Should I keep all versions in the same…

Gabriel Smoljar
- 365
- 1
- 3
- 10
5
votes
4 answers
Dealing with bilingual(spoken language) code?
So I've got to work with this set of code here for a re-write, and it's written by people who speak both English and French.
Here's a snapshot of what I'm talking about (only, about 4000 lines of this)
function…

Incognito
- 3,458
- 2
- 25
- 38
5
votes
1 answer
Hexagonal architecture and translations: how to model it properly?
Imagine a backend service modeled by a hexagonal architecture, where the domain has a class modeling, let us say, a Step of a creative flow that a mobile app will use:
class Step(
val stepId: String,
val description: String
)
The…

Bertuz
- 417
- 4
- 10
5
votes
3 answers
Consequences of "naïve" vs "naive"?
While using IE autocorrect "naive" got transformed to "naïve"!
My regional settings are Au English, from a Unicode search point of view the two are nothing alike. I am not even sure whether there are other characters that are being replaced, but…

jimjim
- 873
- 8
- 12
3
votes
1 answer
Best practices for translatable models in Entity Framework Core 2.1+
I'm building an Entity Framework Core-backed ASP.NET Core RESTful service and I have entities / models such as Product, Document etc with description in multiple languages.
I want to be able to dynamically query Products with relative Documents by…

Salaros
- 131
- 5
2
votes
3 answers
Can applications override the OS keyboard layout?
We have in-house .NET application, which can be used across multiple languages. Lately we received a strange bug that is when our application is being used, user was unable to enter accent characters (Spanish, Win 7) in other applications (ex: MS…

Prashant Cholachagudda
- 223
- 2
- 9
1
vote
1 answer
How to implement a website with translatable articles?
I am developing a website that is supposed to be in at least two languages. I am a skilled developer, but I never had to deal with internationalization.
The owner of the site will create a new article in a language (say English) and link it to a…

SteeveDroz
- 665
- 3
- 8
- 15
0
votes
2 answers
higher order functions equivalent construct in TIOBE top 10 languages
I'm trying to find a language construct equivalent to higher order functions in the top 10 languages from TIOBE index.
Here are my results so far:
C - function pointers
Java - anonymous methods, lambdas
Objective-C - function pointers, selectors,…

Grzegorz Sławecki
- 358
- 1
- 13
0
votes
1 answer
Best practices for deploying multilingual API
I have a hobby project and it looks like there is need to have some API library (which in turn is a wrapper over existing http API) at least for two languages - JavaScript and Python, adding support to Perl would be nice as well.
The question is -…

shabunc
- 2,424
- 2
- 20
- 27
-1
votes
3 answers
Mixing languages in .Net
I know that .Net provides the feature to mix several languages within the same application (there are some constraints of course, but this is not essential). Theoretically, this might be done because the languages supported by .Net do not fully…

superM
- 7,363
- 4
- 29
- 38