#!/bin/bash # This file is part of the LibreOffice project. # # This Source Code Form is subject to the terms of the Mozilla Public # License, v. 2.0. If a copy of the MPL was not distributed with this # file, You can obtain one at http://mozilla.org/MPL/2.0/. # This script prints lines from .ui files, where the translatable="yes" attribute # was not set -- presumably by mistake. It prints a few false positives though. for i in `git ls-files *.ui`; do for j in "label" "title" "text" "format" "copyright" "comments" "preview_text" "tooltip" "message" ; do grep -s "\.*[A-Za-z].*<"; if [ "$?" -eq 0 ] ; then echo "Source: $i^"; fi done grep -s "" $i | grep -v "translatable\=\"yes" | grep -v "translatable\=\"no" | grep ">.*[A-Za-z].*<"; if [ "$?" -eq 0 ] ; then echo "Source: $i^"; fi done /option> LibreOffice 核心代码仓库文档基金会
summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-12-28Fix #118767 - Identify Firebird DBMS in DFunction()Jean-Pierre Ledure
2020-03-31tdf#131576 Fields not displayed as expected in Base's Table WizardCaolán McNamara
2020-03-30tdf#131576: fix "Field information" in table wizard, step 2Julien Nabet
2019-10-10Access2Base - CurrentUser based in PathSubstitutionJean-Pierre Ledure
2019-10-09Access2Base - Support dialogs owned by non-Base docsJean-Pierre Ledure
2019-09-27tdf#50846 - Wrong type of function GetLastUsedRowAndreas Heinisch
2019-09-10Fix typosAndrea Gelmini
2019-09-06Fixing '....' and '..'Andrea Gelmini
2019-09-01Fix '..'Andrea Gelmini
2019-08-23Access2Base - (Python) Explicit missing argumentsJean-Pierre Ledure
2019-08-23Access2Base - Change version numberJean-Pierre Ledure
2019-08-23Access2Base - Implement Find and ProcOfLineJean-Pierre Ledure
2019-08-20Access2Base - Move getObject, getValue and setValueJean-Pierre Ledure
2019-08-17Access2Base - access2base.py fix DebugPrintJean-Pierre Ledure
2019-08-17Access2Base - access2base.py fix module classJean-Pierre Ledure
2019-08-14Access2Base - Remove shebangJean-Pierre Ledure
2019-08-13fix shebang of wizards/source/access2base/access2base.pyRene Engelhard
2019-08-13Access2Base - Support API from PythonJean-Pierre Ledure
2019-08-10Fix typosAndrea Gelmini
2019-08-10Change FR to US language for external URLAndrea Gelmini
2019-08-09Access2Base - Python module - Basic sideJean-Pierre Ledure
2019-08-09Access2Base - Mention Python.xba in script.xlbJean-Pierre Ledure
2019-08-09Access2Base - Rename Compatible.xbaJean-Pierre Ledure
2019-07-27Fix typoAndrea Gelmini
2019-07-23cid#1448373 UC: Useless codeCaolán McNamara
2019-07-22cid#1448328 UC: Useless codeCaolán McNamara
2019-07-22Access2Base - FIX GetRows abortJean-Pierre Ledure