Skip to content

Commit

Permalink
Mark previously missed string as translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
plm committed Feb 26, 2022
1 parent 8e8bec2 commit c584bf2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gnubgstock.c
Expand Up @@ -19,7 +19,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
* $Id: gnubgstock.c,v 1.12 2019/11/05 22:01:25 plm Exp $
* $Id: gnubgstock.c,v 1.13 2022/02/26 20:33:59 plm Exp $
*/

#include "config.h"
Expand Down Expand Up @@ -56,7 +56,7 @@ icon_set_from_resource_path(GtkIconSet * set,
pixbuf = gdk_pixbuf_new_from_resource(resource_path, &pixbuf_error);

if (pixbuf == NULL) {
g_print("Failed to create pixbuf from %s, %s\n", resource_path, pixbuf_error->message);
g_print(_("Failed to create pixbuf from %s, %s\n"), resource_path, pixbuf_error->message);
g_assert_not_reached();
return;
}
Expand Down

0 comments on commit c584bf2

Please sign in to comment.