view pixmaps/gen-inline-pixbufs.sh @ 32481:a1e1527d1cb8 v9.0.1572

patch 9.0.1572: error messages are not translated Commit: https://github.com/vim/vim/commit/50809a45ebde327cb6fdcc727d7466e926aed713 Author: Bram Moolenaar <Bram@vim.org> Date: Sat May 20 16:39:07 2023 +0100 patch 9.0.1572: error messages are not translated Problem: Error messages are not translated. Solution: Add _().
author Bram Moolenaar <Bram@vim.org>
date Sat, 20 May 2023 17:45:03 +0200
parents d4faa2c5211b
children
line wrap: on
line source

#! /bin/sh

prefix=stock_
list=

for file in "$@"; do
    name=$(echo "$file" | sed 's|-|_|g; s|^.*/||; s|\..*$||')
    list="$list $prefix$name $file"
done

gdk-pixbuf-csource --raw --static --build-list $list