This commit is contained in:
Valeria Fadeeva 2023-11-17 20:57:51 +05:00
parent c73a7a1ba1
commit 9e4351a0a1
17 changed files with 34 additions and 29 deletions

15
.github/FUNDING.yml vendored
View File

@ -1,15 +0,0 @@
# These are supported funding model platforms
#github: # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
#patreon: # Replace with a single Patreon username
#open_collective: # Replace with a single Open Collective username
#ko_fi: # Replace with a single Ko-fi username
#tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
#community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
#liberapay: # Replace with a single Liberapay username
#issuehunt: # Replace with a single IssueHunt username
#otechie: # Replace with a single Otechie username
#custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
#github: [Valeria-Fadeeva]
custom: ["https://www.tinkoff.ru/rm/fadeeva.valeriya96/9bLRi79066", "https://yoomoney.ru/to/4100115921160758", "https://qiwi.com/n/VALERIAFADEEVA", "valeria.fadeeva.me"]

View File

@ -21,7 +21,7 @@
<entry name="appNameFormat" type="Int">
<label>The format used in the display of application names: 0 = NameOnly, 1 = GenericNameOnly, 2 = NameAndGenericName, 3 = GenericNameAndName</label>
<default>0</default>
<default>2</default>
</entry>
<entry name="recentOrdering" type="Int">
@ -30,21 +30,21 @@
</entry>
<entry name="favoriteApps" type="StringList">
<label>List of general favorites. Supported values are menu id's (usually .desktop file names), special URLs that expand into default applications (e.g. preferred://browser), document URLs and KPeople contact URIs.</label>
<default>preferred://browser,kontact.desktop,systemsettings.desktop,org.kde.dolphin.desktop,ktp-contactlist.desktop,org.kde.kate.desktop,org.kde.discover</default>
<default>org.kde.dolphin.desktop,systemsettings.desktop,org.manjaro.pamac.manager.desktop,ar.com.softwareperonista.Pace.desktop,melawy-welcome.desktop,firefoxdeveloperedition.desktop,firefox.desktop,org.kde.kate.desktop,skypeforlinux.desktop,org.telegram.desktop.desktop,discord.desktop,Zoom.desktop,brave-browser.desktop,google-chrome.desktop,gimp.desktop,org.inkscape.Inkscape.desktop,com.obsproject.Studio.desktop,code.desktop,org.kde.kleopatra.desktop,org.kde.konsole.desktop,org.kde.kcalc.desktop,blender.desktop,gparted.desktop,org.kde.partitionmanager.desktop,org.kde.kinfocenter.desktop</default>
</entry>
<entry name="favoriteSystemActions" type="StringList">
<label>List of system action favorites.</label>
<default>logout,reboot,shutdown</default>
<default>logout,lock-screen,reboot,shutdown</default>
</entry>
<entry name="favoritesPortedToKAstats" type="Bool">
<label>Are the favorites ported to use KActivitiesStats to allow per-activity favorites</label>
<default>false</default>
<default>true</default>
</entry>
<entry name="hiddenApplications" type="StringList">
<label>List of menu id's (usually .desktop file names) of apps that should not be shown in the menu.</label>
<default></default>
</entry>
<entry name="showRecentApps" type="Bool">
<label>Whether to show the "Recent Applications" category.</label>
<default>true</default>
@ -64,7 +64,7 @@
<entry name="replaceExplorerIcon" type="Bool">
<default>false</default>
</entry>
<entry name="useExtraRunners" type="Bool">
<label>Whether to use additional KRunner plugins to produce results in the search.</label>
<default>true</default>
@ -75,25 +75,25 @@
</entry>
<entry name="menuPosition" type="Int">
<label>The position of the menu: 0 = Center, 1 = Edge, 2 = Auto</label>
<default>0</default>
<default>2</default>
</entry>
<entry name="favGridModel" type="Int">
<label>The model for favorite grid / pinned apps grid: 0 = Favourite apps, 1 = Recent apps, 2 = Recent Documents</label>
<default>0</default>
</entry>
<entry name="numberColumns" type="Int">
<default>6</default>
<default>7</default>
</entry>
<entry name="numberRows" type="Int">
<default>3</default>
<default>4</default>
</entry>
<entry name="recentGridModel" type="Int">
<label>The model for recent item grid / recommended grid: 0 = Recent Documents, 1 = Recent apps, 2 = Favourite apps, 3 = None</label>
<default>0</default>
<default>1</default>
</entry>
<entry name="showDescription" type="Bool">
<label>Whether to show the description for app and search items or not.</label>
<default>false</default>
<default>true</default>
</entry>
<entry name="alwaysShowSearchBar" type="Bool">
<label>Whether to always show the search bar on top of the menu or not.</label>
@ -133,7 +133,7 @@
</entry>
<entry name="downIconsLock" type="Bool">
<label>Shows or hides the Lock button on the bottom bar.</label>
<default>false</default>
<default>true</default>
</entry>
<entry name="downIconsPowerOptions" type="Bool">
<label>Shows or hides the Power Options button on the bottom bar.</label>
@ -148,10 +148,10 @@
</entry>
<entry name="reduceIconSizeFooter" type="Bool">
<label>Whether to reduce icon size for footer to match consistency.</label>
<default>false</default>
<default>true</default>
</entry>
<entry name="reduceIconSizeUserProfile" type="Bool">
<default>true</default>
<default>false</default>
</entry>
</group>
</kcfg>

0
com.github.adhec.Menu11/translate/build Executable file → Normal file
View File

View File

@ -0,0 +1,18 @@
#!/bin/sh
echo "[build] Compiling messages"
catalogs=`find . -name '*.po'`
for cat in $catalogs; do
echo "$cat"
catLocale=`basename ${cat%.*}`
msgfmt -o "${catLocale}.mo" "$cat"
installPath="../contents/locale/${catLocale}/LC_MESSAGES/${projectName}.mo"
echo "[build] Install to ${installPath}"
mkdir -p "$(dirname "$installPath")"
mv "${catLocale}.mo" "${installPath}"
done
echo "[build] Done building messages"

View File

@ -1,3 +1,5 @@
#!/bin/bash
git add . && git commit -m "Update" && git push
echo "Ready"