MusicBrainz Server/Internationalization

From MusicBrainz Wiki
Jump to navigationJump to search

This page is intended for translators of MusicBrainz Server and MusicBrainz Database’s semi-static content, and people interested in the state of MusicBrainz’s internationalization.

Getting started

For a general introduction about translation platform, projects, and languages, please refer to the more general page about translation.

Questions or problems

To discuss about:

For more real-time interactive conversation with community members, you’re welcome to ask in the #musicbrainz IRC channel.

To report problems about:

For more real-time interactive conversation with developers, you’re welcome to ask in the #metabrainz IRC channel.

Note: There used to be a musicbrainz-i18n mailing list, but it is discontinued and has been replaced by the above-mentioned forums (using categories and tags).

Translation components

The following components are available for translation:

Attributes

It contains the names and the descriptions of MusicBrainz entity attributes such as artist’s type and so on.

The context keys are set to the name of the database where the message is stored, for example release_group_primary_type (see diagram).

It is also used by MusicBrainz Picard.

Countries

It contains the names of release countries.

It is also used by MusicBrainz Picard.

Note that country names should be the same as area aliases; See jira:MBS-13140 for follow-up.

Only the documentation Release/Country is not localized for now; See jira:MBS-13109 for follow-up.

Instrument Descriptions

It contains only the descriptions of instruments.

Instruments

It contains only the names of instruments.

Note that:

  • Instrument names should be the same as instrument aliases; See jira:MBS-13141 for follow-up.
  • Context keys are set to their disambiguation comment for now; See jira:MBS-13374 for follow-up.

Languages

It contains the names of languages that can be set for release’s tracklist and work’s lyrics.

Relationship Types

It contains the names, descriptions, and (forward/long/reverse) link phrases of relationship types as well as the names and descriptions of relationship attributes. See also Relationships.

Scripts

It contains the names of scripts that can be set for release’s tracklist.

Note: Because of transliteration a language is not necessarily paired with its usual script/writing system.

Server

It contains the messages shown to users and admins by the MusicBrainz website.

The context keys that allow the same source message to be translated differently in different contexts are of the following forms:

  • A grammatical context such as:
    • The role a word would have in a full sentence, for example “Edit” can be either a noun or a verb.
    • The numeration of a word, for example “Series” can be either singular or plural.
    • The object a word is referring to, for example “Removed” can refer either to ratings or folksonomy tags.
  • A layout context, for example “Preview” can be either in interactive (button, link, menu/item…) or as a header.
  • A database context, for example “Internal/Bot” is a user type.

If you feel that more context is needed, do not hesitate to add source string comments.

Statistics

It contains the events in MusicBrainz timeline and the messages for Database Statistics section of the website UI.

A few context keys are set in the same way as for the above component Server.

Viewing the translations

Some of the more complete translations (generally those over 50% translated) are available on the beta server at https://beta.musicbrainz.org/. The translations do not update automatically (see development beta cycle), but the beta server uses the same database as the main server. If you want to use the beta server all of the time for your editing, click the "Use beta site" link in the footer of https://musicbrainz.org/.

Variables

Translatable messages not only contain plain text or HTML markup, they can also contain replaceable variables. For example:

  • In {entity1} has a BookBrainz page at {entity0}, which is a URL-Work relationship link phrase, there are two entity variables whose name should not be translated, since variable {entity1} will be replaced by a work title and {entity0} by a URL.
  • In link phrases, variables are often used for (optional) attributes, in order to avoid inflating the number of messages. Below are examples with the “additional” attribute:
    • {additional} will be replaced by additional if the “additional” attribute is set, otherwise it will be removed from the text.
    • {additional:additionally} will be replaced by additionally if the “additional” attribute is set, otherwise it will be removed from the text.
    • {additional:an|a} will be replaced by an if the “additional” attribute is set, otherwise it will be replaced by a.
    • {additional:%|regular} will be replaced by additional if the “additional” attribute is set, otherwise it will be replaced by regular.
    • Hence, {additional} can be translated as {additional:aldona} in Esperanto.
  • Note that {instrument} and {vocals} variables are replaced by the specific instrument/vocals name:
    • {instrument:%|instruments} will be replaced by piano (or its translation) if the related instrument is “piano”, otherwise it will be replaced by instruments.
  • In Please {search|try again}:
    • {search|try again} will be replaced with an hyperlink on try again that leads to a search page. The variable identifier search should not be translated, only the link text try again should be translated.

Development

The MusicBrainz Server code is using gettext to provide with automatic internationalization of messages and texts used in the Perl code and templates.

A .pot file is provided with all the strings used in the server. They are in English.

Beyond translation

Current features

Current issues

Most of current issues are tracked through MusicBrainz Server internationalization tickets. Some more long-term goals are not tracked yet.

Possibly the biggest unsolved issue is that there is no way to translate MusicBrainz documentation (jira:MBS-1406). This might involve finding a way to translate wiki content, moving documentation to a different place, or a combination of both.

There are most likely some internationalization issues with fuzzy search in some languages (with agglutinative words or ideographic characters). It mostly requires making proper use of language analysis from Apache Solr.

Ideas up in the air

Artists sort names

Artists currently get a (main) sort name which must be in Latin script, and translations or transliterations are used for artists with non-Latin names. This could eventually be replaced by the already existing alias sort name feature, which already allows any appropriate script for the alias locale; it might require the introduction of either a generic "Latin script" alias locale or a way to indicate Latin transliterations for non-Latin alias locales.

Automatic Transliteration

Automatic transliteration could be done for many languages if no transliterated/translated alias is available. For best results it is necessary to know the language (e.g. cyrillic script is used by several languages; transliteration will be subtly different from Ukrainian or from Azerbaijani - in the case of Chinese, differences between dialects are even more dramatic). For Japanese, where identical kanji can have multiple different readings, the correct transliteration may not be easy to determine at all. In addition, individual artists often may prefer nonstandard transliteration of their names, or may have an "English" name that isn't really a transliteration.