|
|
|
|
@@ -46,10 +46,10 @@ class UserProfileGroups():
|
|
|
|
|
SettingDesc("artist_locale", N_("Translation locale")),
|
|
|
|
|
SettingDesc("release_ars", N_("Use release relationships")),
|
|
|
|
|
SettingDesc("track_ars", N_("Use track relationships")),
|
|
|
|
|
SettingDesc("convert_punctuation", N_("Convert Unicode to ASCII")),
|
|
|
|
|
SettingDesc("standardize_artists", N_("Standardize artist names")),
|
|
|
|
|
SettingDesc("standardize_instruments", N_("Standardize instrument names")),
|
|
|
|
|
SettingDesc("guess_tracknumber_and_title", N_("Guess track number and title")),
|
|
|
|
|
SettingDesc("convert_punctuation", N_("Convert Unicode punctuation characters to ASCII")),
|
|
|
|
|
SettingDesc("standardize_artists", N_("Use standardized artist names")),
|
|
|
|
|
SettingDesc("standardize_instruments", N_("Use standardized instrument and vocal credits")),
|
|
|
|
|
SettingDesc("guess_tracknumber_and_title", N_("Guess track number and title from filename if empty")),
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@@ -57,37 +57,37 @@ class UserProfileGroups():
|
|
|
|
|
"title": N_("Tags"),
|
|
|
|
|
"settings": [
|
|
|
|
|
SettingDesc("dont_write_tags", N_("Don't write tags")),
|
|
|
|
|
SettingDesc("preserve_timestamps", N_("Preserve timestamps")),
|
|
|
|
|
SettingDesc("preserve_timestamps", N_("Preserve timestamps of tagged files")),
|
|
|
|
|
SettingDesc("clear_existing_tags", N_("Clear existing tags")),
|
|
|
|
|
SettingDesc("preserve_images", N_("Preserve images")),
|
|
|
|
|
SettingDesc("remove_id3_from_flac", N_("Remove ID3 from FLAC")),
|
|
|
|
|
SettingDesc("remove_ape_from_mp3", N_("Remove APE from MP3")),
|
|
|
|
|
SettingDesc("preserve_images", N_("Keep embedded images when clearing tags")),
|
|
|
|
|
SettingDesc("remove_id3_from_flac", N_("Remove ID3 tags from FLAC files")),
|
|
|
|
|
SettingDesc("remove_ape_from_mp3", N_("Remove APEv2 tags from MP3 files")),
|
|
|
|
|
SettingDesc("preserved_tags", N_("Preserved tags list")),
|
|
|
|
|
SettingDesc("aac_save_ape", N_("Save APEv2 to AAC")),
|
|
|
|
|
SettingDesc("remove_ape_from_aac", N_("Remove APE from AAC")),
|
|
|
|
|
SettingDesc("ac3_save_ape", N_("Save APEv2 to AC3")),
|
|
|
|
|
SettingDesc("remove_ape_from_ac3", N_("Remove APE from AC3")),
|
|
|
|
|
SettingDesc("aac_save_ape", N_("Save APEv2 tags to AAC")),
|
|
|
|
|
SettingDesc("remove_ape_from_aac", N_("Remove APEv2 tags from AAC files")),
|
|
|
|
|
SettingDesc("ac3_save_ape", N_("Save APEv2 tags to AC3")),
|
|
|
|
|
SettingDesc("remove_ape_from_ac3", N_("Remove APEv2tags from AC3 files")),
|
|
|
|
|
SettingDesc("write_id3v1", N_("Write ID3v1 tags")),
|
|
|
|
|
SettingDesc("write_id3v23", N_("Write ID3v2.3 tags")),
|
|
|
|
|
SettingDesc("id3v2_encoding", N_("ID3v2.3 Text Encoding")),
|
|
|
|
|
SettingDesc("id3v2_encoding", N_("ID3v2 text encoding")),
|
|
|
|
|
SettingDesc("id3v23_join_with", N_("ID3v2.3 join character")),
|
|
|
|
|
SettingDesc("itunes_compatible_grouping", N_("iTunes compatible grouping")),
|
|
|
|
|
SettingDesc("write_wave_riff_info", N_("Write WAVE RIFF info")),
|
|
|
|
|
SettingDesc("remove_wave_riff_info", N_("Remove WAVE RIFF info")),
|
|
|
|
|
SettingDesc("wave_riff_info_encoding", N_("RIFF text encoding")),
|
|
|
|
|
SettingDesc("itunes_compatible_grouping", N_("iTunes compatible grouping and work")),
|
|
|
|
|
SettingDesc("write_wave_riff_info", N_("Write RIFF INFO tags to WAVE files")),
|
|
|
|
|
SettingDesc("remove_wave_riff_info", N_("Remove existing RIFF INFO tags from WAVE files")),
|
|
|
|
|
SettingDesc("wave_riff_info_encoding", N_("RIFF INFO text encoding")),
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
SETTINGS_GROUPS["coverart"] = {
|
|
|
|
|
"title": N_("Cover Art"),
|
|
|
|
|
"settings": [
|
|
|
|
|
SettingDesc("save_images_to_tags", N_("Save images to tags")),
|
|
|
|
|
SettingDesc("embed_only_one_front_image", N_("Embed only one front image")),
|
|
|
|
|
SettingDesc("save_images_to_files", N_("Save images to files")),
|
|
|
|
|
SettingDesc("save_images_to_tags", N_("Embed cover images into tags")),
|
|
|
|
|
SettingDesc("embed_only_one_front_image", N_("Embed only a single front image")),
|
|
|
|
|
SettingDesc("save_images_to_files", N_("Save cover images as separate files")),
|
|
|
|
|
SettingDesc("cover_image_filename", N_("File name for images")),
|
|
|
|
|
SettingDesc("save_images_overwrite", N_("Overwrite existing image files")),
|
|
|
|
|
SettingDesc("save_only_one_front_image", N_("Save only one front image")),
|
|
|
|
|
SettingDesc("image_type_as_filename", N_("Image type as file name")),
|
|
|
|
|
SettingDesc("save_only_one_front_image", N_("Save only a single front image as separate file")),
|
|
|
|
|
SettingDesc("image_type_as_filename", N_("Always use the primary image type as the file name for non-front images")),
|
|
|
|
|
SettingDesc("ca_providers", N_("Cover art providers")),
|
|
|
|
|
],
|
|
|
|
|
}
|
|
|
|
|
|