Turn off language localization on VLC player in Kubuntu
I'm using Kubuntu 18.10, and VLC (3.0.4) which was installed by default.
The problem I have is that I cannot change the language of the interface to English. When I searched for "how to change the language of VLC" I found screenshots of preferences window where there is drop down option to select the language.
However here is my a screenshot of preferences, in this awful mixture of grammatically incorrect Croatian and English, and the option to select the language is missing:
Please help, the software is completely unusable like this.
kubuntu vlc language
add a comment |
I'm using Kubuntu 18.10, and VLC (3.0.4) which was installed by default.
The problem I have is that I cannot change the language of the interface to English. When I searched for "how to change the language of VLC" I found screenshots of preferences window where there is drop down option to select the language.
However here is my a screenshot of preferences, in this awful mixture of grammatically incorrect Croatian and English, and the option to select the language is missing:
Please help, the software is completely unusable like this.
kubuntu vlc language
Probably you have the VLC snap then. Can you please confirm by letting us know the output of the terminal command:which vlc
– Gunnar Hjalmarsson
Dec 17 '18 at 19:59
1
which vlc
outputs/usr/bin/vlc
. It's the one that came with Kubuntu installation.
– Kresimir
Dec 17 '18 at 20:23
2
Ok, then you have the .deb package VLC. You already have two answers below. :)
– Gunnar Hjalmarsson
Dec 17 '18 at 20:43
Thanks for your help! :)
– Kresimir
Dec 17 '18 at 20:45
add a comment |
I'm using Kubuntu 18.10, and VLC (3.0.4) which was installed by default.
The problem I have is that I cannot change the language of the interface to English. When I searched for "how to change the language of VLC" I found screenshots of preferences window where there is drop down option to select the language.
However here is my a screenshot of preferences, in this awful mixture of grammatically incorrect Croatian and English, and the option to select the language is missing:
Please help, the software is completely unusable like this.
kubuntu vlc language
I'm using Kubuntu 18.10, and VLC (3.0.4) which was installed by default.
The problem I have is that I cannot change the language of the interface to English. When I searched for "how to change the language of VLC" I found screenshots of preferences window where there is drop down option to select the language.
However here is my a screenshot of preferences, in this awful mixture of grammatically incorrect Croatian and English, and the option to select the language is missing:
Please help, the software is completely unusable like this.
kubuntu vlc language
kubuntu vlc language
edited Dec 17 '18 at 20:25
Kresimir
asked Dec 17 '18 at 18:59
KresimirKresimir
1055
1055
Probably you have the VLC snap then. Can you please confirm by letting us know the output of the terminal command:which vlc
– Gunnar Hjalmarsson
Dec 17 '18 at 19:59
1
which vlc
outputs/usr/bin/vlc
. It's the one that came with Kubuntu installation.
– Kresimir
Dec 17 '18 at 20:23
2
Ok, then you have the .deb package VLC. You already have two answers below. :)
– Gunnar Hjalmarsson
Dec 17 '18 at 20:43
Thanks for your help! :)
– Kresimir
Dec 17 '18 at 20:45
add a comment |
Probably you have the VLC snap then. Can you please confirm by letting us know the output of the terminal command:which vlc
– Gunnar Hjalmarsson
Dec 17 '18 at 19:59
1
which vlc
outputs/usr/bin/vlc
. It's the one that came with Kubuntu installation.
– Kresimir
Dec 17 '18 at 20:23
2
Ok, then you have the .deb package VLC. You already have two answers below. :)
– Gunnar Hjalmarsson
Dec 17 '18 at 20:43
Thanks for your help! :)
– Kresimir
Dec 17 '18 at 20:45
Probably you have the VLC snap then. Can you please confirm by letting us know the output of the terminal command:
which vlc
– Gunnar Hjalmarsson
Dec 17 '18 at 19:59
Probably you have the VLC snap then. Can you please confirm by letting us know the output of the terminal command:
which vlc
– Gunnar Hjalmarsson
Dec 17 '18 at 19:59
1
1
which vlc
outputs /usr/bin/vlc
. It's the one that came with Kubuntu installation.– Kresimir
Dec 17 '18 at 20:23
which vlc
outputs /usr/bin/vlc
. It's the one that came with Kubuntu installation.– Kresimir
Dec 17 '18 at 20:23
2
2
Ok, then you have the .deb package VLC. You already have two answers below. :)
– Gunnar Hjalmarsson
Dec 17 '18 at 20:43
Ok, then you have the .deb package VLC. You already have two answers below. :)
– Gunnar Hjalmarsson
Dec 17 '18 at 20:43
Thanks for your help! :)
– Kresimir
Dec 17 '18 at 20:45
Thanks for your help! :)
– Kresimir
Dec 17 '18 at 20:45
add a comment |
2 Answers
2
active
oldest
votes
I don't think there is a language selector in VLC for Linux. It must have been a screenshot from Windows. You can still change the locale of a program, by launching it like so: LANGUAGE=en programname
.
For example, LANGUAGE=en vlc
.
In case you want to it permanent, edit vlc launcher /usr/share/applications/vlc.desktop
, and add env LANGUAGE=en
to the Exec ...
line to make it look like this:
`Exec=env LANGUAGE=en /usr/bin/vlc --started-from-file %U
`
+1. It works for me. Also the shorterLANG=C vlc
works for me.
– sudodus
Dec 17 '18 at 20:37
1
It should be noted that changes to the.desktop
file are overwritten at next upgrade of the VLC package. In my answer I point at a more sustainable method which survives package upgrades.
– Gunnar Hjalmarsson
Dec 17 '18 at 20:54
2
Making a copy of vlc.desktop in~/.local/share/applications
and editing that file would also survive package upgrades.
– DK Bose
Dec 18 '18 at 1:49
add a comment |
This is one way to make VLC start in English:
- Create the file
~/bin/vlc
Give it this contents:
#!/bin/sh
export LANGUAGE=en
exec /usr/bin/vlc $@
Make it executable:
chmod +x ~/bin/vlc
Possibly you need to relogin before it starts working.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1102626%2fturn-off-language-localization-on-vlc-player-in-kubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
I don't think there is a language selector in VLC for Linux. It must have been a screenshot from Windows. You can still change the locale of a program, by launching it like so: LANGUAGE=en programname
.
For example, LANGUAGE=en vlc
.
In case you want to it permanent, edit vlc launcher /usr/share/applications/vlc.desktop
, and add env LANGUAGE=en
to the Exec ...
line to make it look like this:
`Exec=env LANGUAGE=en /usr/bin/vlc --started-from-file %U
`
+1. It works for me. Also the shorterLANG=C vlc
works for me.
– sudodus
Dec 17 '18 at 20:37
1
It should be noted that changes to the.desktop
file are overwritten at next upgrade of the VLC package. In my answer I point at a more sustainable method which survives package upgrades.
– Gunnar Hjalmarsson
Dec 17 '18 at 20:54
2
Making a copy of vlc.desktop in~/.local/share/applications
and editing that file would also survive package upgrades.
– DK Bose
Dec 18 '18 at 1:49
add a comment |
I don't think there is a language selector in VLC for Linux. It must have been a screenshot from Windows. You can still change the locale of a program, by launching it like so: LANGUAGE=en programname
.
For example, LANGUAGE=en vlc
.
In case you want to it permanent, edit vlc launcher /usr/share/applications/vlc.desktop
, and add env LANGUAGE=en
to the Exec ...
line to make it look like this:
`Exec=env LANGUAGE=en /usr/bin/vlc --started-from-file %U
`
+1. It works for me. Also the shorterLANG=C vlc
works for me.
– sudodus
Dec 17 '18 at 20:37
1
It should be noted that changes to the.desktop
file are overwritten at next upgrade of the VLC package. In my answer I point at a more sustainable method which survives package upgrades.
– Gunnar Hjalmarsson
Dec 17 '18 at 20:54
2
Making a copy of vlc.desktop in~/.local/share/applications
and editing that file would also survive package upgrades.
– DK Bose
Dec 18 '18 at 1:49
add a comment |
I don't think there is a language selector in VLC for Linux. It must have been a screenshot from Windows. You can still change the locale of a program, by launching it like so: LANGUAGE=en programname
.
For example, LANGUAGE=en vlc
.
In case you want to it permanent, edit vlc launcher /usr/share/applications/vlc.desktop
, and add env LANGUAGE=en
to the Exec ...
line to make it look like this:
`Exec=env LANGUAGE=en /usr/bin/vlc --started-from-file %U
`
I don't think there is a language selector in VLC for Linux. It must have been a screenshot from Windows. You can still change the locale of a program, by launching it like so: LANGUAGE=en programname
.
For example, LANGUAGE=en vlc
.
In case you want to it permanent, edit vlc launcher /usr/share/applications/vlc.desktop
, and add env LANGUAGE=en
to the Exec ...
line to make it look like this:
`Exec=env LANGUAGE=en /usr/bin/vlc --started-from-file %U
`
edited Dec 18 '18 at 16:34
answered Dec 17 '18 at 20:33
mikewhatevermikewhatever
23.6k76785
23.6k76785
+1. It works for me. Also the shorterLANG=C vlc
works for me.
– sudodus
Dec 17 '18 at 20:37
1
It should be noted that changes to the.desktop
file are overwritten at next upgrade of the VLC package. In my answer I point at a more sustainable method which survives package upgrades.
– Gunnar Hjalmarsson
Dec 17 '18 at 20:54
2
Making a copy of vlc.desktop in~/.local/share/applications
and editing that file would also survive package upgrades.
– DK Bose
Dec 18 '18 at 1:49
add a comment |
+1. It works for me. Also the shorterLANG=C vlc
works for me.
– sudodus
Dec 17 '18 at 20:37
1
It should be noted that changes to the.desktop
file are overwritten at next upgrade of the VLC package. In my answer I point at a more sustainable method which survives package upgrades.
– Gunnar Hjalmarsson
Dec 17 '18 at 20:54
2
Making a copy of vlc.desktop in~/.local/share/applications
and editing that file would also survive package upgrades.
– DK Bose
Dec 18 '18 at 1:49
+1. It works for me. Also the shorter
LANG=C vlc
works for me.– sudodus
Dec 17 '18 at 20:37
+1. It works for me. Also the shorter
LANG=C vlc
works for me.– sudodus
Dec 17 '18 at 20:37
1
1
It should be noted that changes to the
.desktop
file are overwritten at next upgrade of the VLC package. In my answer I point at a more sustainable method which survives package upgrades.– Gunnar Hjalmarsson
Dec 17 '18 at 20:54
It should be noted that changes to the
.desktop
file are overwritten at next upgrade of the VLC package. In my answer I point at a more sustainable method which survives package upgrades.– Gunnar Hjalmarsson
Dec 17 '18 at 20:54
2
2
Making a copy of vlc.desktop in
~/.local/share/applications
and editing that file would also survive package upgrades.– DK Bose
Dec 18 '18 at 1:49
Making a copy of vlc.desktop in
~/.local/share/applications
and editing that file would also survive package upgrades.– DK Bose
Dec 18 '18 at 1:49
add a comment |
This is one way to make VLC start in English:
- Create the file
~/bin/vlc
Give it this contents:
#!/bin/sh
export LANGUAGE=en
exec /usr/bin/vlc $@
Make it executable:
chmod +x ~/bin/vlc
Possibly you need to relogin before it starts working.
add a comment |
This is one way to make VLC start in English:
- Create the file
~/bin/vlc
Give it this contents:
#!/bin/sh
export LANGUAGE=en
exec /usr/bin/vlc $@
Make it executable:
chmod +x ~/bin/vlc
Possibly you need to relogin before it starts working.
add a comment |
This is one way to make VLC start in English:
- Create the file
~/bin/vlc
Give it this contents:
#!/bin/sh
export LANGUAGE=en
exec /usr/bin/vlc $@
Make it executable:
chmod +x ~/bin/vlc
Possibly you need to relogin before it starts working.
This is one way to make VLC start in English:
- Create the file
~/bin/vlc
Give it this contents:
#!/bin/sh
export LANGUAGE=en
exec /usr/bin/vlc $@
Make it executable:
chmod +x ~/bin/vlc
Possibly you need to relogin before it starts working.
answered Dec 17 '18 at 20:41
Gunnar HjalmarssonGunnar Hjalmarsson
19.1k23261
19.1k23261
add a comment |
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f1102626%2fturn-off-language-localization-on-vlc-player-in-kubuntu%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Probably you have the VLC snap then. Can you please confirm by letting us know the output of the terminal command:
which vlc
– Gunnar Hjalmarsson
Dec 17 '18 at 19:59
1
which vlc
outputs/usr/bin/vlc
. It's the one that came with Kubuntu installation.– Kresimir
Dec 17 '18 at 20:23
2
Ok, then you have the .deb package VLC. You already have two answers below. :)
– Gunnar Hjalmarsson
Dec 17 '18 at 20:43
Thanks for your help! :)
– Kresimir
Dec 17 '18 at 20:45