summaryrefslogtreecommitdiffstats
path: root/src/gui_photon.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2023-05-20 16:39:07 +0100
committerBram Moolenaar <Bram@vim.org>2023-05-20 16:39:07 +0100
commit50809a45ebde327cb6fdcc727d7466e926aed713 (patch)
tree90faf3ed7dd23ddd65c47460102cd6e1e0d832d0 /src/gui_photon.c
parent79cdf026f1b8a16298ee73be497c4bd5f3458cde (diff)
patch 9.0.1572: error messages are not translatedv9.0.1572
Problem: Error messages are not translated. Solution: Add _().
Diffstat (limited to 'src/gui_photon.c')
-rw-r--r--src/gui_photon.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui_photon.c b/src/gui_photon.c
index 0eb1282e06..b987e9b8a8 100644
--- a/src/gui_photon.c
+++ b/src/gui_photon.c
@@ -2956,7 +2956,7 @@ gui_mch_get_font(char_u *vim_font_name, int report_error)
}
if (report_error)
- semsg(e_unknown_font_str, vim_font_name);
+ semsg(_(e_unknown_font_str), vim_font_name);
return FAIL;
}