118 lines
3.3 KiB
Bash
118 lines
3.3 KiB
Bash
# Simple black-and-white theme
|
|
|
|
# Pointers
|
|
# ========
|
|
# Sign that indicates the existence of audio files
|
|
FORMAT_LOCAL="|>"
|
|
# Pointer to the track currently playing (playlist)
|
|
FORMAT_CURRENT="->"
|
|
|
|
# Input prompts
|
|
# =============
|
|
# General search prompt
|
|
SEARCH_PROMPT="search> "
|
|
# Prompt that takes an artist name as argument
|
|
ARTIST_PROMPT="%s > "
|
|
# Prompt that takes an artist name and a release name as arguments (in that
|
|
# order)
|
|
FULL_PROMPT="%s > %s > "
|
|
|
|
# Visual representation of current mode
|
|
# =====================================
|
|
# Sign to indicate `normal` mode
|
|
PROMPT_NORMAL="n "
|
|
# Sign to indicate `insert` mode
|
|
PROMPT_INSERT="i "
|
|
|
|
# Artist view
|
|
# ===========
|
|
# Artist string for persons
|
|
AV_PERSON="<<name>>"
|
|
# Artist string for groups
|
|
AV_GROUP="<<name>>"
|
|
# Artist disambiguation string
|
|
AV_DISAMBIGUATION=" (<<disambiguation>>)"
|
|
|
|
# Release-group view
|
|
# ==================
|
|
# Default release group string
|
|
RGV_RELEASE="<<title>>"
|
|
# Release group string if the artist name differs from the current artist
|
|
RGV_RELEASE_W_ARTIST="<<title>> by <<artist>>"
|
|
# Year of the release group
|
|
RGV_YEAR="[<<year>>]"
|
|
|
|
# Release-group types
|
|
# ===================
|
|
# Album
|
|
FORMAT_TYPE_ALBUM="[LP]"
|
|
# EP
|
|
FORMAT_TYPE_EP="[EP]"
|
|
# Single
|
|
FORMAT_TYPE_SINGLE="[single]"
|
|
# Broadcast
|
|
FORMAT_TYPE_BROADCAST="[broadcast]"
|
|
# Other
|
|
FORMAT_TYPE_OTHER="[other]"
|
|
# Flag to indicate that the given release group has associated secondary types.
|
|
FORMAT_TYPE_HAS_SECONDARY="%s xx"
|
|
# Style to represent secondary types (takes one %s placeholder)
|
|
FORMAT_TYPE_SECONDARY="(%s)"
|
|
# Secondary types
|
|
FORMAT_TYPE_SECONDARY_COMPILATION="compilation"
|
|
FORMAT_TYPE_SECONDARY_SOUNDTRACK="OST"
|
|
FORMAT_TYPE_SECONDARY_SPOKENWORD="spokenword"
|
|
FORMAT_TYPE_SECONDARY_INTERVIEW="interview"
|
|
FORMAT_TYPE_SECONDARY_AUDIOBOOK="book"
|
|
FORMAT_TYPE_SECONDARY_AUDIODRAMA="drama"
|
|
FORMAT_TYPE_SECONDARY_LIVE="live"
|
|
FORMAT_TYPE_SECONDARY_REMIX="remix"
|
|
FORMAT_TYPE_SECONDARY_DJMIX="DJ"
|
|
FORMAT_TYPE_SECONDARY_MIXTAPE="mixtape"
|
|
FORMAT_TYPE_SECONDARY_DEMO="demo"
|
|
FORMAT_TYPE_SECONDARY_FIELDREC="field rec"
|
|
|
|
# Artist Preview
|
|
# ==============
|
|
# Main preview format. Takes two %s placeholder. The first is for the artist
|
|
# biography. The second for the life span.
|
|
APV_FORMAT="\n\n%s\n\n%s"
|
|
# Specification of a date
|
|
APV_DATE="%s"
|
|
# Specification of a place
|
|
APV_PLACE="%s"
|
|
# Specification of a date and a place (in that order)
|
|
APV_DATEPLACE="%s in %s"
|
|
# String to represent when/where a person is born
|
|
APV_BORN="Born: %s"
|
|
# String to represent when/where a person died
|
|
APV_DIED="Died: %s"
|
|
|
|
# Release view
|
|
# ============
|
|
# Format of a string that represents a release.
|
|
RV_FORMAT="<<status>>\t<<tracks>> tracks\t<<media>>\t<<year>>\t<<country>>\t<<label>>"
|
|
# Additional string to display the release title and artist name
|
|
RV_TITLE_ARTIST="<<artist>> - <<title>>"
|
|
# Additional string to display the release title
|
|
RV_TITLE="<<title>>"
|
|
# Additional string to display the artist
|
|
RV_ARTIST="<<artist>>"
|
|
|
|
# Release Status
|
|
# ==============
|
|
FORMAT_STATUS_OFFICIAL="official"
|
|
FORMAT_STATUS_PROMO="promo"
|
|
FORMAT_STATUS_BOOTLEG="bootleg"
|
|
FORMAT_STATUS_PSEUDO="psuedo"
|
|
FORMAT_STATUS_WITHDRAWN="withdrawn"
|
|
FORMAT_STATUS_EXPUNGED="expunged"
|
|
FORMAT_STATUS_CANCELLED="cancelled"
|
|
|
|
# Recording view
|
|
# ==============
|
|
# Format of a track in a release
|
|
REC_FORMAT="<<med>>\t<<nr>>\t<<title>>\t<<artist>>\t<<duration>>"
|
|
# Format of a track in the playlist
|
|
REC_FORMAT_NO_NUMBER="<<title>>\t<<artist>>\t<<duration>>"
|