Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for LC_MESSAGES (0.09 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)
Back to top