User:Annew/DPL: Difference between revisions
Neverendingo (talk | contribs) |
|||
(30 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
:Reference: [http://semeb.com/dpldemo/index.php?title=DPL:Manual DPL Manual] | :Reference: [http://semeb.com/dpldemo/index.php?title=DPL:Manual DPL Manual] | ||
:See also [[User:Pipesmoker/Dynamic_Page_Lists|Pipesmoker's notes]] and [http://semeb.com/dpldemo/index.php?title=Extension_DPL this page of examples] | :See also [[User:Pipesmoker/Dynamic_Page_Lists|Pipesmoker's notes]] and [http://semeb.com/dpldemo/index.php?title=Extension_DPL this page of examples] | ||
:Example UI on [http://semeb.com/dpldemo/index.php?title=Template:Catlist this Template:Catlist page] | |||
== Finding pages marked "ToDo" == | |||
{{Input|1=<nowiki> | |||
<DPL> | |||
titlematch = %Kdenlive/Manual/% | |||
namespace = | |||
include = * | |||
includematch = /ToDo/ | |||
resultsheader = KDEnlive pages containing the string "ToDo" | |||
format = ,\n* [[%PAGE%|%TITLE%]]\n,, | |||
</DPL> | |||
</nowiki>}} | |||
<DPL> | |||
titlematch = %Kdenlive/Manual/% | |||
namespace = | |||
include=* | |||
includematch=/ToDo/ | |||
resultsheader = KDEnlive pages containing the string "ToDo" | |||
format = ,\n* [[%PAGE%|%TITLE%]]\n,, | |||
</DPL> | |||
== Searching for pages containing a certain text string == | |||
Matching content in pages: You need to include the contents of pages in this page (<code>include = *</code> does that) and then do a perl-like regexp on their contents to filter interesting pages (<code>includematch = ...</code>). If you are searching in translated pages (fx all Danish pages) it is often advantageous to have <code>namespace = Translations</code> set; otherwise you will get both all full pages and all translation units containing matching text — that could be a very long output. | |||
{{Input|1=<nowiki> | |||
<DPL> | |||
titlematch = %/da | |||
namespace = Translations | |||
include = * | |||
includematch = /albummet/ | |||
resultsheader = Danish translation units containing the string "albummet" | |||
format = ,\n* [[%PAGE%|%TITLE%]]\n,, | |||
</DPL> | |||
</nowiki>}} | |||
<!-- | |||
<DPL> | |||
titlematch = %/da | |||
namespace = Translations | |||
include = * | |||
includematch = /albummet/ | |||
resultsheader = Danish translation units containing the string "albummet" | |||
format = ,\n* [[%PAGE%|%TITLE%]]\n,, | |||
</DPL> | |||
--> | |||
== All English pages linking to a given page == | |||
{{Input|1=<nowiki> | |||
<DPL> | |||
linksto = Getting_Help | |||
nottitleregexp = .*(/..(-..)?|_[(].*[)])$ | |||
resultsheader = There are %TOTALPAGES% pages linking to Getting Help. These are:\n | |||
format = ,\n* [[%PAGE%|%TITLE%]],, | |||
</DPL> | |||
</nowiki>}} | |||
Somehow this is broken! Should also list Welcome to KDE, but doesn't! Same problem with Special:WhatLinksHere. | |||
<!-- | |||
--> | |||
<DPL> | |||
linksto = Getting_Help | |||
nottitleregexp = .*(/..(-..)?|_[(].*[)])$ | |||
resultsheader = There are %TOTALPAGES% pages linking to Getting Help. These are:\n | |||
format = ,\n* [[%PAGE%|%TITLE%]],, | |||
</DPL> | |||
== All English pages linking to a given page (template version) == | |||
The lesson here seems to be that, at least when include is involved, we can't rely on DPL handling more than one namespace at a time. This calls for a template: <nowiki>{{LinksTo|Getting[_ ]Help}} gives</nowiki> | |||
{{LinksTo|1=Getting[_ ]Help}} | |||
==To count translated pages in a specific language:== | ==To count translated pages in a specific language:== | ||
{{Input|1=<nowiki><DPL> | {{Input|1=<nowiki><DPL> | ||
titlematch = %/ | titlematch = %/fi | ||
notnamespace = Translations | notnamespace = Translations | ||
columns = | columns = 2 | ||
format = ,\n* [[%PAGE%|%TITLE%]],, | format = ,\n* [[%PAGE%|%TITLE%]],, | ||
resultsheader = There are %TOTALPAGES% pages (partly) translated to | resultsheader = There are %TOTALPAGES% pages (partly) translated to Finnish. These are:\n | ||
</DPL></nowiki>}} | </DPL></nowiki>}} | ||
<DPL> | <DPL> | ||
titlematch = %/ | titlematch = %/fi | ||
notnamespace = Translations | notnamespace = Translations | ||
columns = | columns = 2 | ||
format = ,\n* [[%PAGE%|%TITLE%]],, | format = ,\n* [[%PAGE%|%TITLE%]],, | ||
resultsheader = There are %TOTALPAGES% pages (partly) translated to | resultsheader = There are %TOTALPAGES% pages (partly) translated to Finnish. These are:\n | ||
</DPL> | </DPL> | ||
----------------- | ----------------- | ||
==Kopete Subpages in 3 columns== | ==Kopete Subpages in 3 columns== | ||
Line 80: | Line 160: | ||
columns = 2 | columns = 2 | ||
format = ,\n* [[%PAGE%|%TITLE%]],, | format = ,\n* [[%PAGE%|%TITLE%]],, | ||
resultsheader = There are %TOTALPAGES% pages in the | resultsheader = There are %TOTALPAGES% pages in the Category:Noindexed_pages. These are:\n | ||
</DPL> | </DPL> | ||
--------------- | --------------- | ||
==Ignoring Deleted Pages== | |||
"As for DPL. If you hit a page with ?action=purge attached to the URL (i.e. | |||
http://en.wikinews.org/wiki/Template:Latest_news?action=purge ), it will | |||
dump all the removed pages." | |||
==Remaining old-style translations== | ==Remaining old-style translations== | ||
Line 111: | Line 196: | ||
{{Input|1=<nowiki><DPL> | {{Input|1=<nowiki><DPL> | ||
titlematch = % | titlematch = % | ||
namespace = | namespace = | ||
uses = Template:I18n/Language Navigation Bar | uses = Template:I18n/Language Navigation Bar | ||
columns = 3 | columns = 3 | ||
Line 120: | Line 205: | ||
<DPL> | <DPL> | ||
titlematch = % | titlematch = % | ||
namespace = | namespace = | ||
uses = Template:I18n/Language Navigation Bar | uses = Template:I18n/Language Navigation Bar | ||
columns = 3 | columns = 3 | ||
Line 131: | Line 216: | ||
{{Input|1=<nowiki><DPL> | {{Input|1=<nowiki><DPL> | ||
nottitlematch = %_(%) | nottitlematch = %_(%) | ||
namespace = | namespace = | ||
uses = Template:I18n/Language Navigation Bar | uses = Template:I18n/Language Navigation Bar | ||
columns = 3 | columns = 3 | ||
format = ,\n* [[%PAGE%|%TITLE%]],, | format = ,\n* [[%PAGE%|%TITLE%]],, | ||
resultsheader = There are %TOTALPAGES% pages that still display the old i18n language bar\n | resultsheader = There are %TOTALPAGES% relevant pages that still display the old i18n language bar\n | ||
</DPL></nowiki>}} | </DPL></nowiki>}} | ||
<DPL> | <DPL> | ||
nottitlematch = %_(%) | nottitlematch = %_(%) | ||
namespace = | namespace = | ||
uses = Template:I18n/Language Navigation Bar | uses = Template:I18n/Language Navigation Bar | ||
columns = 3 | columns = 3 | ||
format = ,\n* [[%PAGE%|%TITLE%]],, | format = ,\n* [[%PAGE%|%TITLE%]],, | ||
resultsheader = There are %TOTALPAGES% pages that still display the old i18n language bar\n | resultsheader = There are %TOTALPAGES% relevant pages that still display the old i18n language bar\n | ||
</DPL> | </DPL> | ||
Line 150: | Line 235: | ||
{{Input|1=<nowiki><DPL> | {{Input|1=<nowiki><DPL> | ||
namespace = | namespace = | ||
lastrevisionbefore = 201007010000 | lastrevisionbefore = 201007010000 | ||
columns = 2 | columns = 2 | ||
Line 159: | Line 244: | ||
<DPL> | <DPL> | ||
namespace = | namespace = | ||
lastrevisionbefore = 201007010000 | lastrevisionbefore = 201007010000 | ||
columns = 2 | columns = 2 | ||
Line 165: | Line 250: | ||
format = ,\n* (%DATE%) [[%PAGE%|%TITLE%]],, | format = ,\n* (%DATE%) [[%PAGE%|%TITLE%]],, | ||
resultsheader = There are %TOTALPAGES% pages without recent updates\n | resultsheader = There are %TOTALPAGES% pages without recent updates\n | ||
</DPL> | |||
== Listing Non-Translation Pages == | |||
{{Input|1=<nowiki><DPL> | |||
nottitlematch = %/__|%/zh-%|%(%) | |||
titlematch = Amarok% | |||
namespace = | |||
columns = 2 | |||
format = ,\n* [[%PAGE%|%TITLE%]],, | |||
resultsheader = There are %TOTALPAGES% Amarok pages, not counting translations\n | |||
</DPL></nowiki>}} | |||
<DPL> | |||
nottitlematch = %/__|%/zh-%|%pt-%|%(%) | |||
titlematch = Amarok% | |||
namespace = | |||
columns = 2 | |||
format = ,\n* [[%PAGE%|%TITLE%]],, | |||
resultsheader = There are %TOTALPAGES% Amarok pages, not counting translations\n | |||
</DPL> | |||
== List all pages in a specific namespace == | |||
{{Input|1=<nowiki><DPL> | |||
nottitlematch = %/__|%/zh-%|%pt-%|%(%) | |||
namespace = MediaWiki | |||
columns = 3 | |||
format = ,\n* [[%PAGE%|%TITLE%]],, | |||
resultsheader = These %TOTALPAGES% pages are in the Mediawiki namespace\n | |||
</DPL></nowiki>}} | |||
<DPL> | |||
nottitlematch = %/__|%/zh-%|%pt-%|%(%) | |||
namespace = MediaWiki | |||
columns = 3 | |||
format = ,\n* [[%PAGE%|%TITLE%]],, | |||
resultsheader = These %TOTALPAGES% pages are in the Mediawiki namespace\n | |||
</DPL> | </DPL> |
Latest revision as of 03:18, 5 January 2013
- Reference: DPL Manual
- See also Pipesmoker's notes and this page of examples
- Example UI on this Template:Catlist page
Finding pages marked "ToDo"
<DPL> titlematch = %Kdenlive/Manual/% namespace = include = * includematch = /ToDo/ resultsheader = KDEnlive pages containing the string "ToDo" format = ,\n* [[%PAGE%|%TITLE%]]\n,, </DPL>
Searching for pages containing a certain text string
Matching content in pages: You need to include the contents of pages in this page (include = *
does that) and then do a perl-like regexp on their contents to filter interesting pages (includematch = ...
). If you are searching in translated pages (fx all Danish pages) it is often advantageous to have namespace = Translations
set; otherwise you will get both all full pages and all translation units containing matching text — that could be a very long output.
<DPL> titlematch = %/da namespace = Translations include = * includematch = /albummet/ resultsheader = Danish translation units containing the string "albummet" format = ,\n* [[%PAGE%|%TITLE%]]\n,, </DPL>
All English pages linking to a given page
<DPL> linksto = Getting_Help nottitleregexp = .*(/..(-..)?|_[(].*[)])$ resultsheader = There are %TOTALPAGES% pages linking to Getting Help. These are:\n format = ,\n* [[%PAGE%|%TITLE%]],, </DPL>
Somehow this is broken! Should also list Welcome to KDE, but doesn't! Same problem with Special:WhatLinksHere.
There are 16 pages linking to Getting Help. These are:
- An introduction to KDE/8/es
- Claus chr/DPL
- Claus chr/FuzzyBot Problems
- IRC Channels/13/ro
- IRC Channels/ro
- Nilli/Resources
- Search
- SearchTest
- Test
- Troubleshooting/24/id
- Troubleshooting/3/zh-cn
- Troubleshooting/id
- Welcome to KDE UserBase/10/zh-tw
- Welcome to KDE UserBase/11/zh-tw
- Welcome to KDE UserBase/3/nl
- Welcome to KDE UserBase/3/zh-cn
All English pages linking to a given page (template version)
The lesson here seems to be that, at least when include is involved, we can't rely on DPL handling more than one namespace at a time. This calls for a template: {{LinksTo|Getting[_ ]Help}} gives
To count translated pages in a specific language:
<DPL> titlematch = %/fi notnamespace = Translations columns = 2 format = ,\n* [[%PAGE%|%TITLE%]],, resultsheader = There are %TOTALPAGES% pages (partly) translated to Finnish. These are:\n </DPL>
There are 25 pages (partly) translated to Finnish. These are:
- An introduction to KDE/fi
- Welcome to KDE UserBase/fi
- Amarok/QuickStartGuide/fi
- Applications/fi
- Akonadi/fi
- Applications/Games/fi
- Krita/fi
- Test/fi
- Glossary/fi
- Parley/Manual/fi
- Ub-home/fi
- Ub-contributors/fi
- Ub-start-contributing/fi
- Ub-translators/fi
- Ub-helpfiles-modify/fi
- Ub-languages-represented/fi
- Ub-helpfiles/fi
- Ub-get-trans-account/fi
- Ub-helpfiles-new-content/fi
- Ub-trans-tool/fi
- Ub-helpfiles-markup/fi
- Ub-helpfiles-page-elements/fi
- Ub-helpfiles-languages/fi
- Ub-helpfiles-typographical-guidelines/fi
- Ub-release-request/fi
Kopete Subpages in 3 columns
<DPL> titlematch = Kopete/% notnamespace = Translations columns = 3 format = ,\n* [[%PAGE%|%TITLE%]],, </DPL>
- Kopete/Skype Plugin/en
- Kopete/Skype Plugin/he
- Kopete/Skype Plugin/da
- Kopete/Skype Plugin/de
- Kopete/Skype Plugin/fr
- Kopete/Skype Plugin/es
- Kopete/Skype Plugin/pt-br
- Kopete/Skype Plugin/it
- Kopete/Skype Plugin/uk
- Kopete/Skype Plugin
- Kopete/AIM/en
- Kopete/Auto Replace/en
- Kopete/Yahoo/en
- Kopete/Auto Replace/da
- Kopete/AIM/da
- Kopete/Auto Replace/it
- Kopete/AIM
- Kopete/Auto Replace/es
- Kopete/AIM/fr
- Kopete/AIM/it
- Kopete/Auto Replace
- Kopete/AIM/es
- Kopete/Yahoo
- Kopete/Yahoo/da
- Kopete/Jabber/More info on Kopete/es
- Kopete/Yahoo/es
- Kopete/Firewall/en
- Kopete/Jabber/More info on Kopete/it
- Kopete/Jabber/More info on Kopete/da
- Kopete/Yahoo/it
- Kopete/Firewall/ru
- Kopete/Jabber/More info on Kopete
- Kopete/Auto Replace/fr
- Kopete/Jabber/More info on Kopete/fr
- Kopete/Jabber/First steps/es
- Kopete/Firewall/da
- Kopete/Jabber/First steps/it
- Kopete/AIM/uk
- Kopete/Jabber/First steps/fr
- Kopete/Firewall/es
- Kopete/Jabber/First steps/da
- Kopete/Firewall/it
- Kopete/Firewall
- Kopete/Jabber/First steps
- Kopete/Auto Replace/uk
- Kopete/ICQ/en
- Kopete/ICQ/es
- Kopete/ICQ/da
- Kopete/ICQ/it
- Kopete/Jabber/More info on Kopete/uk
- Kopete/ICQ/pt-br
- Kopete/ICQ
- Kopete/Yahoo/uk
- Kopete/OTR/en
- Kopete/Jabber/First steps/uk
- Kopete/Firewall/uk
- Kopete/OTR/da
- Kopete/OTR
- Kopete/ICQ/About ICQ/ru
- Kopete/ICQ/About ICQ/da
- Kopete/Winpopup/en
- Kopete/Jabber/zh-cn
- Kopete/Jabber/zh-tw
- Kopete/ICQ/creating an account/da
- Kopete/ICQ/About ICQ
- Kopete/ICQ/About ICQ/it
- Kopete/OTR/es
- Kopete/OTR/it
- Kopete/Winpopup/da
- Kopete/ICQ/About ICQ/pt-br
- Kopete/ICQ/About ICQ/es
- Kopete/ICQ/creating an account/it
- Kopete/ICQ/creating an account/es
- Kopete/Winpopup
- Kopete/ICQ/creating an account/ru
- Kopete/ICQ/creating an account/pt-br
- Kopete/Winpopup/it
- Kopete/ICQ/uk
- Kopete/ICQ/creating an account
- Kopete/Jabber/en
- Kopete/Jabber/de
- Kopete/Jabber
- Kopete/Jabber/da
- Kopete/Jabber/it
- Kopete/Jabber/es
- Kopete/Jabber/pt-br
- Kopete/Jabber/Create your Jabber account/da
- Kopete/Jabber/fr
- Kopete/Jabber/ja
- Kopete/Jabber/Create your Jabber account/es
- Kopete/Jabber/Create your Jabber account
- Kopete/Jabber/Create your Jabber account/it
- Kopete/Winpopup/uk
- Kopete/ICQ/add friends/da
- Kopete/ICQ/add friends/es
- Kopete/ICQ/add friends/pt-br
- Kopete/Jabber/About Jabber XMPP/da
- Kopete/ICQ/add friends
- Kopete/OTR/uk
- Kopete/Jabber/Messaging and sending files/da
- Kopete/Jabber/About Jabber XMPP
- Kopete/Jabber/Messaging and sending files
- Kopete/Jabber/About Jabber XMPP/es
- Kopete/ICQ/creating an account/uk
- Kopete/Jabber/Create your Jabber account/fr
- Kopete/Jabber/Adding friends/da
- Kopete/Jabber/Messaging and sending files/es
- Kopete/en
- Kopete/Jabber/uk
- Kopete/ICQ/About ICQ/uk
- Kopete/Jabber/Adding friends
- Kopete/Jabber/Adding friends/it
- Kopete/zh-cn
- Kopete/Jabber/Adding friends/es
- Kopete/nl
- Kopete/Supported Protocols Overview/en
- Kopete/ja
- Kopete/Supported Protocols Overview/it
- Kopete/Supported Protocols Overview/da
- Kopete/Supported Protocols Overview
- Kopete/Supported Protocols Overview/es
- Kopete/Jabber/Messaging and sending files/fr
- Kopete/pt-br
- Kopete/es
- Kopete/de
- Kopete/fr
- Kopete/it
- Kopete/Supported Protocols Overview/fr
- Kopete/Supported Protocols Overview/uk
- Kopete/Jabber/Create your Jabber account/uk
- Kopete/Jabber Transport/da
- Kopete/Jabber Transport/it
- Kopete/Jabber Transport
- Kopete/da
- Kopete/Jabber Muc/en
- Kopete/MSN/en
- Kopete/Jabber Muc/da
- Kopete/ICQ/add friends/uk
- Kopete/Jabber Muc
- Kopete/MSN
- Kopete/Jabber/About Jabber XMPP/uk
- Kopete/MSN/da
- Kopete/Webcam Support/en
- Kopete/Jabber Muc/pt-br
- Kopete/Jabber Muc/it
- Kopete/uk
- Kopete/MSN/it
- Kopete/Jabber/Fill in your account data in Kopete/da
- Kopete/ICQ/connect through kopete
- Kopete/MSN/es
- Kopete/Jabber/Fill in your account data in Kopete
- Kopete/Webcam Support
- Kopete/ICQ/connect through kopete/da
- Kopete/Webcam Support/da
- Kopete/Jabber/Fill in your account data in Kopete/ja
- Kopete/Jabber/Messaging and sending files/uk
- Kopete/Jabber/Adding friends/uk
- Kopete/Webcam Support/it
- Kopete/Jabber/Fill in your account data in Kopete/es
- Kopete/ICQ/connect through kopete/es
- Kopete/ICQ/connect through kopete/pt-br
- Kopete/Jabber Transport/uk
- Kopete/Jabber Muc/uk
- Kopete/Jabber/Useful configuration hints/da
- Kopete/MSN/uk
- Kopete/Jabber/Useful configuration hints
- Kopete/Jabber/Fill in your account data in Kopete/uk
- Kopete/Webcam Support/uk
- Kopete/Jabber/Useful configuration hints/es
- Kopete/ICQ/connect through kopete/uk
- Kopete/Jabber/Useful configuration hints/uk
- Kopete/MSN
- Kopete/Jabber Transport
- Kopete/Bookmarks
- Kopete/Contact Notes
- Kopete/Highlight
- Kopete/History
- Kopete/KopeteTeX
- Kopete/Now Listening
- Kopete/Pipes
- Kopete/Preview of Pictures in Chats
- Kopete/Privacy
- Kopete/Statistics
- Kopete/Text Effect
- Kopete/Translator
- Kopete/Web Presence
- Kopete/IRC
- Kopete/it
- Kopete/fr
- Kopete/da
- Kopete/ja
- Kopete/uk
- Kopete/pt-br
Akonadi Subpages in Danish
<DPL> titlematch = Akonadi%/da notnamespace = Translations format = ,\n* [[%PAGE%|%TITLE%]],, </DPL>
Archived pages
<DPL> titlematch = % namespace = Archive columns = 2 format = ,\n* [[%PAGE%|%TITLE%]],, resultsheader = There are %TOTALPAGES% pages in the Archive namespace. These are:\n </DPL>
There are 755 pages in the Archive namespace. These are:
- Kugar/Tutorials
- Kdenlive/Manual/Effects/Misc/Baltan
- Kdenlive/Manual/Effects/Fun/Grain
- Kdenlive/Manual/Effects/Misc/Nervous
- Kdenlive/Manual/Effects/Distort/Distort
- KTouch
- Archive Test1/Archive Test2
- Archive Test1/Archive Test3
- Kdenlive/Manual/Effects/Misc/cairogradient
- Kdenlive/Manual/Effects/Audio Correction/Mono Amplifier
- Kdenlive/Manual/Effects/Audio Correction/Stereo Amplifier
- Kdenlive/Manual/Effects/Misc/Colorhalftone
- Kdenlive/Manual/Effects/Audio channels/Balance
- Kdenlive/Manual/Effects/Audio channels/Copy Channels
- Kdenlive/Manual/Effects/Audio channels/Mono to Stereo splitter
- Kdenlive/Manual/Effects/Audio channels/Pan
- Kdenlive/Manual/Effects/Audio channels/Swap channels
- Kdenlive/Manual/Effects/Audio Correction/Hard Limiter
- Kdenlive/Manual/Effects/Audio Correction/Normalise
- Kdenlive/Manual/Effects/Misc/dance
- Kdenlive/Manual/Effects/Fade/Fade from Black
- Kdenlive/manual/effects/misc/Rgbsplit0r
- Kcontrol
- Kcontrol/zh-cn
- Archive Test4
- Kdessh/en
- Kdenlive/Manual/Effects/Misc/Color Effect
- Kcontrol/da
- Kcontrol/zh-tw
- Kdenlive/Manual/Effects/Misc/lumakey
- Kdessh/zh-cn
- Kdenlive/Manual/Effects/Enhancement/SpillSuppress
- Kdessh/it
- Kdessh/zh-tw
- Kdenlive/Manual/Effects/Misc/dither
- Kdessh/es
- Kdessh/da
- Kcontrol/de
- Stats (eo)
- Kcontrol/es
- Kdenlive/Manual/Effects/Artistic/3LevelThreshold
- Kdenlive/Manual/Edit Menu/Paste Effects/en
- Kcontrol/pt-br
- Kdenlive/Manual/Effects/Distort/Corners
- Kdessh/tr
- Kcontrol/it
- Kcontrol/ca
- Kdenlive/Manual/Effects/Colour/Contrast
- Kdenlive/Manual/Effects/Misc/Delay grab
- Kdessh/pt-br
- Kdenlive/Manual/Effects/Audio Correction/Mute
- Kdessh
- Kdessh/he
- Kdessh/fr
- Kdenlive/Manual/Effects/Colour/Invert
- Kdenlive/Manual/Effects/Colour/Techicolor
- Kdenlive/Manual/File Menu/Quit/en
- Kdenlive/Manual/Effects/Misc/Cartoon
- Kcontrol/fr
- Kdenlive/Manual/Effects/Misc/Vignette
- Kdenlive/Manual/Effects/Colour/Tint
- Kcontrol/ro
- Kdenlive/Manual/Effects/Misc/NDVI filter
- Kdenlive/Manual/File Menu/Revert/en
- Kdenlive/Manual/Effects/Colour/LumaLiftGainGamma
- Kdenlive/Manual/Effects/Colour Correction/Brightness (keyframable)
- Kdessh/de
- Kdenlive/Manual/Effects/Blur and hide/Blur
- Kdenlive/Manual/Effects/Colour/Primaries
- Kdenlive/Manual/Edit Menu/Paste/en
- Kdenlive/Manual/Effects/Misc/Sobel
- Kdenlive/Manual/Effects/Fun/Dust
- Kdenlive/Manual/Projects and Files/Management/en
- Kdenlive/Manual/Effects/AnalysisandData/Video Values
- Kdenlive/Manual/Effects/Misc/Light Graffiti
- Kdenlive/Manual/Effects/Fun/Scratchlines
- Kdenlive/Manual/Effects/Colour Correction/Levels
- Kdenlive/Manual/Effects/Motion/en
- Kdenlive/Manual/Effects/Distort/Wave
- Kcontrol/uk
- Kdenlive/Manual/Effects/Fun/Charcoal
- Kdenlive/Manual/Projects and Files/Importing/en
- Kdenlive/Manual/Projects and Files/Management/da
- Kdenlive/Manual/Effects/Colour/Sepia
- Kdenlive/Manual/Edit Menu/Paste Effects
- Kdenlive/Manual/Effects/Distort/Pixelize
- Kdenlive/manual/effects/misc/Owdenoise
- Kdenlive/Manual/Effects/Misc/scanline0r
- Kdenlive/Manual/Effects/Artistic/Binarize
- Kdenlive/Manual/Effects/Colour/Greyscale
- Kdenlive/Manual/Effects/Distort/Mirror
- Kdenlive/Manual/File Menu/Open Recent/en
- Kdenlive/Manual/Effects/Misc/Threshold
- Kdenlive/Manual/Projects and Files/Importing/da
- Kdenlive/Manual/Effects/Misc/rgbnoise
- Kdenlive/Manual/Effects/Colour Correction/Brightness
- Kdenlive/Manual/Effects/Colour Correction/Gamma
- Kdenlive/Manual/Effects/AnalysisandData/Audio Spectrum Filter
- Kdenlive/Manual/Effects/Fun/Vignette Effect
- Kdenlive/Manual/File Menu/Open/en
- Kdenlive/Manual/Effects/Colour Correction/3 point balance
- Kdenlive/Manual/Effects/Misc/Equaliz0r
- Kdenlive/Manual/File Menu/Quit
- Kdenlive/Manual/Effects/Motion/fr
- Kdenlive/Manual/Effects/Colour/Chroma Hold
- Kdenlive/Manual/Projects and Files/Management
- Kdenlive/Manual/File Menu/Revert
- Kdenlive/Manual/Effects/Distort/Lens Correction
- Kdenlive/Manual/Effects/Misc/K-Means Clustering
- Kdenlive/Manual/Effects/Motion/da
- Kdenlive/Manual/Edit Menu/Paste
- Kdessh/fa
- Kdenlive/Manual/Effects/Crop and transform/LetterB0xed
- Kdenlive/Manual/Effects/Misc/Luminance
- Kdenlive/Manual/Edit Menu/Paste Effects/ja
- Kdenlive/Manual/Projects and Files/Importing
- Kdenlive/Manual/Effects/Crop and transform/nosync0r
- Kdenlive/Manual/File Menu/Save As/en
- Kdenlive/Manual/Effects/Audio Correction/Volume (keyframable)
- Kdenlive/Manual/Edit Menu/Paste/fr
- Kdenlive/Manual/Effects/Colour/Hue shift
- Kdenlive/Manual/Effects/Fun/Oldfilm
- Kdenlive/Manual/Edit Menu/Redo/en
- Kdenlive/Manual/Projects and Files/Importing/uk
- Kdenlive/Manual/Effects/Motion/ja
- Kdenlive/Manual/Projects and Files/Management/uk
- Kdenlive/Manual/Effects/Crop and transform/Crop
- Kdenlive/Manual/Projects and Files/Management/ru
- Kdenlive/Manual/Effects/Colour Correction/White Balance
- Kde-pim/da
- Kdenlive/Manual/Effects/Motion/ru
- Kdenlive/Manual/Effects/AnalysisandData/Oscilloscope
- Kde-pim/ja
- Kde-pim/en
- Kdenlive/Manual/File Menu/Open Recent
- Kdenlive/Manual/Effects/Alpha manipulation/Mask0Mate
- Kdenlive/Manual/Projects and Files/Importing/ru
- Kdenlive/Manual/Effects/Blur and hide/Obscure
- Kdenlive/Manual/Effects/Motion/uk
- Kdenlive/Manual/File Menu/Open
- Kdenlive/Manual/File Menu/Save/en
- Kdenlive/Manual/KdenliveOnOtherPlatforms/Non-KDE Desktops/en
- Kugar
- Kdenlive/Manual/Effects/Blur and hide/Glow
- Kdenlive/Manual/Effects/Motion
- Kdenlive/Manual/Effects/Alpha manipulation/Alpha gradient
- Kdenlive/Manual/Effects/Audio Correction/Gain
- Kdenlive/Manual/File Menu/Save As
- Kde-pim
- Kde-pim/zh-cn
- Kde-pim/zh-tw
- Kdenlive/Manual/Effects/Misc/Regionalize
- Kdenlive/Manual/Edit Menu/Paste/ja
- Kdenlive/Manual/Effects/Misc/Color Distance
- Kdenlive/Manual/Edit Menu/Redo
- Kdenlive/Manual/Edit Menu/Paste Effects/uk
- Kdenlive/Manual/KdenliveOnOtherPlatforms/Non-KDE Desktops/da
- Kdenlive/Manual/Effects/Fun/en
- Kde-pim/it
- Kdenlive/Manual/Effects/Misc/cairoimagegrid
- Kdenlive/Manual/Effects/Misc/Edge glow
- Kdenlive/Manual/Effects/Crop and transform/transform
- Kde-pim/ca
- Kde-pim/de
- Kdenlive/Manual/Effects/Colour Correction/Bezier Curves
- Kde-pim/ro
- Kugar/da
- Kdenlive/Manual/File Menu/Save
- Kdenlive/Manual/KdenliveOnOtherPlatforms/Non-KDE Desktops/fr
- Kde-pim/es
- Kde-pim/pt-br
- Kde-pim/fr
- Kdenlive/Manual/KdenliveOnOtherPlatforms/Non-KDE Desktops
- Kdenlive/Manual/Edit Menu/Paste/uk
- Kdenlive/Manual/Edit Menu/Redo/ja
- Kdenlive/Manual/Effects/Blur and hide/Square Blur
- Kdenlive/Manual/Effects/Fun/da
- Kdenlive/Manual/Useful Information/VersionHistory
- Kdenlive/Manual/Effects/Colour/Saturation
- Kde-pim/he
- Kugar/it
- Kdenlive/Manual/File Menu/Quit/uk
- Kdenlive/Manual/File Menu/Open/uk
- Kdenlive/Manual/Effects/Colour Correction/White Balance(LMS)
- Kdenlive/Manual/Effects/Blur and hide/Softglow
- Kdenlive/Manual/Effects/Fun
- KOffice/en
- Kugar/fr
- Kdenlive/Manual/File Menu/Save As/uk
- KOffice/da
- Kdenlive/Manual/File Menu/Revert/uk
- Kdenlive/Manual/Edit Menu/en
- Kdenlive/Manual/Edit Menu/Redo/uk
- Kdenlive/Manual/KdenliveOnOtherPlatforms/en
- Kdenlive/Manual/File Menu/New/en
- Kdenlive/Manual/Effects/Misc/sigmoidaltransfer
- Kdenlive/Manual/Effects/Custom/en
- Kdenlive/Manual/KdenliveOnOtherPlatforms/OSX/da
- Kdenlive/Manual/Effects/Colour Correction/ApplyLUT
- Kdenlive/Manual/Edit Menu/pt-br
- Kdenlive/Manual/KdenliveOnOtherPlatforms/Non-KDE Desktops/ru
- KOffice/pt-br
- Kdenlive/Manual/Edit Menu/Copy/en
- Archive Test1
- Kdenlive/Manual/Effects/Colour Correction/Curves
- KOffice
- Kdenlive/Manual/Tool Menu/en
- Kdenlive/Manual/Effects/Custom/da
- Kdenlive/Manual/Effects/Fun/ja
- Kdessh/uk
- Kdenlive/Manual/File Menu/Save/uk
- Kdenlive/Manual/Edit Menu/da
- KOffice/fr
- Kdenlive/Manual/Effects/Crop and transform/Scale and Tilt
- Kdenlive/Manual/Effects/Enhancement/Denoiser
- Kdenlive/Manual/Effects/Fun/uk
- Kdenlive/Manual/Effects/Enhancement/en
- Kdenlive/Manual/File Menu/Open Recent/uk
- Kdenlive/Manual/Effects/Misc/TehRoxx0r
- Kdenlive/Manual/Effects/Fade/en
- Kdenlive/Manual/File Menu/New
- Kde-pim/uk
- Kdenlive/Manual/KdenliveOnOtherPlatforms/da
- Kdenlive/Manual/Edit Menu/Copy
- KOffice/he
- Kdenlive/Manual/KdenliveOnOtherPlatforms/Non-KDE Desktops/uk
- Kdenlive/Manual/Tool Menu/da
- Kdenlive/Manual/Effects/Fun/ru
- Kdenlive/Manual/Effects/Fade/da
- Kdenlive/Manual/Effects/Crop and transform/Rotate and Shear
- Kdenlive/Manual/Effects/Enhancement/da
- Kdenlive/Manual/Effects/Crop and transform/Rotate (keyframable)
- Kdenlive/Manual/KdenliveOnOtherPlatforms/OSX/en
- Kdenlive/Manual/KdenliveOnOtherPlatforms/OSX/ru
- Kdenlive/Manual/KdenliveOnOtherPlatforms
- Kde-pim/ru
- Kdenlive/Manual/Edit Menu/uk
- KColorChooser/it
- Kdenlive/Manual/KdenliveOnOtherPlatforms/OSX/uk
- Finding Your Application/da
- Kdenlive/Manual/Credits and License/en
- Kdenlive/Manual/Effects/Misc/timeout indicator
- Kdenlive/Manual/Edit Menu/ru
- Kdenlive/Manual/Effects/Misc/Dynamic Text
- Kdenlive/Manual/KdenliveOnOtherPlatforms/ru
- Finding Your Application/zh-cn
- Kdenlive/Manual/KdenliveOnOtherPlatforms/OSX
- Finding Your Application/zh-tw
- Kdenlive/Manual/Effects/Enhancement/uk
- Kdenlive/Manual/Menu/en
- Kdenlive/Manual/KdenliveOnOtherPlatforms/uk
- Kdenlive/Manual/Effects/Fade/uk
- Kdenlive/Manual/Effects/Audio channels/da
- Kdenlive/Manual/Effects/Distort/en
- Kdenlive/Manual/Tool Menu
- Kdenlive/Manual/Effects/Colour Correction/Lift Gamma Gain
- Kdenlive/Manual/Effects/Enhancement/ru
- Kdenlive/Manual/Useful Information/Useful Resources/en
- Kdenlive/Manual/Effects/Audio channels/en
- Kdenlive/Manual/Effects/Custom/uk
- Kdenlive/Manual/File Menu/en
- Finding Your Application/gl
- Kugar/uk
- Kdenlive/Manual/Effects/Distort/da
- Kdenlive/Manual/Edit Menu/Undo/en
- Kdenlive/Manual/File Menu/New/uk
- Kdenlive/Manual/Effects/Motion/Freeze
- Kdenlive/Manual/Edit Menu
- Kdenlive/Manual/Effects/Enhancement
- Kdenlive/Manual/Effects/Colour/RGB Parade
- Kdenlive/Manual/Useful Information/Useful Resources/ru
- Finding Your Application/pt-br
- Kdenlive/Manual/Effects/Fade
- KColorChooser/en
- Finding Your Application/nl
- Finding Your Application/ca
- Kdenlive/Manual/Effects/Fade/ru
- Kdenlive/Manual/File Menu/da
- Kdenlive/Manual/Menu/da
- Kdenlive/Manual/Projects and Files/Project/en
- Kdenlive/Manual/Edit Menu/Copy/ja
- Kdenlive/Manual/Useful Information/en
- Kdenlive/Manual/Credits and License
- Finding Your Application/am
- Kdenlive/Manual/Effects/Blur and hide/Box Blur
- KOffice/uk
- Finding Your Application/fa
- Kdenlive/Manual/Effects/Distort/uk
- Finding Your Application/it
- Finding Your Application/ro
- Kdenlive/Manual/Edit Menu/Undo
- Kdenlive/Manual/Useful Information/Useful Resources
- Kdenlive/Manual/Credits and License/pt-br
- Kdenlive/Manual/Credits and License/da
- Kdenlive/Manual/Credits and License/el
- Kdenlive/Manual/Effects/Custom/ru
- Finding Your Application/es
- Kdenlive/Manual/Useful Information/fr
- Finding Your Application/fr
- Kdenlive/Manual/Useful Information/da
- Artikulate/en
- Kdenlive/Manual/Projects and Files/Project/da
- Kdenlive/Manual/Effects/Audio channels/uk
- Kerry
- Kde-pim/hi
- Kdenlive/Manual/Effects/Audio channels/ru
- Kdenlive/Manual/Effects/Distort/ru
- Kdenlive/Manual/Menu/ru
- Kdenlive/Manual/Projects and Files/Archiving/en
- Kdenlive/Manual/Credits and License/fr
- Artikulate/da
- Kdenlive/Manual/Effects/Custom
- KColorChooser/da
- Artikulate/pt-br
- Kdenlive/Manual/Effects/Fade/Fade to Black
- Artikulate/ca
- Kdenlive/Manual/Effects/Audio Correction/en
- Kdenlive/Manual/Effects/Audio channels
- Kdenlive/Manual/Menu/uk
- Kerry/da
- Kdenlive/Manual/Useful Information/Useful Resources/uk
- Kdenlive/Manual/Effects/Audio Correction/da
- Kdenlive/Manual/Edit Menu/Undo/fr
- Kdenlive/Manual/File Menu/uk
- Kdenlive/Manual/Edit Menu/Copy/uk
- Kerry/ro
- Kdenlive/Manual/Projects and Files/Notes/en
- Kdenlive/Manual/Projects and Files/Archiving/da
- Kdenlive/Manual/Effects/Blur and hide/en
- Kdenlive/Manual/Effects/Crop and transform/en
- Kdenlive/Manual/Credits and License/es
- Kdenlive/Manual/File Menu/ru
- Kdenlive/Manual/Projects and Files/Project/fr
- Kdenlive/Manual/Credits and License/uk
- KColorChooser/uk
- Kdenlive/Manual/File Menu/Transcode Clips/en
- Kdenlive/Manual/Tool Menu/uk
- Kdenlive/Manual/Useful Information/ru
- Kdenlive/Manual/Effects/Analysis and Data/en
- Kdenlive/Manual/Effects/Blur and hide/da
- Kdenlive/Manual/Effects/Distort
- KColorChooser/fr
- Kerry/it
- KColorChooser
- Kdenlive/Manual/Effects/Crop and transform/da
- Kdenlive/Manual/Effects/Analysis and Data/da
- Kerry/es
- Kdenlive/Manual/Projects and Files/Notes
- Kdenlive/Manual/Projects and Files/Backup/en
- Kdenlive/Manual/Projects and Files/Notes/da
- Kdenlive/Manual/Projects and Files/Notes/zh-tw
- Kdenlive/Manual/Effects/Analysis and Data
- Kdenlive/Manual/Projects and Files/Backup/da
- Artikulate/fr
- Kdenlive/Manual/CapturingAudio/en
- Kdenlive/Manual/Useful Information/uk
- Kdenlive/Manual/Effects/Misc/Vectorscope
- Kdenlive/Manual/File Menu/Transcode Clips
- Kdenlive/Manual/Effects/Crop and transform/uk
- Artikulate
- Kdenlive/Manual/Menu
- Kdenlive/Manual/Useful Information
- Kdenlive/Manual/Projects and Files/Backup
- Kdenlive/Manual/Credits and License/ru
- Kdenlive/Manual/Effects/Audio Correction/ru
- Kdenlive/Manual/Toolbars/en
- Kdenlive/Manual/File Menu
- Kdenlive/Manual/Effects/Blur and hide/uk
- Kdenlive/Manual/Effects/Misc/Audio Wave
- ChoqoK/zh-cn
- Finding Your Application/bg
- Kdenlive/Manual/Useful Information/FAQ/en
- Kdenlive/Manual/Effects/Audio Correction/uk
- Kdenlive/Manual/Projects and Files/Project
- Kdenlive/Manual/CapturingAudio
- Kdenlive/Manual/Effects/Crop and transform/Pan and Zoom/en
- Kdenlive/Manual/Effects/Crop and transform/ru
- Kdenlive/Manual/Effects/Blur and hide/ru
- Kdenlive/Manual/Effects/Audio Correction
- ChoqoK/zh-tw
- Finding Your Application/uk
- Obsolete/en
- Finding Your Application/de
- Obsolete/da
- Kdenlive/Manual/Monitor Menu/en
- Kdenlive/Manual/Effects/Analysis and Data/uk
- Kdenlive/Manual/Effects/Crop and transform
- Kdenlive/Manual/Toolbars
- Kdenlive/Manual/Useful Information/FAQ
- Kdenlive/Manual/Useful Information/Tips Tricks/en
- Finding Your Application/ru
- Kdenlive/Manual/Useful Information/Tips Tricks/da
- Kdenlive/Manual/Projects and Files/Project/uk
- ChoqoK/en
- Kdenlive/Manual/Effects/Blur and hide
- Kdenlive/Manual/Timeline/Guides/en
- Kdenlive/Manual/Edit Menu/Undo/uk
- Kdenlive/Manual/Projects and Files/Project/ru
- Kdenlive/Manual/Useful Information/FAQ/da
- Kdenlive/Manual/Projects and Files/Archiving
- Kdenlive/Manual/Effects/Analysis and Data/ru
- Kdenlive/Manual/File Menu/Transcode Clips/ru
- ChoqoK/da
- Kdenlive/Manual/Useful Information/Tips Tricks
- Kdenlive/Manual/Toolbars/da
- ChoqoK
- Kdenlive/Manual/Effects/Crop and transform/Pan and Zoom
- Kdenlive/Manual/Timeline/Guides/da
- Kdenlive/Manual/Effects/Colour Correction/en
- Kdenlive/Manual/Effects/Artistic/en
- Finding Your Application/hi
- Kdenlive/Manual/Effects/Colour Correction/da
- Kdenlive/Manual/Effects/Artistic/uk
- Kerry/bg
- Kdenlive/Manual/Effects/Artistic
- ChoqoK/nl
- Kdenlive/Manual/Useful Information/FAQ/fr
- ChoqoK/de
- Finding Your Application
- Kdenlive/Manual/Effects/Artistic/ja
- ChoqoK/pt-br
- ChoqoK/gl
- Browser Configuration/Firefox Dialog Integration/zh-cn
- ChoqoK/it
- Kdenlive/Manual/Projects and Files/Archiving/uk
- ChoqoK/fr
- ChoqoK/es
- Browser Configuration/Firefox Dialog Integration/en
- Kdenlive/Manual/Useful Information/FAQ/ru
- Kdenlive/Manual/Monitor Menu
- Kdenlive/Manual/Projects and Files/Archiving/ru
- Kerry/uk
- Obsolete/uk
- KOrganizer/Download/da
- Artikulate/uk
- Browser Configuration/Firefox Dialog Integration
- Kdenlive/Manual/File Menu/DVD Wizard/en
- Browser Configuration/Firefox Dialog Integration/da
- Kdenlive/Manual/Timeline/Guides/de
- Kdenlive/Manual/Timeline/Guides
- Browser Configuration/Firefox Dialog Integration/pt-br
- Kdenlive/Manual/Tutorials/en
- Kdenlive/Manual/Effects/Artistic/ru
- Kdenlive/Manual/Effects/Colour Correction/ru
- Kdenlive/Manual/Effects/Enhancement/Sharpen
- Kdenlive/Manual/Tutorials/zh-cn
- Kdenlive/Manual/Projects and Files/Notes/ru
- Kdenlive/Manual/Useful Information/Tips Tricks/uk
- Kdenlive/Manual/Settings Menu/en
- Kdenlive/Manual/Effects/Colour Correction/uk
- Browser Configuration/Firefox Dialog Integration/fr
- KOrganizer/Download/it
- Kdenlive/Manual/Effects/Alpha manipulation/en
- Obsolete
- Kdenlive/Manual/Tutorials/pt-br
- Kdenlive/Manual/Projects and Files/Notes/uk
- Kdenlive/Manual/Useful Information/Tips Tricks/ru
- Kdenlive/Manual/Monitor Menu/da
- KOrganizer/Download/es
- Kdenlive/Manual/Useful Information/Shortcuts/en
- Kdenlive/Manual/Tutorials/zh-tw
- Kdenlive/Manual/Effects/Colour Correction/SOP/Sat
- Kdenlive/Manual/File Menu/DVD Wizard
- KOrganizer/Download
- Kdenlive/Manual/Settings Menu/da
- Kdenlive/Manual/Projects and Files/Backup/ru
- Kdenlive/Manual/Tutorials/fr
- Obsolete/ru
- Kdenlive/Manual/File Menu/Transcode Clips/uk
- Kdenlive/Manual/Tutorials/tr
- Kdenlive/Manual/Effects/Alpha manipulation/da
- Kdenlive/Manual/View Menu/en
- Kdenlive/Manual/Effects/Alpha manipulation/Blue Screen/en
- Kdenlive/Manual/Monitor Menu/ru
- Kdenlive/Manual/Effects/Colour Correction
- Kdenlive/Manual/Timeline/Grouping/en
- Kdenlive/Manual/View Menu/da
- Kdenlive/Manual/Timeline Menu/en
- Kdenlive/Manual/Effects/Crop and transform/Pan and Zoom/uk
- Kdenlive/Manual/Tutorials/da
- Kdenlive/Manual/Tutorials
- Kdenlive/Manual/Useful Information/Shortcuts/da
- Kdenlive/Manual/Toolbars/uk
- Kdenlive/Manual/Toolbars/ru
- Kdenlive/Manual/Tutorials/el
- Kdenlive/Manual/Effects/Colour Correction/RGB adjustment/en
- Kdenlive/Manual/Tutorials/ja
- Kdenlive/Manual/Tutorials/es
- Kdenlive/Manual/Projects and Files/Backup/uk
- Kdenlive/Manual/Timeline Menu/da
- Kdenlive/Manual/CapturingAudio/uk
- Kdenlive/Manual/Clip Menu/en
- Kdenlive/Manual/Timeline/Grouping/da
- Kdenlive/Manual/Effects/Crop and transform/Pan and Zoom/ru
- Kdenlive/Manual/Effects/Alpha manipulation/Blue Screen
- Kdenlive/Manual/Settings Menu/ru
- Kdenlive/Manual/Useful Information/FAQ/uk
- Kdenlive/Manual/Timeline/Grouping
- Kdenlive/Manual/Effects/Alpha manipulation
- Kdenlive/Manual/Clip Menu/da
NoIndexed pages
<DPL> titlematch = % category = Noindexed_pages columns = 2 format = ,\n* [[%PAGE%|%TITLE%]],, resultsheader = There are %TOTALPAGES% pages in the Archive namespace. These are:\n </DPL>
There are 10 pages in the Category:Noindexed_pages. These are:
- Archive Test1/Archive Test3
- Archive Test1/Archive Test2
- Archive Test4
- KMail/Security
- GPU-Performance
- Finding Your Application
- Finding Your Application/hi
- Finding Your Application/ca
- Finding Your Application/de
- Finding Your Application/pt-br
Ignoring Deleted Pages
"As for DPL. If you hit a page with ?action=purge attached to the URL (i.e. http://en.wikinews.org/wiki/Template:Latest_news?action=purge ), it will dump all the removed pages."
Remaining old-style translations
<DPL> titlematch = %_(%) notcategory = Template notnamespace = Thread notnamespace = Summary columns = 2 format = ,\n* [[%PAGE%|%TITLE%]],, resultsheader = There are %TOTALPAGES% pages (partly) remaining in old-style translations. These are:\n </DPL>
There are 1069 pages (partly) remaining in old-style translations. These are:
- Plasma/FAQ/4.1 (fr)
- Stats (eo)
- Plasma/FAQ/4.2 (de)
- Plasma/FAQ/4.1 (cs)
- Karbon14 (es)
- What is KDE (pt BR)
- UserBase (es)
- Tutorials/File Management (pl)
- Plasma/4.0 (zh CN)
- Info (uk)
- Community-app (uk)
- Community-app-footnote (uk)
- Plasma/FAQ (da)
- Kbluetooth (de)
- KsCD (de)
- UserBase (cs)
- Warning (uk)
- Vejledninger (da)
- Community-app-footnote (de)
- Community-app (de)
- SMPlayer (de)
- Multimedia (de)
- Digikam/Tour (pl)
- Info (it)
- Community-app (it)
- Community-app-footnote (it)
- Note (uk)
- Tutorials/Mousegestures for all Browsers (pl)
- Plasma/HowTo/4.4 (de)
- Plasma/HowTo/4.4 (de)
- Krecipes (no)
- Tutorials/TweakingPlasma (it)
- Büro (de)
- Programme (de)
- User talk:Sordon/Damaged German translations/reply (2)
- User talk:Annew/Reverted German Discussions/reply (2)
- User talk:Annew/Reverted German Discussions/reply (3)
- User talk:Annew/Reverted German Discussions/reply (4)
- User talk:Annew/Reverted German Discussions/reply (5)
- User talk:Pipesmoker/Translation discussion on Talk:Translation Workflow/reply (2)
- Talk:What is KDE/Markup lost/reply (2)
- User talk:Siebrand/test/New thread/reply (2)
- User talk:Annew/Plasma/HowTo/4.4/reply (2)
- User talk:Nikerabbit/Is a new SpecialPage feasible?/reply (2)
- User talk:Bakthariq/Translation changed English page/reply (2)
- User talk:KAMiKAZOW/Your Audex entry/reply (2)
- User talk:KAMiKAZOW/Your Audex entry/reply (3)
- User talk:KAMiKAZOW/Your Audex entry/reply (4)
- User talk:Claus chr/Changing categories to match translated pages, using /da/reply (2)
- User talk:Claus chr/Changing categories to match translated pages, using /da/reply (3)
- Talk:Applications/Desktop/Panels/Add Panel/reply (2)
- User talk:TrueSatan/Digikam (uk)
- User talk:TrueSatan/Digikam (uk)/reply (2)
- User talk:TrueSatan/Digikam (uk)/reply (3)
- User talk:TrueSatan/Applications/System/reply (2)
- User talk:Christopher Fritz/Application Categories/reply (2)
- Talk:Quick Start/category link syntax/reply (2)
- User talk:Algotruneman/Language bars/reply (2)
- Talk:Amarok/QuickStartGuide/HowToDealWithProblems/Problem with links to subsections/reply (2)
- Talk:Welcome to KDE UserBase/Enabling subpage feature/reply (2)
- User talk:Dag/KPlato manual/reply (2)
- User talk:Dag/KPlato manual/reply (3)
- User talk:Dag/KPlato manual/reply (4)
- User talk:Dag/KPlato manual/reply (5)
- User talk:Dag/KPlato manual/reply (6)
- Community-app (es)
- Community-app-footnote (es)
- User talk:Neverendingo/test (2)
- Talk:Translator Account/Threads? (2)/reply (2)
- Translator Account/Italian/reply (2)
- User talk:Qiii2006/Section markers for translation/reply (2)
- KPlato/Manual/Task Dependency Editor (Graphical)
- User talk:Felix/Kontact Mobile/reply (2)
- User talk:Gallaecio/System Settings/Input Devices (2)
- Talk:System Settings/Input Devices/Is this information up to date?/reply (2)
- Talk:System Settings/Input Devices/Is this information up to date?/reply (3)
- Talk:Applications/Games/info template need to be translated/reply (2)
- Talk:Applications/Games/info template need to be translated/reply (3)
- Talk:Applications/Games/info template need to be translated/reply (4)
- Tip (uk)
- User talk:Plcl/Hello again/reply (2)
- User talk:Plcl/Hello again/reply (3)
- User talk:Algotruneman/color picker plasmoid/reply (2)
- Plasma/HowTo/4.4 (es)
- Welcome to KDE UserBase (es)
- What is KDE (es)
- Para Empezar (es)
- Multimedia (es)
- User talk:Hans/Note to self/reply (2)
- Note (it)
- Talk:Applications/"Send data to other computers"/reply (2)
- Tip (it)
- Yakuake (es)
- Talk:Modify a Page/Translation tags/reply (2)
- User talk:Yurchor/"Chatty" pages - hard to mark up/reply (2)
- Talk:Translate a Page/FAQ/reply (2)
- Talk:Modify a Page/Translation tags/reply (3)
- Talk:Translate a Page/FAQ/reply (3)
- Talk:Modify a Page/Translation tags/reply (4)
- Talk:Translate a Page/FAQ/reply (4)
- Talk:Welcome to KDE UserBase/Multilanguage/reply (2)
- Talk:Welcome to KDE UserBase/Multilanguage/reply (3)
- Talk:Welcome to KDE UserBase/Random page/reply (2)
- Talk:Welcome to KDE UserBase/Random page/reply (3)
- Talk:Welcome to KDE UserBase/Random page/reply (4)
- Talk:Welcome to KDE UserBase/Random page/reply (5)
- Talk:Welcome to KDE UserBase/Template help/reply (2)
- Talk:Welcome to KDE UserBase/Template help/reply (3)
- Talk:Welcome to KDE UserBase/Template help/reply (4)
- Talk:Welcome to KDE UserBase/Template help/reply (5)
- Talk:Welcome to KDE UserBase/Template help/reply (6)
- Talk:Welcome to KDE UserBase/Please help make documentation more visual/reply (2)
- Talk:Translation Workflow/Use of menuchoice tag/reply (2)
- Talk:Modify a Page/Translation tags/reply (5)
- Talk:Translate a Page/FAQ/reply (5)
- Talk:Modify a Page/Translation tags/reply (6)
- Talk:Modify a Page/Translation tags/reply (7)
- Talk:Modify a Page/Translation tags/reply (8)
- Talk:Translation Workflow/Use of menuchoice tag/reply (3)
- Talk:Modify a Page/Translation tags/reply (9)
- Talk:Translation Workflow/Use of menuchoice tag/reply (4)
- User talk:Yurchor/"Chatty" pages - hard to mark up/reply (3)
- Talk:Translation Workflow/Use of menuchoice tag/reply (5)
- Talk:Translation Workflow/Use of menuchoice tag/reply (6)
- Talk:Translation Workflow/Use of menuchoice tag/reply (7)
- Talk:Translation Workflow/Use of menuchoice tag/reply (8)
- Talk:Translation Workflow/Use of menuchoice tag/reply (9)
- Talk:Translation Workflow/Use of menuchoice tag/reply (10)
- Talk:Translation Workflow/Use of menuchoice tag/reply (11)
- Talk:Translation Workflow/Use of menuchoice tag/reply (12)
- Talk:Translation Workflow/Use of menuchoice tag/reply (13)
- Talk:Translation Workflow/Use of menuchoice tag/reply (14)
- Talk:Translation Workflow/Use of menuchoice tag/reply (15)
- Talk:Translation Workflow/Use of menuchoice tag/reply (16)
- User talk:Dag/Alignment and text flow issues/reply (2)
- User talk:Dag/Alignment and text flow issues/reply (3)
- Talk:Translation Workflow/Use of menuchoice tag/reply (17)
- User talk:Dag/Alignment and text flow issues/reply (4)
- User talk:Dag/Alignment and text flow issues/reply (5)
- User talk:Dag/Alignment and text flow issues/reply (6)
- User talk:Dag/Alignment and text flow issues/reply (7)
- User talk:GregKoval/Starting translations/reply (2)
- EduBreadCrumbs (uk)
- User talk:Jeroen De Dauw/UserBase and semantic MediaWiki/reply (2)
- User talk:Yurchor/Plasma/FAQ/reply (2)
- User talk:Yurchor/Plasma/FAQ/reply (3)
- User talk:Yurchor/Plasma/FAQ/reply (4)
- User talk:Yurchor/Plasma/FAQ/reply (5)
- User talk:Yurchor/Plasma/FAQ/reply (6)
- User talk:Yurchor/Plasma/FAQ/reply (7)
- User talk:Yurchor/Plasma/FAQ/reply (8)
- Talk:Translation Workflow/Use of menuchoice tag/reply (18)
- Talk:Translation Workflow/Images (2)
- User talk:Yurchor/Plasma/FAQ/reply (9)
- Talk:UserBase/Guidelines/Remove page?/reply (2)
- Talk:UserBase/Guidelines/Remove page?/reply (3)
- Talk:Translation Workflow/Language-selector under Toolbox in sidebar/reply (2)
- Talk:Translation Workflow/Language-selector under Toolbox in sidebar/reply (3)
- Talk:Translation Workflow/Language-selector under Toolbox in sidebar/reply (4)
- Talk:Translation Workflow/Summary of Bullet Lists discussion/reply (2)
- Talk:Translation Workflow/Language-selector under Toolbox in sidebar/reply (5)
- Talk:Translation Workflow/Language-selector under Toolbox in sidebar/reply (6)
- Talk:Translation Workflow/Summary of Bullet Lists discussion/reply (3)
- Talk:Translation Workflow/Selecting a tab/reply (2)
- Talk:Translation Workflow/Summary of Bullet Lists discussion/reply (4)
- Talk:Glossary/TOC/reply (2)
- Talk:Glossary/TOC/reply (3)
- Talk:Edit Markup/Special:MyLanguage/reply (2)
- Talk:Edit Markup/Special:MyLanguage/reply (3)
- New Imports/Danish translation of Cantor/reply (2)
- Talk:Translation Workflow/Summary of Bullet Lists discussion/reply (5)
- New Imports/Danish translation of Cantor/reply (3)
- User talk:Annew/Off-line translations/reply (3)
- Talk:Translation Workflow/Summary of Bullet Lists discussion/reply (6)
- User talk:Annew/Off-line translations/reply (4)
- Talk:Translation Workflow/Summary of Bullet Lists discussion/reply (7)
- Talk:Translation Workflow/Summary of Bullet Lists discussion/reply (8)
- Talk:Welcome to KDE UserBase/Table of Contents/reply (2)
- Talk:Welcome to KDE UserBase/Table of Contents/reply (3)
- Talk:Plasma/HowTo/4.5/Quicklaunch widget/reply (2)
- Talk:Plasma/HowTo/4.5/Quicklaunch widget/reply (3)
- Talk:Welcome to KDE UserBase/da/UserBase/Guidelines/reply (2)
- Talk:Typographical Guidelines/Special Tags/reply (2)
- Talk:Konsole/Indentation/reply (2)
- Talk:Konsole/Indentation/reply (3)
- Talk:Konsole/Indentation/reply (4)
- Talk:UserBase/Guidelines/Remove page?/reply (4)
- Talk:KMail/FAQs Hints and Tips/Step by step implementation/reply (2)
- Talk:UserBase/Guidelines/Remove page?/reply (6)
- Talk:UserBase/Guidelines/Remove page?/reply (7)
- Talk:UserBase/Guidelines/Remove page?/reply (8)
- User talk:Zinchenko/KWord Manual/reply (2)
- Talk:Quick Start/cannot translate this page/reply (2)
- EduBreadCrumbs (it)
- User talk:Zinchenko/KWord Manual/reply (3)
- User talk:Zinchenko/KWord Manual/reply (4)
- User talk:Zinchenko/KWord Manual/reply (5)
- User talk:Zinchenko/KWord Manual/reply (6)
- User talk:Zinchenko/KWord Manual/reply (7)
- User talk:Zinchenko/KWord Manual/reply (8)
- User talk:Wind-rider/Adding Categories/reply (2)
- User talk:Wind-rider/Adding Categories/reply (3)
- User talk:Wind-rider/Adding Categories/reply (4)
- Talk:Translation Workflow/Breadcrumbs/reply (2)
- Talk:Translation Workflow/Breadcrumbs/reply (3)
- Talk:Kopete/Jabber Transport/Is this information up to date?/reply (2)
- Talk:Kopete/Jabber Transport/Is this information up to date?/reply (3)
- User talk:Pipesmoker/Still under construction?/reply (2)
- Talk:Kopete/Jabber Transport/Is this information up to date?/reply (4)
- Talk:Kopete/Jabber Transport/Is this information up to date?/reply (5)
- User talk:Caig/Apologies/reply (2)
- User talk:Caig/Apologies/reply (3)
- Community-app (ja)
- Community-app2 (ja)
- Talk:KMail/FAQs Hints and Tips/Untranslatable section/reply (2)
- Talk:KMail/FAQs Hints and Tips/Untranslatable section/reply (3)
- Talk:Amarok/Manual/Our ToDo - Collections/reply (2)
- Talk:Translation Workflow/Links in Category pages should be translated/reply (2)
- Talk:Translation Workflow/Links in Category pages should be translated/reply (3)
- User talk:Syron/UserBase or TechBase?/reply (2)
- User talk:Loquehumaine/Translate tags/reply (2)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (2)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (3)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (4)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (5)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (6)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (7)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (8)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (9)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (10)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (11)
- Talk:Live CDs - a way to choose your distro/Sidux is followed-up by aptosid/reply (2)
- Talk:Kontact Touch/Is the second paragraph redundant?/reply (2)
- User talk:Goleon/Engineering to Order/reply (2)
- User talk:Goleon/Engineering to Order/reply (3)
- User talk:Goleon/Engineering to Order/reply (4)
- User talk:Goleon/Engineering to Order/reply (5)
- User talk:Goleon/Engineering to Order/reply (6)
- User talk:Diego luca candido/Can't prepare the KHangMan page for translation now/reply (2)
- User talk:Goffrie/Bold type for program names/reply (2)
- User talk:Goleon/Engineering to Order/reply (7)
- User talk:Goleon/Engineering to Order/reply (8)
- User talk:Goleon/Engineering to Order/reply (9)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (12)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (13)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (14)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (15)
- Talk:Dolphin/File Management/How do I eject a device that is not mounted?/reply (2)
- Talk:Dolphin/File Management/How do I eject a device that is not mounted?/reply (3)
- User talk:BeCase/Your Translator account/reply (2)
- User talk:Aspotashev/1st comment/reply (2)
- User talk:Aspotashev/1st comment/reply (3)
- User talk:Aspotashev/1st comment/reply (4)
- User talk:Rystychko/http://www.google-melange.com/gci/task/show/google/gci2010/kde/t129370778621/reply (2)
- User talk:Rystychko/http://www.google-melange.com/gci/task/show/google/gci2010/kde/t129370778621/reply (3)
- User talk:Rystychko/http://www.google-melange.com/gci/task/show/google/gci2010/kde/t129370778621/reply (4)
- User talk:Rystychko/http://www.google-melange.com/gci/task/show/google/gci2010/kde/t129370778621/reply (5)
- Talk:Amarok/Manual/AmarokOnOtherPlatforms/OSX/Source of the screenshot./reply (2)
- Talk:Amarok/Manual/AmarokOnOtherPlatforms/OSX/Source of the screenshot./reply (3)
- User talk:Rystychko/http://www.google-melange.com/gci/task/show/google/gci2010/kde/t129370778621/reply (6)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (16)
- Talk:Kontact Mobile/Rename page to Kontact Touch./reply (17)
- User talk:Abella/What is KDE?/reply (2)
- User talk:Abella/What is KDE?/reply (3)
- Talk:Translation Workflow/Problems with redirected pages/reply (2)
- Community-app-footnote (ja)
- Community-app-footnote2 (ja)
- Talk:Translation Workflow/Problems with redirected pages/reply (3)
- Talk:Translation Workflow/Problems with redirected pages/reply (4)
- User talk:Pipesmoker/LQT bug?/reply (2)
- User talk:Pipesmoker/LQT bug?/reply (3)
- Talk:Translation Workflow/Problems with redirected pages/reply (5)
- Talk:Translation Workflow/Problems with redirected pages/reply (6)
- Talk:Translation Workflow/Problems with redirected pages/reply (7)
- Talk:Translation Workflow/Problems with redirected pages/reply (8)
- Talk:Translation Workflow/Problems with redirected pages/reply (9)
- User talk:Yecril71pl/Formatting on K3b page/reply (2)
- User talk:Yecril71pl/Formatting issues/reply (2)
- User talk:Yurchor/Obsolete pages?/reply (2)
- Talk:Plasma/GroupingDesktop/Wallpaper?/reply (2)
- Talk:Plasma/GroupingDesktop/Wallpaper?/reply (3)
- Talk:Plasma/GroupingDesktop/Wallpaper?/reply (4)
- Talk:Plasma/GroupingDesktop/Wallpaper?/reply (5)
- Talk:Plasma/GroupingDesktop/Wallpaper?/reply (6)
- Talk:Plasma/GroupingDesktop/Wallpaper?/reply (7)
- User talk:Pipesmoker/The Archive namespace/reply (2)
- Talk:Plasma/GroupingDesktop/Wallpaper?/reply (8)
- Talk:Plasma/GroupingDesktop/Wallpaper?/reply (9)
- Talk:Welcome to KDE UserBase/Can I import Lightning calendar to Korganizer?/reply (2)
- Talk:Plasma/GroupingDesktop/Wallpaper?/reply (10)
- Talk:Plasma/GroupingDesktop/Wallpaper?/reply (11)
- User talk:Yecril71pl/Formatting issues/reply (3)
- Talk:Amarok/QuickStartGuide/Playlists/Playlist pane markup/reply (2)
- User talk:Yecril71pl/Formatting issues/reply (4)
- User talk:Yecril71pl/Formatting issues/reply (5)
- User talk:Yecril71pl/Formatting issues/reply (6)
- User talk:Yecril71pl/Formatting issues/reply (7)
- Talk:Amarok/QuickStartGuide/Playlists/Playlist pane markup/reply (3)
- Talk:Amarok/QuickStartGuide/Playlists/Playlist pane markup/reply (4)
- Talk:Amarok/QuickStartGuide/Playlists/Playlist pane markup/reply (5)
- User talk:Yecril71pl/Formatting issues/reply (8)
- User talk:Yecril71pl/Formatting issues/reply (9)
- User talk:Raul.malea/Folosirea corectă a diacriticelor/reply (2)
- User talk:Yecril71pl/Formatting issues/reply (10)
- Talk:Amarok/QuickStartGuide/Playlists/Playlist pane markup/reply (6)
- Talk:Translation Workflow/How far back to translate?/reply (2)
- Talk:Translation Workflow/How far back to translate?/reply (3)
- User talk:Raul.malea/Folosirea corectă a diacriticelor/reply (3)
- User talk:Raul.malea/Folosirea corectă a diacriticelor/reply (4)
- User talk:Raul.malea/Folosirea corectă a diacriticelor/reply (5)
- User talk:Raul.malea/Folosirea corectă a diacriticelor/reply (6)
- User talk:Yurchor/Recent edit of KonsoleDevelpment/reply (2)
- User talk:Yurchor/Recent edit of KonsoleDevelpment/reply (3)
- Talk:Applications/Education/I cant tranlated to icon Information/reply (2)
- Talk:Applications/Education/I cant tranlated to icon Information/reply (3)
- Talk:Applications/Education/I cant tranlated to icon Information/reply (4)
- Talk:Applications/Education/I cant tranlated to icon Information/reply (5)
- User talk:Abella/Localising templates etc./reply (2)
- Talk:Browser Configuration/Needs markup/reply (2)
- User talk:Damien.flament/KDevelop4/Manual/Plugins: Code Generation/reply (2)
- Talk:Glossary/ca/Translating problems, saving action/reply (2)
- Talk:Glossary/ca/Translating problems, saving action/reply (3)
- Talk:Glossary/ca/Translating problems, saving action/reply (4)
- User talk:Zhao Han/Chinese translations/reply (2)
- User talk:Zhao Han/Chinese translations/reply (3)
- User talk:Zhao Han/不要吐嘈我的翻译……/reply (2)
- User talk:Zhao Han/不要吐嘈我的翻译……/reply (3)
- User talk:Zhao Han/不要吐嘈我的翻译……/reply (4)
- Talk:Welcome to KDE UserBase/Extension:Translate and chinese/reply (2)
- KDE UserBase talk:About/translation/reply (2)
- Talk:Quick Start/sidebar link/reply (2)
- Talk:Quick Start/sidebar link/reply (3)
- Talk:Quick Start/sidebar link/reply (4)
- KDE UserBase talk:About/translation/reply (3)
- Talk:Quick Start/sidebar link/reply (5)
- Talk:Quick Start/sidebar link/reply (6)
- Talk:Quick Start/sidebar link/reply (7)
- Talk:Quick Start/sidebar link/reply (8)
- User talk:Zhao Han/不要吐嘈我的翻译……/reply (5)
- User talk:Zhao Han/不要吐嘈我的翻译……/reply (6)
- User talk:Zhao Han/不要吐嘈我的翻译……/reply (7)
- User talk:Zhao Han/不要吐嘈我的翻译……/reply (8)
- KDE UserBase talk:About/translation/reply (4)
- Talk:Quick Start/sidebar link/reply (9)
- Talk:Quick Start/sidebar link/reply (10)
- Talk:Quick Start/sidebar link/reply (11)
- KDE UserBase talk:About/translation/reply (5)
- User talk:Qiii2006/查看userbase中文页面访问统计,搜索zh/reply (2)
- Talk:Mailing Lists/Page display title missing/reply (2)
- Talk:Welcome to KDE UserBase/Chinese language name translation issues/reply (2)
- Talk:Userbase Technical Issues/internal error: detected a bug in extension/reply (2)
- User talk:Zhao Han/Welcome to KDE UserBase/zh 沒必要吧/reply (2)
- User talk:Zhao Han/Welcome to KDE UserBase/zh 沒必要吧/reply (3)
- User talk:John Culleton/Kmail replacement/reply (2)
- User talk:John Culleton/Kmail replacement/reply (3)
- User talk:John Culleton/Kmail replacement/reply (4)
- User talk:John Culleton/Kmail replacement/reply (5)
- User talk:John Culleton/Kmail replacement/reply (6)
- User talk:Yecril71pl/No minor edits/reply (2)
- User talk:Yecril71pl/No minor edits/reply (3)
- User talk:Yecril71pl/No minor edits/reply (4)
- User talk:Yecril71pl/No minor edits/reply (5)
- File talk:Kde-sc-46-w10.png/Non-standard screen shot/reply (2)
- File talk:Kde-sc-46-w10.png/Non-standard screen shot/reply (3)
- File talk:Kde-sc-46-w10.png/Non-standard screen shot/reply (4)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (2)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (3)
- File talk:Kde-sc-46-w10.png/Non-standard screen shot/reply (5)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (4)
- User talk:Yecril71pl/No minor edits/reply (6)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (5)
- User talk:Yecril71pl/No minor edits/reply (7)
- File talk:Kde-sc-46-w10.png/Non-standard screen shot/reply (6)
- File talk:Kde-sc-46-w10.png/Non-standard screen shot/reply (7)
- File talk:Kde-sc-46-w10.png/Non-standard screen shot/reply (8)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (6)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (7)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (8)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (9)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (10)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (11)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (12)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (13)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (14)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (15)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (16)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (17)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (18)
- User talk:Yecril71pl/No minor edits/reply (8)
- Talk:Translation Workflow/Has fuzzybot gone mad?/reply (19)
- Talk:Quick Start/sidebar link/reply (12)
- Talk:Quick Start/sidebar link/reply (13)
- Talk:Quick Start/sidebar link/reply (14)
- Talk:Quick Start/sidebar link/reply (15)
- User talk:Annew/translation of Tasks and Tools/reply (2)
- Talk:Quick Start/sidebar link/reply (16)
- User talk:Annew/translation of Tasks and Tools/reply (3)
- User talk:Annew/translation of Tasks and Tools/reply (4)
- User talk:Annew/translation of Tasks and Tools/reply (5)
- Talk:Quick Start/sidebar link/reply (17)
- Talk:KDevelop4/FAQ/Makefiles/reply (2)
- Talk:Quick Start/sidebar link/reply (18)
- User talk:Annew/translation of Tasks and Tools/reply (6)
- User talk:Annew/translation of Tasks and Tools/reply (7)
- User talk:Annew/translation of Tasks and Tools/reply (8)
- User talk:Annew/translation of Tasks and Tools/reply (9)
- Talk:Update an Image/Markup problems/reply (2)
- Talk:Printer Config/"Printer Configuration" not translatable/reply (2)
- Talk:Printer Config/"Printer Configuration" not translatable/reply (3)
- Talk:Printer Config/"Printer Configuration" not translatable/reply (4)
- User talk:Qiii2006/Hydra/reply (2)
- Talk:Printer Config/"Printer Configuration" not translatable/reply (5)
- Talk:Printer Config/"Printer Configuration" not translatable/reply (6)
- Talk:Printer Config/"Printer Configuration" not translatable/reply (7)
- User talk:Zhao Han/Span tags/reply (2)
- Talk:Printer Config/"Printer Configuration" not translatable/reply (8)
- Talk:Printer Config/"Printer Configuration" not translatable/reply (9)
- User talk:Madgnu/Russian Translations/reply (3)
- Talk:Printer Config/"Printer Configuration" not translatable/reply (10)
- User talk:Zhao Han/Span tags/reply (3)
- Talk:KPDF/link of kde3 icon/reply (2)
- Talk:KPDF/link of kde3 icon/reply (3)
- Talk:Applications/Graphics/the page title is not translatable/reply (2)
- Talk:KWord/Tutorials/ThirdLayout/Text frames and columns/reply (2)
- Talk:KWord/Tutorials/ThirdLayout/Text frames and columns/reply (3)
- Talk:KWord/Tutorials/ThirdLayout/Text frames and columns/reply (4)
- Talk:Translation Workflow/Category KDE3/reply (2)
- Talk:Translation Workflow/Category KDE3/reply (3)
- User talk:Annew/Template Boxes/reply (2)
- Talk:KDE preinstalled/Non-translatable page/reply (2)
- User talk:Zhao Han/啊,我有罪,分类的命名/reply (2)
- User talk:Zhao Han/啊,我有罪,分类的命名/reply (3)
- Template talk:Info/Template arguments/reply (2)
- Talk:Welcome to KDE UserBase/Chinese language name translation issues/reply (3)
- User talk:Claus chr/Build/Tidying up Special:PageTranslation/reply (2)
- User talk:Claus chr/Build/Tidying up Special:PageTranslation/reply (3)
- User talk:Claus chr/Build/Tidying up Special:PageTranslation/reply (4)
- User talk:Claus chr/Build/Tidying up Special:PageTranslation/reply (5)
- User talk:Claus chr/Build/Tidying up Special:PageTranslation/reply (6)
- User talk:Bangerth/Preparing for translation/reply (2)
- User talk:Bangerth/Preparing for translation/reply (3)
- User talk:Bangerth/Preparing for translation/reply (4)
- User talk:Samuelleal/Translating KDEnlive/reply (2)
- User talk:Samuelleal/Translating KDEnlive/reply (3)
- User talk:Samuelleal/Translating KDEnlive/reply (4)
- User talk:Bangerth/Preparing for translation/reply (5)
- Talk:KDevelop4/Manual/Sessions and projects/deal.II/reply (2)
- Talk:Translation Workflow/Question marks in page names/reply (2)
- Talk:Translation Workflow/Question marks in page names/reply (3)
- User talk:Joe/Welcome/reply (2)
- Improve (uk)
- User talk:Christopher Fritz/KIPI/reply (2)
- Remember (uk)
- Talk:Translation Workflow/Red links/reply (2)
- Talk:Translation Workflow/Default language/reply (2)
- Talk:Translation Workflow/Red links/reply (3)
- Talk:Translation Workflow/Red links/reply (4)
- Talk:Translation Workflow/Default language/reply (3)
- Talk:Translation Workflow/Digikam/Tutorials translated pages problem/reply (2)
- Talk:Translation Workflow/Digikam/Tutorials translated pages problem/reply (3)
- Talk:Translation Workflow/Digikam/Tutorials translated pages problem/reply (4)
- User talk:Gallaecio/Task Manager/reply (2)
- User talk:Caig/The ToolBox page/reply (2)
- User talk:Caig/The ToolBox page/reply (3)
- User talk:Caig/The ToolBox page/reply (4)
- User talk:Caig/The ToolBox page/reply (5)
- User talk:Caig/The ToolBox page/reply (6)
- User talk:Yurchor/The ToolBox page/reply (2)
- User talk:Caig/The ToolBox page/reply (7)
- User talk:Yurchor/The ToolBox page/reply (3)
- User talk:Yurchor/The ToolBox page/reply (4)
- User talk:Caig/The ToolBox page/reply (8)
- User talk:Yurchor/The ToolBox page/reply (5)
- Talk:Dolphin/the use of dedicated/reply (2)
- Talk:Applications/Science/What's about Math?/reply (2)
- Talk:Applications/Science/What's about Math?/reply (3)
- Talk:Applications/Science/What's about Math?/reply (4)
- Talk:Plasma/Panels/"Lock Widgets" moved to "More Settings"/reply (2)
- Talk:KPackageKit/Renamed to Apper/reply (2)
- Talk:KPackageKit/Renamed to Apper/reply (3)
- Talk:KPackageKit/Renamed to Apper/reply (4)
- Talk:KPackageKit/Renamed to Apper/reply (5)
- Talk:KPackageKit/Renamed to Apper/reply (6)
- Talk:Tasks and Tools/fr/Working with Languages doesn't redirect correctly anymore/reply (2)
- User talk:Qiii2006/useless pages/reply (2)
- User talk:Qiii2006/页面重复的内容/reply (2)
- Talk:Translate a Page/Categories/reply (2)
- User talk:Qiii2006/页面重复的内容/reply (3)
- Talk:KIconEdit/where can I download it?/reply (2)
- User talk:AmirHP/Translation on UserBase/reply (2)
- User talk:AmirHP/Translation on UserBase/reply (3)
- User talk:AmirHP/Your translation of the Introduction page/reply (2)
- User talk:AmirHP/Your translation of the Introduction page/reply (3)
- User talk:AmirHP/Welcome to the Translator group/reply (2)
- User talk:AmirHP/Welcome to the Translator group/reply (3)
- User talk:AmirHP/Welcome to the Translator group/reply (4)
- User talk:AmirHP/Welcome to the Translator group/reply (5)
- User talk:AmirHP/Welcome to the Translator group/reply (6)
- User talk:AmirHP/Welcome to the Translator group/reply (7)
- User talk:AmirHP/Welcome to the Translator group/reply (8)
Pages with old i18n bar
<DPL> titlematch = % namespace = uses = Template:I18n/Language Navigation Bar columns = 3 format = ,\n* [[%PAGE%|%TITLE%]],, resultsheader = There are %TOTALPAGES% pages that still display the old i18n language bar\n </DPL>
Pages with old i18n bar but w/o old-way-translated ones
<DPL> nottitlematch = %_(%) namespace = uses = Template:I18n/Language Navigation Bar columns = 3 format = ,\n* [[%PAGE%|%TITLE%]],, resultsheader = There are %TOTALPAGES% relevant pages that still display the old i18n language bar\n </DPL>
Pages not updated since 1st July 2010
<DPL> namespace = lastrevisionbefore = 201007010000 columns = 2 ordermethod=lastedit format = ,\n* (%DATE%) [[%PAGE%|%TITLE%]],, resultsheader = There are %TOTALPAGES% pages without recent updates\n </DPL>
There are 17 pages without recent updates
- (2009-12-18 14:35:53) Kword/1.6/ApplixWord
- (2009-12-18 15:01:59) Kword/1.6/DocBook
- (2009-12-18 15:06:23) Kword/1.6/LaTex
- (2009-12-18 15:07:12) Kword/1.6/MSWrite
- (2009-12-18 15:17:04) Kword/1.6/Plain text
- (2009-12-18 15:23:08) Kword/1.6/WordPerfect
- (2009-12-18 15:28:04) Kword/1.6/WML
- (2009-12-19 11:44:55) Kword/1.6/HTML
- (2009-12-19 12:04:48) Kword/1.6/Writer
- (2009-12-19 12:23:53) Kword/1.6/StarWriter
- (2010-01-25 18:51:21) Category Translation Template
- (2010-03-13 14:46:04) /Toolbox/Subpage Demo
- (2010-03-14 16:09:12) KWord/1.5/Manual/access
- (2010-03-15 14:57:17) KWord/1.5/Manual/WorkFrames
- (2010-03-15 15:55:20) KWord/1.5/Manual/visual
- (2010-03-15 15:57:59) KWord/1.5/Manual/motor
- (2010-06-10 09:37:41) Parley/Manual dev
Listing Non-Translation Pages
<DPL> nottitlematch = %/__|%/zh-%|%(%) titlematch = Amarok% namespace = columns = 2 format = ,\n* [[%PAGE%|%TITLE%]],, resultsheader = There are %TOTALPAGES% Amarok pages, not counting translations\n </DPL>
There are 68 Amarok pages, not counting translations
- Amarok
- Amarok/Manual
- Amarok/Manual/AdvancedFeatures/WorkingWithMediaDevices
- Amarok/Manual/AmarokWindow
- Amarok/Manual/AmarokWindow/ContextPane
- Amarok/Manual/AmarokWindow/MediaSources
- Amarok/Manual/AmarokWindow/PlaylistPane
- Amarok/Manual/AmarokWindow/Toolbar
- Amarok/Manual/ConfiguringAmarok
- Amarok/Manual/ConfiguringAmarok/ChangingLayout
- Amarok/Manual/Draft
- Amarok/Manual/Draft/References/MenuAndCommandReference/HiddenFeatures
- Amarok/Manual/Draft/Scrobbling to Libre.fm
- Amarok/Manual/Introduction
- Amarok/Manual/Organization
- Amarok/Manual/Organization/Applets
- Amarok/Manual/Organization/Collection
- Amarok/Manual/Organization/Collection/ExternalDatabase
- Amarok/Manual/Organization/Collection/OrganizeCollection
- Amarok/Manual/Organization/Collection/RemoteCollections
- Amarok/Manual/Organization/Collection/RemoteCollections/Ampache
- Amarok/Manual/Organization/Collection/RemoteCollections/DAAP
- Amarok/Manual/Organization/Collection/RemoteCollections/Samba
- Amarok/Manual/Organization/Collection/RemoteCollections/UPnP
- Amarok/Manual/Organization/Collection/SearchInCollection
- Amarok/Manual/Organization/Collection/StatisticsSynchronization
- Amarok/Manual/Organization/Collection/WorkingWithMediaDevices
- Amarok/Manual/Organization/CollectionScanning
- Amarok/Manual/Organization/CoverManager
- Amarok/Manual/Organization/ScriptManager
- Amarok/Manual/Organization/TagEditor
- Amarok/Manual/Organization/Transcoding
- Amarok/Manual/Playlist
- Amarok/Manual/Playlist/AutomaticPlaylistGenerator
- Amarok/Manual/Playlist/DynamicPlaylists
- Amarok/Manual/Playlist/PlaylistFiltering
- Amarok/Manual/Playlist/QueueManager
- Amarok/Manual/Playlist/SavedPlaylists
- Amarok/Manual/References
- Amarok/Manual/References/Credits and License
- Amarok/Manual/References/KeybindingReference
- Amarok/Manual/References/KeybindingReference/AmarokShortcuts
- Amarok/Manual/References/KeybindingReference/GlobalShortcuts
- Amarok/Manual/References/MenuAndCommandReference
- Amarok/Manual/References/MenuAndCommandReference/AmarokMenu
- Amarok/Manual/References/MenuAndCommandReference/Help
- Amarok/Manual/References/MenuAndCommandReference/Playlist
- Amarok/Manual/References/MenuAndCommandReference/Settings
- Amarok/Manual/References/MenuAndCommandReference/Tools
- Amarok/Manual/References/MenuAndCommandReference/ViewMenu
- Amarok/Manual/Trash/ConfiguringAmarok
- Amarok/Manual/Various
- Amarok/Manual/Various/AmarokOnOtherPlatforms
- Amarok/Manual/Various/AmarokOnOtherPlatforms/NonKDE Desktops
- Amarok/Manual/Various/AmarokOnOtherPlatforms/OSX
- Amarok/Manual/Various/AmarokOnOtherPlatforms/Windows
- Amarok/Manual/Various/FAQ
- Amarok/Manual/Various/Moodbar
- Amarok/Manual/Various/ReplayGain
- Amarok/Manual/Various/TroubleshootingAndCommonProblems
- Amarok/QuickStartGuide
- Amarok/QuickStartGuide/GettingStarted
- Amarok/QuickStartGuide/Glossary
- Amarok/QuickStartGuide/HowToDealWithProblems
- Amarok/QuickStartGuide/Playlists
- Amarok/QuickStartGuide/TheAmarokWindow
- Amarok/QuickStartGuide/TheContextView
- Amarok/QuickStartGuide/TheMusicCollection
List all pages in a specific namespace
<DPL> nottitlematch = %/__|%/zh-%|%pt-%|%(%) namespace = MediaWiki columns = 3 format = ,\n* [[%PAGE%|%TITLE%]],, resultsheader = These %TOTALPAGES% pages are in the Mediawiki namespace\n </DPL>
These 62 pages are in the Mediawiki namespace
- Sitenotice
- Top-notice-Welcome to KDE UserBase
- Ub-home
- Babel-template-prefix
- Babel-category-prefix
- Babel-portal-prefix
- Ub-home/ksh
- Ub-navigation
- Ub-home/rue
- Ub-contributors/ksh
- Ub-translators
- Ub-translators/ksh
- Ub-start-contributing
- Upload
- Ub-contributors
- Ub-helpfiles-new-content
- Ub-contributors/rue
- Ub-release-request
- Ub-helpfiles/ksh
- Ub-helpfiles-markup
- Ub-trans-tool
- Ub-helpfiles
- Ub-helpfiles-modify
- Ub-languages-represented
- Ub-release-request/ksh
- Ub-helpfiles-languages
- Mainpage
- Ub-get-trans-account/ksh
- Ub-helpfiles-page-elements
- Ub-helpfiles-typographical-guidelines
- Ub-get-trans-account
- Ub-trans-tool/ksh
- Ub-helpfiles/rue
- Ub-translators/rue
- Ub-helpfiles-modify-url
- Ub-helpfiles-languages-url
- Ub-helpfiles-new-content-url
- Ub-home/qqq
- Ub-trans-tool/rue
- Ub-release-request/rue
- Ub-translators/qqq
- Ub-contributors/qqq
- Ub-trans-tool/qqq
- Ub-helpfiles/qqq
- Ub-get-trans-account/rue
- Ub-get-trans-account/qqq
- Ub-release-request/qqq
- Filedelete-reason-dropdown
- Top-notice-New Imports
- Ipbreason-dropdown
- Anoneditwarning
- Deletereason-dropdown
- Top-notice-Sandbox
- Userbase-messages
- Common.js
- Top-notice-ReadyForTranslation
- Translate-edit-tag-warning
- Sidebar
- Common.css
- Top-notice-Translator Account
- Common.js/search.js
- TitleBlacklist