Skip to content

Commit 2aa1b2e

Browse files
jenkins-botGerrit Code Review
jenkins-bot
authored and
Gerrit Code Review
committed
Merge "BlockLog.vue: Wrap user tool links onto own line when it doesn't fit"
2 parents c64987a + 4fe479f commit 2aa1b2e

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

languages/i18n/en.json

-1
Original file line numberDiff line numberDiff line change
@@ -3649,7 +3649,6 @@
36493649
"signature": "[[{{ns:user}}:$1|$2]] ([[{{ns:user_talk}}:$1|talk]])",
36503650
"signature-anon": "[[{{#special:Contributions}}/$1|$2]]",
36513651
"signature-temp": "[[{{#special:Contributions}}/$1|$2]] ([[{{ns:user_talk}}:$1|talk]])",
3652-
"userlink-with-contribs": "[[{{ns:user}}:$1|$1]] ([[{{ns:user_talk}}:$1|{{int:talkpagelinktext}}]] {{int:pipe-separator}} [[{{ns:special}}:Contributions/$1|{{int:contribslink}}]])",
36533652
"timezone-utc": "UTC",
36543653
"timezone-local": "Local",
36553654
"duplicate-defaultsort": "<strong>Warning:</strong> Default sort key \"$2\" overrides earlier default sort key \"$1\".",

languages/i18n/qqq.json

-1
Original file line numberDiff line numberDiff line change
@@ -3913,7 +3913,6 @@
39133913
"signature": "This will be substituted in the signature (~<nowiki></nowiki>~~ or ~~<nowiki></nowiki>~~ excluding timestamp).\n\n'''Translate the word \"talk\" towards the end.''' It's probably the same as {{mw-msg|Sp-contributions-talk}}.\n\nParameters:\n* $1 - the username that is currently login\n* $2 - the customized signature which is specified in [[Special:Preferences|user's preferences]] as non-raw\n\nUse your language default parentheses ({{msg-mw|parentheses}}), but not use the message direct.\n\nSee also:\n* {{msg-mw|Signature-anon}} - signature for anonymous user",
39143914
"signature-anon": "{{notranslate}}\nUsed as signature for anonymous user. Parameters:\n* $1 - username (IP address?)\n* $2 - nickname (IP address?)\nSee also:\n* {{msg-mw|Signature}} - signature for registered user",
39153915
"signature-temp": "Used as a signature for automatically created temporary users (when IP masking is enabled).",
3916-
"userlink-with-contribs": "A link to a userpage, the talk page and the contributions page, in the format User (talk | contribs). Parameters:\n* $1 - the username",
39173916
"timezone-utc": "{{optional}}",
39183917
"timezone-local": "Label to indicate that a time is in the user's local timezone.\n{{Identical|Local}}",
39193918
"duplicate-defaultsort": "<strong>Warning:</strong> Default sort key \"$2\" overrides earlier default sort key \"$1\".",

resources/Resources.php

-1
Original file line numberDiff line numberDiff line change
@@ -2404,7 +2404,6 @@
24042404
'parentheses-start',
24052405
'pipe-separator',
24062406
'talkpagelinktext',
2407-
'userlink-with-contribs',
24082407
],
24092408
],
24102409
'mediawiki.protectionIndicators.styles' => [

resources/src/mediawiki.special.block/components/BlockLog.vue

+18-2
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,20 @@
7676
<span v-else></span>
7777
</template>
7878
<template #item-blockedby="{ item }">
79-
<!-- eslint-disable-next-line vue/no-v-html -->
80-
<span v-html="$i18n( 'userlink-with-contribs', item ).parse()"></span>
79+
<a :href="mw.util.getUrl( `User:${ item }` )">
80+
{{ item }}
81+
</a>
82+
<span class="mw-usertoollinks">
83+
{{ $i18n( 'parentheses-start' ).text() }}<a :href="mw.util.getUrl( `User talk:${ item }` )">
84+
{{ $i18n( 'talkpagelinktext' ).text() }}
85+
</a>
86+
<span>
87+
{{ $i18n( 'pipe-separator' ).text() }}
88+
<a :href="mw.util.getUrl( `Special:Contributions/${ item }` )">
89+
{{ $i18n( 'contribslink' ).text() }}
90+
</a>
91+
</span>{{ $i18n( 'parentheses-end' ).text() }}
92+
</span>
8193
</template>
8294
<template #item-parameters="{ item }">
8395
<ul v-if="item && item.length">
@@ -312,6 +324,10 @@ module.exports = exports = defineComponent( {
312324
.cdx-accordion__content {
313325
font-size: unset;
314326
}
327+
328+
.mw-usertoollinks {
329+
white-space: nowrap;
330+
}
315331
}
316332
317333
.mw-block-log-fulllog {

0 commit comments

Comments
 (0)