I need help.
I know, that my English is very poor and so I need advise,
as I have well write this texts:
Code: Select all
class LoadPlaylistByFilter(eg.ActionClass):
name = "Load Playlist by Filter"
description = "Loads a MediaMonkey playlist defined by filter (SQL query)."
class text:
radioboxMode = "Select songs ..."
modeAnd = "Corresponding to all rules (AND)"
modeOr = "Corresponding to at least one rule (OR)"
equal = "is equal with"
notEqual = "is not equal with"
greater = "is greater than"
greatOrEqual = "is greater or equal with"
less = "is less than"
lowerOrEqual = "is less or equal with"
beforeLess = "was before under" #RELATIVE TO 'NOW' MODE
beforeMore = "was before more than" #RELATIVE TO 'NOW' MODE
startsWith = "starts with"
notStartsWith = "not starts with"
endsWith = "ends with"
notEndsWith = "not ends with"
includes = "includes"
notIncludes = "not includes"
isEmpty = "is empty"
isNotEmpty = "is not empty"
order1 = "Found songs sort in"
asc = "ascending"
desc = "descending"
order2 = "order by:"
limit1 = "Select only the first"
limit2 = "entry"
filterName = "Filter name:"
found = "%s songs found" #RESULT
noFound = "no song found" #RESULT
Pako