Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for LC_MESSAGES (0.14 sec)

  1. hack/update-translations.sh

        echo "Failed to update template.pot"
        exit 1
      fi
    fi
    
    if [[ "${fix_translations}" == "true" ]]; then
      echo "Fixing .po files"
      kube::util::ensure-temp-dir
      for PO_FILE in "${TRANSLATIONS}"/kubectl/*/LC_MESSAGES/k8s.po; do
        TMP="${KUBE_TEMP}/fix.po"
        if [[ "${PO_FILE}" =~ .*/default/.* || "${PO_FILE}" =~ .*/en_US/.*  ]]; then
          # mark obsolete, and set default values for english translations
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 22 03:48:42 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/toolchain/internal/metadata/AbstractMetadataProvider.java

        public SearchResult<T> getCompilerMetaData(List<File> path, Action<? super CompilerExecSpec> configureAction) {
            DefaultCompilerExecSpec execSpec = new DefaultCompilerExecSpec();
            execSpec.environment("LC_MESSAGES", "C");
            configureAction.execute(execSpec);
    
            List<String> allArgs = ImmutableList.<String>builder().addAll(execSpec.args).addAll(compilerArgs()).build();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 13:16:50 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.13.md

    - Added a new container based image for running e2e tests ([#69368](https://github.com/kubernetes/kubernetes/pull/69368), [@dims](https://github.com/dims))
    - The `LC_ALL` and `LC_MESSAGES` env vars can now be used to set desired locale for `kubectl` while keeping `LANG` unchanged. ([#69500](https://github.com/kubernetes/kubernetes/pull/69500), [@m1kola](https://github.com/m1kola))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 273.1K bytes
    - Viewed (0)
Back to top