Skip to content

Commit

Permalink
Fix: update de-DE translation
Browse files Browse the repository at this point in the history
  • Loading branch information
jcorporation committed Feb 24, 2020
1 parent f7a5877 commit 77cfe04
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions src/i18n/de-DE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1292,3 +1292,6 @@ Bilder

Notifications are blocked
Benachrichtungen sind nicht erlaubt

Adding timer failed
Timers konnte nicht hinzugefügt werden
4 changes: 2 additions & 2 deletions src/mpd_client/mpd_client_browse.c
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ sds mpd_client_put_fingerprint(t_mpd_state *mpd_state, sds buffer, sds method, i
const char *uri)
{
if (validate_songuri(uri) == false) {
buffer = jsonrpc_respond_message(buffer, method, request_id, "Invalid uri", true);
buffer = jsonrpc_respond_message(buffer, method, request_id, "Invalid URI", true);
return buffer;
}

Expand Down Expand Up @@ -56,7 +56,7 @@ sds mpd_client_put_songdetails(t_mpd_state *mpd_state, sds buffer, sds method, i
const char *uri)
{
if (validate_songuri(uri) == false) {
buffer = jsonrpc_respond_message(buffer, method, request_id, "Invalid uri", true);
buffer = jsonrpc_respond_message(buffer, method, request_id, "Invalid URI", true);
return buffer;
}

Expand Down
2 changes: 1 addition & 1 deletion src/web_server/web_server_albumart.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ bool handle_albumart(struct mg_connection *nc, struct http_message *hm, t_mg_use
return true;
}
if (validate_uri(uri_decoded) == false) {
LOG_ERROR("Invalid uri: %s", uri_decoded);
LOG_ERROR("Invalid URI: %s", uri_decoded);
serve_na_image(nc, hm);
sdsfree(uri_decoded);
return true;
Expand Down

0 comments on commit 77cfe04

Please sign in to comment.