Hi,
I changed the language of my Fedora installation from German to English and now I’d like to properly rename folders in my /home/<user>
directory (i.e. Dokumente
to Documents
etc.). How do I do that? I could manually rename them but I assume that this could break settings in other applications and services, right?
What I tried so far:
- I switched the setting
Region & Language > Language
to American English, navigated toLogin Screen (SDDM)
, clicked onApply Plasma Settings
and rebooted. No change. - Based on another post.: I deleted the file
~/.config/user-dirs.dirs
and - after checking~/.config/user-dirs.locale
- recreated it withxdg-user-dirs-update --force
. No change.
Output of localectl
:
System Locale: LANG=en_US.UTF-8
Output of locale
:
LANG=en_DK.UTF-8
LC_CTYPE="en_DK.UTF-8"
LC_NUMERIC=de_AT.UTF-8
LC_TIME=de_AT.UTF-8
LC_COLLATE="en_DK.UTF-8"
LC_MONETARY=de_AT.UTF-8
LC_MESSAGES="en_DK.UTF-8"
LC_PAPER=de_AT.UTF-8
LC_NAME=de_AT.UTF-8
LC_ADDRESS=de_AT.UTF-8
LC_TELEPHONE=de_AT.UTF-8
LC_MEASUREMENT=de_AT.UTF-8
LC_IDENTIFICATION="en_DK.UTF-8"
LC_ALL=
File /etc/xdg/user-dirs.defaults
# Default settings for user directories
#
# The values are relative pathnames from the home directory and
# will be translated on a per-path-element basis into the users locale
DESKTOP=Desktop
DOWNLOAD=Downloads
TEMPLATES=Templates
PUBLICSHARE=Public
DOCUMENTS=Documents
MUSIC=Music
PICTURES=Pictures
VIDEOS=Videos
File ~/.config/user-dirs.locale
:
en_DK
File ~/.config/user-dirs.dirs
(before deletion and after recreation):
# This file is written by xdg-user-dirs-update
#
XDG_DESKTOP_DIR="$HOME/Schreibtisch"
XDG_DOWNLOAD_DIR="$HOME/Downloads"
XDG_TEMPLATES_DIR="$HOME/Vorlagen"
XDG_PUBLICSHARE_DIR="$HOME/Öffentlich"
XDG_DOCUMENTS_DIR="$HOME/Dokumente"
XDG_MUSIC_DIR="$HOME/Musik"
XDG_PICTURES_DIR="$HOME/Bilder"
XDG_VIDEOS_DIR="$HOME/Videos"
Thanks in advance!