vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 3.8 Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=235)
-   -   Private Messages Enhancements - New PM System (https://vborg.vbsupport.ru/showthread.php?t=224898)

skol 10-10-2009 09:27 PM

Then why is the thread continuing.

z0diac 10-11-2009 01:12 AM

Quote:

Originally Posted by Speysider (Post 1897177)
What the heck is a PN?

I think he meant PM but in his native language.

If someone fluent in both languages (and who knows coding) could do an English port of this, I think this looks like a GREAT add-on. I love vB but must admit, it's PM subsystem is very clumsy. I like the look of the layout of this mod. Hopefully we'll see an English version of it in the future.

VonDoom 10-11-2009 01:23 AM

Quote:

Originally Posted by z0diac (Post 1897843)
I think he meant PM but in his native language.

If someone fluent in both languages (and who knows coding) could do an English port of this, I think this looks like a GREAT add-on. I love vB but must admit, it's PM subsystem is very clumsy. I like the look of the layout of this mod. Hopefully we'll see an English version of it in the future.

Was thinking the same, :up:

edytwinky 10-11-2009 03:03 AM

Can we get pics in English?

MattGraal 10-11-2009 04:02 PM

<font size="3">PS: Online translators do wonders.</font>

What this Addon makes:

This Addon changes the view of the PN system completely!!

The PN supplement Addon of Stoebi is integrated.

No control center more in the PN system. Answer no "automatic quotation more" in that. (Would thank @ragtek) PN course directly under the message. (Thanks @ragtek) Standartmäßig is the message pursuit act fourth. Standartmäßig is the copy of the PN act fourth. New PN with Blink Icon emphasized.
Reference of a new PN in the forum. Completely new view.

(Message pursuit is presently postal service exit & postal service exit is stored; it on that is worked both together gain)

Test before the installation:

Are following Templates originals? (must original be)

pm_message cunning pm_messagelistbit pm_messagelistbit_ignore pm_messagelist_periodgroup pm_newpm pm_receipts
pm_receiptsbit pm_showpm pm_trackpm pm_editfolders

If the PN supplement Addon installs, zumindets must be made the Template changes rückgänig!

Update on 1.4

1st product file „product-rth_pn_system" in the ACP under 'Add ons & plagued in that / Add ons administer' import (transferring).

Import (transferring) 2nd TMS file: „templateedits-rt_pn_system".

Newly installation:

Carry out please all changes:

1St upload file high store (Tabs farblich in css adapt)

2nd product file „product-rth_pn_system" & „product-pma_160906" (if supplement Addon already installed not necessarily) in the ACP under 'Add ons & plagued in that / Add ons administer' import.

3: Noted please that "can reject" requested harvest confirmations of private messages on no stands in the user groups!

Attentions only do not carry out stored become if the PN's IT!!

Carry out 4th SQL query:

(Copy of sent messages standard moderate in the postal service exit store)

----------------------------------------------------------------------------.

UPDATE user SET option = option + 33554432 WHERE NEEDS (option & 33554432);

----------------------------------------------------------------------------.

5: If no TMS in the use is carry out the Template changes per hand!!

Finished!

JamesC70 10-11-2009 04:56 PM

1 Attachment(s)
Exactly. :)

I took the time to translate most of the phrases into English. Screenshots and replacement XML files are attached.

The biggest reason *I* would want this addon is because it allows file attachments in PMs. The attachment limits are the same as the forum attachment limits.

However, I do see a few errors, which are very minor and the original author could probably fix fairly quickly:

- Personal PM folders: I can't add any more, as the limit of 3 has already been reached (see their tabs in the screenshots). There's no facility in this mod for users to rename the existing folders, either.

- When composing a new PM, if the user does not have a signature in their account, the Signature option box (above Send and Preview buttons) is blank. Author should add a conditional to be sure the user HAS a signature before prompting if they'd like it attached to their PM.

- On the Sent Messages tab, the timestamp column header uses the same phrase as the Track Messages tab. When I was translating the XML, I saw a seperate phrase for "Sent Date" -- I don't know why it wasn't used here. (See second screenshot.)

- The Tracking tab required no translation other than the tab name, which tells me that the author could have recycled vBulletin's phrasing if they wanted to.

NOTE: I translated only the phrases I saw on screen; there may be error messages that I missed and therefore didn't translate.


INSTALLING THIS MOD:

Upload the zipfile's folders to your vBulletin installation.

Import the translated XML files through Product Manager.

Open "Ohne TMS.TXT", this translates to "Without TMS". There's 12 template modifications to make. The first few are "search for _____" and "replace with _____", the rest are full template replacements. (Obviously, if you have TMS, you don't have to do these manually.)

In each usergroup's settings, there's a box where you can allow or deny PM attachment sending and PM attachment receiving. These are set to "allow" by default. I do not know what happens if you send an attachment to someone in a usergroup that isn't allowed to receive them.


MY THOUGHTS:

If the author fixes the problems noted above, and completes the translation to English, then I'd be satisfied with this mod. But as it stands now, I only rate it a 7 out of 10.

Tyran1 10-12-2009 07:28 PM

Quote:

- On the Sent Messages tab, the timestamp column header uses the same phrase as the Track Messages tab. When I was translating the XML, I saw a seperate phrase for "Sent Date" -- I don't know why it wasn't used here. (See second screenshot.)
Unfortunately, this is thus I could make it not different. unfortunately. Also I wanted to lay Sent and postpursuit together, nevertheless, also this is not possible anyhow. There is not a solution of the vB team, unfortunately, also ... maybe with you??

Tyran1 10-12-2009 07:41 PM

Nothing save the Message

search in produkt:

PHP Code:

<plugin active="1">
<
title>save and track</title>
<
hookname>private_insertpm_process</hookname>
<
phpcode><![CDATA[$pmdm->set_info('savecopy'1); 
$pmdm->set_info('receipt'1);]]></phpcode>
</
plugin

and replace with:

PHP Code:

<plugin active="1">
<
title>track</title>
<
hookname>private_insertpm_process</hookname>
<
phpcode><![CDATA[$pmdm->set_info('receipt'1);]]></phpcode>
</
plugin

the User can self options to save copy message.


Or nothing tracking

search in produkt:

PHP Code:

<plugin active="1">
<
title>save and track</title>
<
hookname>private_insertpm_process</hookname>
<
phpcode><![CDATA[$pmdm->set_info('savecopy'1); 
$pmdm->set_info('receipt'1);]]></phpcode>
</
plugin

and replace with:

PHP Code:

<plugin active="1">
<
title>save and track</title>
<
hookname>private_insertpm_process</hookname>
<
phpcode><![CDATA[$pmdm->set_info('savecopy'1);]]></phpcode>
</
plugin

the User can self options to tracking the message.


I will not change this addon passing there it is standart for this.

Black Tiger 10-12-2009 11:35 PM

I like this, but I would like this inside my user cp, not as some link in my navbar or where is it getting?

Next to that I would be willing to help translate left over translations for you from German to English as far as I can do it myselve.
Please start by changing PN system to PM system.:)
Nachrichten=Messages or Messaging, depending on the way your are using them in a sentence.:)

New Joe 10-13-2009 12:14 AM

There are 2 xml files, do they both need to be imported?


All times are GMT. The time now is 09:27 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01227 seconds
  • Memory Usage 1,769KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (3)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete