ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
31 lines
1.3 KiB
Bash
Executable File
31 lines
1.3 KiB
Bash
Executable File
#! /bin/sh
|
|
# Script for fetching the PO files, produced by translators, from a
|
|
# translations project's site on the internet, to the current directory.
|
|
#
|
|
# Copyright (C) 2025 Free Software Foundation, Inc.
|
|
# This file is free software; the Free Software Foundation gives
|
|
# unlimited permission to use, copy, distribute, and modify it.
|
|
|
|
# Usage: ./fetch-po
|
|
#
|
|
# This script is invoked from two locations:
|
|
# 1. From the script that fetches auxiliary files that are omitted from
|
|
# the version control repository of this package, typically called
|
|
# 'autopull.sh' or 'bootstrap --pull' or similar.
|
|
# 2. From the Makefile in the po/ directory, target 'fetch-po'.
|
|
|
|
# There are two ways to implement this script:
|
|
#
|
|
# In packages whose translators commit their PO files directly into
|
|
# the version control of the package, or where a translations project's
|
|
# daemon does this automatically on behalf of the translators, this
|
|
# script does not do anything.
|
|
echo "fetch-po: Nothing to do."
|
|
#
|
|
# In packages where the translations are collected by a translation project,
|
|
# use a 'po-fetch' invocation.
|
|
# See 'po-fetch --help' for the possible arguments.
|
|
# If you want the fetched PO files to be added into the version control of
|
|
# the package, use the option '--git'; otherwise, don't use this option.
|
|
#po-fetch ...
|